diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-20 18:38:33 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-20 18:40:08 +0100 |
commit | d5739e83d16dd4af1865999180c7867a7f77734f (patch) | |
tree | 6ebae392d4a31ddf1b575b2ab80ba88af4362f95 /core/css | |
parent | d46645846985fe181fcb252bec158624a1ee2957 (diff) | |
download | nextcloud-server-d5739e83d16dd4af1865999180c7867a7f77734f.tar.gz nextcloud-server-d5739e83d16dd4af1865999180c7867a7f77734f.zip |
remove additional transition rule, reduce width of collapsed search bar
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/mobile.css | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 65c756aa91a..a63aa902d34 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -2,7 +2,7 @@ /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { - width: 17%; + width: 15%; -webkit-transition: width 100ms; -moz-transition: width 100ms; -o-transition: width 100ms; @@ -11,10 +11,6 @@ .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active { width: 155px; - -webkit-transition: width 100ms; - -moz-transition: width 100ms; - -o-transition: width 100ms; - transition: width 100ms; } /* do not show display name on mobile when profile picture is present */ |