diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 14:24:30 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 14:24:30 +0100 |
commit | 7bdfd78426eef5e666ff258190bd3e6a4240c99a (patch) | |
tree | 75a25a632b324eaa9623d5f9e9cf6382c5793973 /skins/larry/styles.css | |
parent | 13dc9f2c862668554d87dcbf95f2f7bbaf221bf3 (diff) |
Define generic .searchbox styles
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 60f874a23..f098c68cb 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1516,17 +1516,21 @@ ul.proplist li { /*** quicksearch **/ +.searchbox { + position: relative; +} + #quicksearchbar { position: absolute; right: 1px; - top: -5px; + top: 2px; width: 240px; } +.searchbox input, #quicksearchbar input { width: 176px; margin: 0; - margin-top: 7px; padding: 3px 30px 3px 34px; height: 18px; background: #f1f1f1; @@ -1535,15 +1539,17 @@ ul.proplist li { font-size: 11px; } +.searchbox #searchmenulink, #quicksearchbar #searchmenulink { position: absolute; - top: 12px; + top: 5px; left: 6px; } +.searchbox #searchreset, #quicksearchbar #searchreset { position: absolute; - top: 11px; + top: 4px; right: 1px; } |