diff options
author | Julius Haertl <jus@bitgrid.net> | 2016-07-28 22:33:17 +0200 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2016-07-28 22:33:17 +0200 |
commit | f55ba62a00a9256b8879d373c4a1460581b22eb1 (patch) | |
tree | 92a5568454d574f63de7c619c07203e34349b84a /core/css | |
parent | 319449434e5ad4164647bfe211467a0995e9c067 (diff) | |
download | nextcloud-server-f55ba62a00a9256b8879d373c4a1460581b22eb1.tar.gz nextcloud-server-f55ba62a00a9256b8879d373c4a1460581b22eb1.zip |
Move to svg filter on app menu to support IE9+
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.css | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/core/css/header.css b/core/css/header.css index 9c3a60281ac..673e657f00b 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -210,27 +210,22 @@ text-overflow:ellipsis; } /* icon opacity and hover effect */ - #navigation a img, + #navigation a svg, #navigation a span { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; opacity: .5; } - #navigation a:hover img, - #navigation a:focus img, + #navigation a:hover svg, + #navigation a:focus svg, #navigation a:hover span, #navigation a:focus span, - #navigation a.active img, + #navigation a.active svg, #navigation a.active span { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; opacity: .75; } #navigation .app-icon { - -webkit-filter: invert(100%); - -moz-filter: invert(100%); - -o-filter: invert(100%); - -ms-filter: "progid:DXImageTransform.Microsoft.Invert(100%)"; - filter: invert(100%); margin: 0 auto; padding: 0; max-height: 32px; |