diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-25 17:39:50 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-26 00:41:41 +0100 |
commit | ad596a0198c3ac1e5a295a0c16c54c41201ef95a (patch) | |
tree | 910089059472a23b4cbef5e1d2eafca92d7bc884 /core/css/mobile.css | |
parent | 095197d1a772e2fd3590818eaad0d51ad013959c (diff) | |
download | nextcloud-server-ad596a0198c3ac1e5a295a0c16c54c41201ef95a.tar.gz nextcloud-server-ad596a0198c3ac1e5a295a0c16c54c41201ef95a.zip |
further adjustments of header and dropdown styles
Diffstat (limited to 'core/css/mobile.css')
-rw-r--r-- | core/css/mobile.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 892612fc06a..874c42b92ef 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -39,6 +39,8 @@ -moz-transition: all 100ms; -o-transition: all 100ms; transition: all 100ms; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; + opacity: .7; } .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active { @@ -47,12 +49,18 @@ cursor: text; background-color: #fff; background-image: url('../img/actions/search.svg'); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + opacity: 1; } /* do not show display name on mobile when profile picture is present */ #header .avatardiv.avatardiv-shown + #expandDisplayName { display: none; } +#header #expand { + display: block; + padding: 7px 30px 6px 7px; +} /* do not show update notification on mobile */ #update-notification { |