diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-05-20 10:18:47 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-05-20 10:18:47 +0200 |
commit | 79babb69ab39a6b511d8a776aed6f7642a9eedbd (patch) | |
tree | 35ac403610d71c57af93461e533a3440af5e72a8 /skins/classic/common.css | |
parent | 59b765d83927cb9e81bf69656db3a7dbdc1b1b41 (diff) |
Define common styles for search boxes
Diffstat (limited to 'skins/classic/common.css')
-rw-r--r-- | skins/classic/common.css | 42 |
1 files changed, 36 insertions, 6 deletions
diff --git a/skins/classic/common.css b/skins/classic/common.css index 4367d26cb..003c28d8c 100644 --- a/skins/classic/common.css +++ b/skins/classic/common.css @@ -748,18 +748,25 @@ ul.treelist li.droptarget /***** mac-style quicksearch field *****/ +div.searchbox, #quicksearchbar { - position: absolute; - top: 55px; - right: 10px; + position: relative; width: 190px; height: 20px; text-align: right; background: url(images/searchfield.gif) top left no-repeat; } -#searchreset +#quicksearchbar +{ + position: absolute; + top: 55px; + right: 10px; +} + +#searchreset, +div.searchbox a.searchreset { position: absolute; top: 3px; @@ -767,19 +774,42 @@ ul.treelist li.droptarget text-decoration: none; } -#searchmenulink +#searchmenulink, +div.searchbox a.searchmenu, +div.searchbox a.searchicon { position: absolute; top: 3px; right: 168px; } +div.searchbox a.searchreset +{ + display: block; + width: 14px; + height: 14px; + overflow: hidden; + white-space: nowrap; + text-indent: 50000px; + background: url(images/icons/reset.gif) top left no-repeat; +} + +div.searchbox a.searchicon +{ + display: inline-block; + width: 16px; + height: 16px; + overflow: hidden; + background: url(images/icons/glass.png) top left no-repeat; +} + #quicksearchbar img { vertical-align: middle; } -#quicksearchbox +#quicksearchbox, +div.searchbox > input { position: absolute; top: 2px; |