Commit 0e89635a7de564156a99f6c5ddc6cc753aed01d0

Authored by bryndivey
1 parent 645f7c1f

Fixed some of the body stuff


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6091 c91229c3-7414-0410-bfa2-8a42b809f60b
resources/css/kt-framing.css
... ... @@ -300,7 +300,7 @@ a.main_nav_item {
300 300 background: transparent;
301 301 margin: 0 10px 0 0 ;
302 302 padding: 0;
303   - z-index: 100; /* IE layers this below the content bar. */
  303 + z-index: 2; /* IE layers this below the content bar. */
304 304 }
305 305  
306 306 /* horrible, custom dashboard hack. */
... ... @@ -312,7 +312,7 @@ a.main_nav_item {
312 312 background: url(../../resources/graphics/portlet_corner_topleft_collapsed.png) top left no-repeat;
313 313 padding: 0 0 0 0;
314 314 border: 0;
315   - z-index: 1000;
  315 + z-index: 2;
316 316 }
317 317  
318 318 #portletbar .portlet .portletTopRepeat {
... ... @@ -369,7 +369,7 @@ a.main_nav_item {
369 369 }
370 370  
371 371 #portletbar .portlet .portletbody .BottomLeft {
372   - position: absolute;
  372 + position: absolute;
373 373 bottom: 0px;
374 374 left: 0px;
375 375 width: 10px;
... ... @@ -378,7 +378,7 @@ a.main_nav_item {
378 378 }
379 379  
380 380 #portletbar .portlet .portletbody .BottomRight {
381   - position: absolute;
  381 + position: absolute;
382 382 bottom: 0px;
383 383 right: 0px;
384 384 width: 10px;
... ... @@ -387,7 +387,7 @@ a.main_nav_item {
387 387 }
388 388  
389 389 #portletbar .portlet .portletbody .Bottom {
390   - position: absolute;
  390 + position: absolute;
391 391 bottom: 0px;
392 392 left: 5px;
393 393 height: 3px;
... ... @@ -396,7 +396,7 @@ a.main_nav_item {
396 396 }
397 397  
398 398 #portletbar .portlet .portletbody .Right {
399   - position: absolute;
  399 + position: absolute;
400 400 background: url(../../resources/graphics/portlet_borderright.png) top right repeat-y;
401 401 top: 0px;
402 402 right: 0px;
... ... @@ -492,9 +492,12 @@ a.main_nav_item {
492 492 #content
493 493 {
494 494 position: relative;
495   - padding-left: 17em;
496   - padding-right: 2.75em;
  495 + display: block;
  496 + top: 0;
497 497 z-index: 1;
  498 + width: auto;
  499 + padding-left: 17em;
  500 + padding-right: 2em;
498 501 }
499 502  
500 503 #content.view.withviewlets {
... ...
resources/css/kt-ie-icons.css
... ... @@ -32,8 +32,12 @@
32 32 /* IE is woefully unable to */
33 33 #portletbar { width: 200px; }
34 34 #portlet-search-text { width: 150px; }
35   -#content { padding-left: 220px; }
  35 +/* #content { padding-left: 220px; } */
36 36  
  37 +#content {
  38 + float: left;
  39 + padding: 0 25px 0 0;
  40 +}
37 41  
38 42  
39 43 /* NO CHILD SELECTORS IN IE! */
... ... @@ -60,3 +64,4 @@
60 64 .kt_treenodes li.inactive ul {
61 65 display: none;
62 66 }
  67 +
... ...
templates/kt3/portlets/browsemodes_portlet.smarty
... ... @@ -8,5 +8,6 @@
8 8 {$sModeName.name}
9 9 {/if}
10 10 {/if}
  11 + </li>
11 12 {/foreach}
12 13 </ul>
... ...
templates/kt3/standard_page.smarty
... ... @@ -155,7 +155,10 @@
155 155 </div>
156 156 {/if}
157 157 {/foreach}
  158 + <div class="floatClear"> </div>
158 159 </div>
  160 +
  161 +
159 162 <div id="content" {if $page->content_class}class="{$page->content_class}"{/if}>
160 163 {if (!$page->hide_section)}
161 164 <h1 class="{$page->componentClass}"><span class="fahrner">{$page->componentLabel}</span>
... ... @@ -179,11 +182,12 @@
179 182 {/if}
180 183 <!-- and finally, the content. -->
181 184 {$page->contents}
182   - <div class="floatClear"></div>
183 185 </div>
  186 +
  187 + <div class="floatClear"> </div>
  188 +
184 189 </div>
185 190 </div>
186   - </div>
187 191 <div id="copyrightbarBorder">
188 192 <div id="copyrightbar">
189 193 {i18n}&copy; 2006 <a href="http://www.ktdms.com/">The Jam Warehouse Software (Pty) Ltd.</a> All Rights Reserved{/i18n}
... ...