diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-09-20 18:58:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-20 18:58:58 +0200 |
commit | 264299f1871d124f476c886166ad4287f645eb18 (patch) | |
tree | 321e6ed7c139cd0b584e08422fd4391f1cd50eba /core | |
parent | 09e1218df939ffb28160d054bed28af8fc29113e (diff) | |
parent | c2a1809243044e78cd0115695555ddce953cfd42 (diff) | |
download | nextcloud-server-264299f1871d124f476c886166ad4287f645eb18.tar.gz nextcloud-server-264299f1871d124f476c886166ad4287f645eb18.zip |
Merge pull request #1468 from nextcloud/icons-audio-video-2
add proper classes for white audio and video icons
Diffstat (limited to 'core')
-rw-r--r-- | core/css/icons.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index d9b38ab1296..1e8e1bff1c3 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -117,6 +117,9 @@ img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading- .icon-audio { background-image: url('../img/actions/audio.svg?v=1'); } +.icon-audio-white { + background-image: url('../img/actions/audio-white.svg?v=1'); +} .icon-caret { background-image: url('../img/actions/caret.svg?v=1'); @@ -316,6 +319,9 @@ img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading- .icon-video { background-image: url('../img/actions/video.svg?v=1'); } +.icon-video-white { + background-image: url('../img/actions/video-white.svg?v=1'); +} .icon-view-close { background-image: url('../img/actions/view-close.svg?v=1'); |