diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-05-22 15:53:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-22 15:53:42 +0200 |
commit | cbe5c193d0cbf1b294d2ebc7090f516e7a5cb5ce (patch) | |
tree | d6cb5a82a4a51970e206ae429ece988ba20b8b5a /core | |
parent | 0c7a797652e8fcc8f1d96d8200aecef257378041 (diff) | |
parent | 3c011c6d50d8466d6eda1818ed30bcabcb658e5b (diff) | |
download | nextcloud-server-cbe5c193d0cbf1b294d2ebc7090f516e7a5cb5ce.tar.gz nextcloud-server-cbe5c193d0cbf1b294d2ebc7090f516e7a5cb5ce.zip |
Merge pull request #9538 from nextcloud/bugfix/noid/active-indicator-width
Increase width of other active navigation indicators to 4px
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 2 | ||||
-rw-r--r-- | core/css/header.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 918dc838412..19447d6e41d 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -696,7 +696,7 @@ kbd { &:hover { background-color: $color-main-background; opacity: 1; - box-shadow: inset 2px 0 $color-primary; + box-shadow: inset 4px 0 $color-primary; } } diff --git a/core/css/header.scss b/core/css/header.scss index 8e520957889..d71ec5b713a 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -434,7 +434,7 @@ nav[role='navigation'] { &:active, &.active { opacity: 1; - box-shadow: inset 2px 0 $color-primary; + box-shadow: inset 4px 0 $color-primary; } } } |