diff options
author | thomascube <thomas@roundcube.net> | 2011-12-26 19:33:14 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-26 19:33:14 +0000 |
commit | 847d31060967760f009485dbb80cd588669e21bf (patch) | |
tree | 0c0831a26a3a01f44b3d6dfffc2250a297af3092 /skins/larry/styles.css | |
parent | fe1bd5f960d85f19ad639d9a4eee9da2aaffaeb8 (diff) |
Complete Larry's mail view with selection menus and quota display
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 65 |
1 files changed, 63 insertions, 2 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 428cfaa95..68949705d 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -61,6 +61,10 @@ textarea.placeholder { color: #aaa; } +select.selector { + padding: 2px 4px; +} + /*** buttons ***/ @@ -304,9 +308,9 @@ input.button:active { .pagenav .countdisplay { display: inline-block; - padding:0 0.5em; + padding:0 1em; text-shadow: 0px 1px 1px #fff; - min-width: 20em; + min-width: 16em; } a.iconbutton { @@ -1295,6 +1299,38 @@ ul.proplist li { background-position: center -1050px; } +a.menuselector { + display: inline-block; + border: 1px solid #ababab; + border-radius: 4px; + background: #f8f8f8; + background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd)); + background: -o-linear-gradient(top, #f8f8f8 0%, #dddddd 100%); + background: -ms-linear-gradient(top, #f9f9f9 0%, #dddddd 100%); + background: linear-gradient(top, #f8f8f8 0%, #dddddd 100%); + text-decoration: none; + color: #333; +} + +a.menuselector .handle { + display: inline-block; + padding: 3px 32px 4px 8px; + text-shadow: 0px 1px 1px #fff; + background: url(images/selector.png) right center no-repeat; + border-radius: 4px; +} + +a.menuselector:active { + background: #dddddd; + background: -moz-linear-gradient(top, #dddddd 0%, #f8f8f8 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#f8f8f8)); + background: -o-linear-gradient(top, #dddddd 0%, #f8f8f8 100%); + background: -ms-linear-gradient(top, #dddddd 0%, #f8f8f8 100%); + background: linear-gradient(top, #dddddd 0%, #f8f8f8 100%); + text-decoration: none; +} + /*** popup menus ***/ @@ -1315,6 +1351,11 @@ ul.proplist li { -o-box-shadow: 0 2px 6px 0 #333; } +.popupmenu.dropdown { + border-radius: 0 0 4px 4px; + border-top: 0; +} + ul.toolbarmenu, #rcmKSearchpane ul { margin: 0; @@ -1416,6 +1457,22 @@ ul.toolbarmenu li span.unflagged { background-position: 0 -1268px; } +ul.toolbarmenu li span.mail { + background-position: 0 -1293px; +} + +ul.toolbarmenu li span.list { + background-position: 0 -1317px; +} + +ul.toolbarmenu li span.invert { + background-position: 0 -1340px; +} + +ul.toolbarmenu li span.cross { + background-position: 0 -1365px; +} + ul.toolbarmenu li span.print { background-position: 0 -1436px; } @@ -1436,6 +1493,10 @@ ul.toolbarmenu li span.extwin { background-position: 0 -1484px; } +ul.toolbarmenu li span.conversation { + background-position: 0 -1532px; +} + #rcmKSearchpane { border-radius: 0 0 4px 4px; border-top: 0; |