diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-19 12:28:38 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-11-26 13:29:44 (GMT) |
commit | 2758e4b9bdde9c9701e88c9677df97c64bd319f9 (patch) | |
tree | b5f1a21d86578ca864e0dd7085e230f55b09fa75 /public_html | |
parent | 3348e88c0d7c6d0a9dbdb98231c75ce8fe220a48 (diff) | |
download | kolab-wap-2758e4b9bdde9c9701e88c9677df97c64bd319f9.tar.gz |
Fix input length in smart elements
Diffstat (limited to 'public_html')
-rw-r--r-- | public_html/skins/default/style.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/public_html/skins/default/style.css b/public_html/skins/default/style.css index b24f209..3968c93 100644 --- a/public_html/skins/default/style.css +++ b/public_html/skins/default/style.css @@ -565,6 +565,7 @@ span.listelement { height: 18px; overflow: hidden; border-top: 1px solid #d0d0d0; + white-space: nowrap; } span.listelement:first-child { @@ -575,8 +576,7 @@ span.listelement input { border: none; background-color: transparent; padding-left: 2px; - /* FIXME: it should be 330px, but when listarea has scroller, input jumps below action buttons */ - width: 314px; + width: 328px; height: 16px; } @@ -649,8 +649,7 @@ span.listarea.autocomplete span.listelement input.autocomplete { } .autocomplete > span.listelement input { - /* FIXME: it should be 348px, but when listarea has scroller, input jumps below action buttons */ - width: 332px; + width: 346px; } .autocomplete > span.listelement span.actions { |