diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-31 13:48:56 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-31 13:48:56 +0100 |
commit | b7ea947844b97fe4cb0e2bd37b84d79fff8014f4 (patch) | |
tree | 8cb8c5c4e9649f34740c7d0e8568bee29b9c7ac1 /skins/larry/styles.css | |
parent | f5aecf055b88c5ac34e0bc9cb4aa76c866f4e620 (diff) |
Define a global style for tree lists
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index f7adeba38..7458ebba9 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -986,6 +986,10 @@ ul.listing li { background-color: #d9ecf4; } +ul.listing li ul { + border-top: 1px solid #bbd3da; +} + ul.listing li.droptarget, table.listing tr.droptarget td { background-color: #e8e798; @@ -1002,6 +1006,28 @@ table.layout td { vertical-align: top; } +ul.treelist li div.treetoggle { + position: absolute; + top: 13px; + left: 19px; + width: 13px; + height: 13px; + background: url(images/listicons.png) -3px -144px no-repeat; + cursor: pointer; +} + +ul.treelist li div.treetoggle.expanded { + background-position: -3px -168px; +} + +ul.treelist li.selected > div.collapsed { + background-position: -23px -144px; +} + +ul.treelist li.selected > div.expanded { + background-position: -23px -168px; +} + .listbox .boxfooter { position: absolute; bottom: 0; |