Commit cf5270d106de9aff12839ca8429c55316df2ffa7

Authored by Bryn Divey
1 parent 4b9b491a

More browse work


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6092 c91229c3-7414-0410-bfa2-8a42b809f60b
resources/css/kt-framing.css
... ... @@ -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: 2;
  315 + z-index: 1;
316 316 }
317 317  
318 318 #portletbar .portlet .portletTopRepeat {
... ... @@ -322,7 +322,7 @@ a.main_nav_item {
322 322 left: 30px;
323 323 height: 30px;
324 324 width: 68%;
325   - z-index: -1;
  325 + z-index: -1;
326 326 border:0;
327 327 }
328 328  
... ... @@ -333,7 +333,7 @@ a.main_nav_item {
333 333 left: 30px;
334 334 height: 28px;
335 335 width: 68%;
336   - z-index: -1;
  336 + z-index: -1;
337 337 border: 0;
338 338 }
339 339  
... ... @@ -344,7 +344,7 @@ a.main_nav_item {
344 344 right: 0px;
345 345 height: 30px;
346 346 width: 60%;
347   - z-index: -1;
  347 + z-index: -1;
348 348 border: 0;
349 349 }
350 350  
... ... @@ -355,7 +355,7 @@ a.main_nav_item {
355 355 right: 0px;
356 356 height: 28px;
357 357 width: 60%;
358   - z-index: -1;
  358 + z-index: -1;
359 359 border: 0;
360 360 }
361 361  
... ... @@ -364,8 +364,10 @@ a.main_nav_item {
364 364 background: url(../../resources/graphics/portlet_borderrepeat.png) top left repeat-y;
365 365 padding: 0 0 1em 0;
366 366 background-color: white;
367   - z-index: -2;
  367 + z-index: -2;
368 368 border: 0;
  369 + width: 100%;
  370 + height: 100%;
369 371 }
370 372  
371 373 #portletbar .portlet .portletbody .BottomLeft {
... ... @@ -400,8 +402,8 @@ a.main_nav_item {
400 402 background: url(../../resources/graphics/portlet_borderright.png) top right repeat-y;
401 403 top: 0px;
402 404 right: 0px;
403   - height: 100%;
404 405 width: 5px;
  406 + height: 100%;
405 407 }
406 408  
407 409 #portletbar .portlet.expanded {
... ...
templates/kt3/standard_page.smarty
... ... @@ -51,15 +51,12 @@
51 51 <body {if (!$page->show_portlets)}class="noportlets"{/if}>
52 52 <input type="hidden" name="kt-core-baseurl" id="kt-core-baseurl" value="{$rootUrl}" />
53 53 <div id="pageBody">
  54 +
54 55 <div id="bodyTopLeft"></div>
55 56 <div id="bodyTopRepeat"></div>
56   - <div id="bodyLeftRepeat"></div>
57   - <div id="bodyRightRepeat"></div>
58   - <div id="bodyBottomRepeat"></div>
59   - <div id="bodyBottomRight"></div>
60   - <div id="bodyBottomLeft"></div>
61 57 <div id="bodyTopRight"></div>
62 58 <div id="pageBodyBg"></div>
  59 +
63 60 <div id="bodyPad">
64 61 <div id="logobar">
65 62 <a href="{$page->systemURL}"><img src="{$rootUrl}/resources/graphics/ktlogo-topbar-right.png" class="primary" title="{$page->systemName}"/></a>
... ... @@ -145,12 +142,13 @@
145 142 <h4 onclick="toggleElementClass('expanded',this.parentNode)">{$oPortlet->getTitle()}</h4>
146 143 <div class="portletTopRepeat {if $oPortlet->getActive()}expanded{/if}"></div>
147 144 <div class="portletTopRight {if $oPortlet->getActive()}expanded{/if}"></div>
  145 +
148 146 <div class="portletbody">
  147 + {$portlet_output}
  148 + <div class="Right"></div>
149 149 <div class="Bottom"></div>
150 150 <div class="BottomLeft"></div>
151   - <div class="Right"></div>
152 151 <div class="BottomRight"></div>
153   - {$portlet_output}
154 152 </div>
155 153 </div>
156 154 {/if}
... ... @@ -187,6 +185,11 @@
187 185 <div class="floatClear"> </div>
188 186  
189 187 </div>
  188 + <div id="bodyLeftRepeat"></div>
  189 + <div id="bodyRightRepeat"></div>
  190 + <div id="bodyBottomRepeat"></div>
  191 + <div id="bodyBottomRight"></div>
  192 + <div id="bodyBottomLeft"></div>
190 193 </div>
191 194 <div id="copyrightbarBorder">
192 195 <div id="copyrightbar">
... ...