diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-07 12:28:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 12:28:36 +0100 |
commit | b56cb41e2fc5bd8ec4ef4661009b6feb4c75b7dc (patch) | |
tree | e6d563f8b7cfedffd58682e5e25617ee500e83bd /core | |
parent | c26d847d19c967aa5bc99f9bc15c27c7e95ee55f (diff) | |
parent | 4468141f655be82294b77f7917d67ce4741cdd08 (diff) | |
download | nextcloud-server-b56cb41e2fc5bd8ec4ef4661009b6feb4c75b7dc.tar.gz nextcloud-server-b56cb41e2fc5bd8ec4ef4661009b6feb4c75b7dc.zip |
Merge pull request #12328 from nextcloud/more-icon-move
Fix missing dot before class name
Diffstat (limited to 'core')
-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); } |