diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-05-17 18:20:47 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-17 18:20:47 +0200 |
commit | b3d12412ce1eba0a5cc1b5e181ff3c8196ea0617 (patch) | |
tree | 9c2a365e1afb9e801cb5fbb2dba3c35751a67d46 | |
parent | a1b356c7b630d60ee0ccab62782bdb1ec5efcd6a (diff) | |
parent | 9d3fcfcac86c804da8e4bbbcc8b080482c3114a8 (diff) | |
download | nextcloud-server-b3d12412ce1eba0a5cc1b5e181ff3c8196ea0617.tar.gz nextcloud-server-b3d12412ce1eba0a5cc1b5e181ff3c8196ea0617.zip |
Merge pull request #8609 from owncloud/ie8-svgfallbackforicons
SVG fallback for a few icons
-rw-r--r-- | core/css/fixes.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index a33afd5cf77..15635950746 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -10,6 +10,21 @@ background-image: url('../img/actions/delete-hover.png'); } +.lte9 .icon-triangle-e { + background-image: url('../img/actions/triangle-e.png'); +} +.lte9 .icon-triangle-n { + background-image: url('../img/actions/triangle-n.png'); +} +.lte9 .icon-triangle-s { + background-image: url('../img/actions/triangle-s.png'); +} +.lte9 .icon-settings, +.lte9 .settings-button { + background-image: url('../img/actions/settings.png'); +} + + /* IE8 needs background to be set to same color to make transparency look good. */ .lte9 #body-login form input[type="text"] { border: 1px solid lightgrey; /* use border to add 1px line between input fields */ |