diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-26 12:51:25 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-26 12:56:09 +0100 |
commit | a8fd895263d6c32bc1c97cba2d373def73d4e603 (patch) | |
tree | 8b5b0fc88c75e2725473a49662890d77ada79fb9 | |
parent | a2c2cb64e1d5860987d5674f6b81efd8e02af7b7 (diff) |
Make searchbox properly scale to 100% using box-sizing trick (#1488381)
-rw-r--r-- | skins/larry/mail.css | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 2e2536a4e..b98a89c8b 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -1160,15 +1160,11 @@ div.message-partheaders .headers-table td.header { background: #c7e3ef; } -#composequicksearch .searchbox { - height: 26px; -} - #composequicksearch .searchbox input { - width: auto; - position: absolute; - left: 0px; - right: 0px; + width: 100%; + height: 26px; + -moz-box-sizing: border-box; + box-sizing: border-box; } #composequicksearch #searchmenulink { |