diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-07 10:22:49 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-07 10:22:49 +0100 |
commit | cd6bc79c400e2822830a52822ab5e86a2d7634fb (patch) | |
tree | fede916983226491d83ca7146d8df9891c3e4eda /core/css | |
parent | 30bd915c0e032bd09ef15b674cc19f82279ff3af (diff) | |
parent | 68a3a3ed6a2515ada5d7bde2a15abf104433cccc (diff) | |
download | nextcloud-server-cd6bc79c400e2822830a52822ab5e86a2d7634fb.tar.gz nextcloud-server-cd6bc79c400e2822830a52822ab5e86a2d7634fb.zip |
Merge pull request #20530 from owncloud/icons-more
add icons for disabled checkbox, radio button, error and colored checkmark
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/icons.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index 76afb19f206..836a84fd70e 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -46,10 +46,12 @@ .icon-checkmark { background-image: url('../img/actions/checkmark.svg'); } - .icon-checkmark-white { background-image: url('../img/actions/checkmark-white.svg'); } +.icon-checkmark-color { + background-image: url('../img/actions/checkmark-color.svg'); +} .icon-close { background-image: url('../img/actions/close.svg'); @@ -81,6 +83,16 @@ background-image: url('../img/actions/edit.svg'); } +.icon-error { + background-image: url('../img/actions/error.svg'); +} +.icon-error-white { + background-image: url('../img/actions/error-white.svg'); +} +.icon-error-color { + background-image: url('../img/actions/error-color.svg'); +} + .icon-external { background-image: url('../img/actions/external.svg'); } |