diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-11-05 19:13:17 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-11-05 19:13:17 +0100 |
commit | 4468141f655be82294b77f7917d67ce4741cdd08 (patch) | |
tree | 3b9ef76967a373a0ae40f69dc3d32519d37adbe6 /core/css | |
parent | 6635bd63997405b5e520f95ed3086d1598040b97 (diff) | |
download | nextcloud-server-4468141f655be82294b77f7917d67ce4741cdd08.tar.gz nextcloud-server-4468141f655be82294b77f7917d67ce4741cdd08.zip |
Fix missing dot before class name
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.scss | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 30f2c30b7b4..e215c9d4c40 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -553,8 +553,10 @@ nav[role='navigation'] { li { /* Move up app icon */ svg, - .icon-more, icon-more-white, - .icon-loading-small, .icon-loading-small-dark { + .icon-more, + .icon-more-white, + .icon-loading-small, + .icon-loading-small-dark { transform: translateY(-7px); } @@ -583,8 +585,10 @@ nav[role='navigation'] { li a:focus { /* Move up app icon */ svg, - .icon-more, icon-more-white, - .icon-loading-small, .icon-loading-small-dark { + .icon-more, + .icon-more-white, + .icon-loading-small, + .icon-loading-small-dark { transform: translateY(-7px); } |