Changeset e1eb70b in github
- Timestamp:
- Aug 29, 2008 9:20:12 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 835a0cab
- Parents:
- 940fc13
- Files:
-
- 2 edited
-
program/include/main.inc (modified) (2 diffs)
-
skins/default/mail.css (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/main.inc
rf5aa165 re1eb70b 1054 1054 'class' => join(' ', $classes), 1055 1055 'noclose' => true), 1056 html::div(array(1057 'class' => empty($folder['folders']) ? 'nocollapse' : ($collapsed ? 'collapsed' : 'expanded'),1058 'onclick' => sprintf("%s.command('collapse-folder', '%s')", JS_OBJECT_NAME, $js_name)1059 ), ' ') .1060 1056 html::a(array( 1061 1057 'href' => rcmail_url('', array('_mbox' => $folder['id'])), … … 1065 1061 'onmouseup' => sprintf("return %s.folder_mouse_up('%s')", JS_OBJECT_NAME, $js_name), 1066 1062 'title' => $title, 1067 ), Q($foldername))); 1063 ), Q($foldername)) . 1064 (!empty($folder['folders']) ? html::div(array( 1065 'class' => ($collapsed ? 'collapsed' : 'expanded'), 1066 'style' => "position:absolute", 1067 'onclick' => sprintf("%s.command('collapse-folder', '%s')", JS_OBJECT_NAME, $js_name) 1068 ), ' ') : '')); 1068 1069 1069 1070 if (!empty($folder['folders'])) -
skins/default/mail.css
r1996d8f re1eb70b 267 267 #mailboxlist 268 268 { 269 position:relative; 269 270 width: 100%; 270 271 height: auto; … … 279 280 #mailboxlist li 280 281 { 282 display: block; 283 position: relative; 281 284 font-size: 11px; 282 285 background: url(images/icons/folder-closed.png) no-repeat; … … 288 291 { 289 292 position: absolute; 290 padding-left: 10px;291 padding-top: 2px;292 padding-bottom: 2px;293 margin-right: 2px;294 width: 12px;293 left: 8px !important; 294 left: -16px; 295 top: 2px; 296 width: 14px; 297 height: 16px; 295 298 } 296 299 … … 340 343 cursor: default; 341 344 display: block; 345 position: relative; 342 346 padding-left: 25px; 343 347 padding-top: 2px; 344 348 padding-bottom: 2px; 345 349 text-decoration: none; 346 /* css hack for IE */347 margin-top: expression('-12px');348 350 } 349 351
Note: See TracChangeset
for help on using the changeset viewer.
