diff options
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 7d927da151c..490619c00d4 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -659,10 +659,18 @@ div.crumb:active { } /* icons */ +.folder-icon, .delete-icon, .edit-icon { + background-repeat: no-repeat; + background-position: center; +} .folder-icon { background-image: url('../img/places/folder.svg'); } .delete-icon { background-image: url('../img/actions/delete.svg'); } +.delete-icon:hover, .delete-icon:focus { + background-image: url('../img/actions/delete-hover.svg'); +} .edit-icon { background-image: url('../img/actions/rename.svg'); } + /* buttons */ button.loading { background-image: url('../img/loading.gif'); @@ -680,6 +688,10 @@ button.loading { ::-moz-focus-inner { border: 0; /* remove dotted outlines in Firefox */ } +.lte8 .delete-icon { background-image: url('../img/actions/delete.png'); } +.lte8 .delete-icon:hover, .delete-icon:focus { + background-image: url('../img/actions/delete-hover.png'); +} /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */ .ie #show, .ie #show+label { |