diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-11-21 14:30:05 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-11-21 14:30:05 +0100 |
commit | f80a0234319ce1206892259b65e63f5277b2ecb9 (patch) | |
tree | 56a22b158f0c798764b57dc5a540e45aa16917a6 /apps | |
parent | 325396330c78dc76021a0f433c018eec47836d32 (diff) | |
download | nextcloud-server-f80a0234319ce1206892259b65e63f5277b2ecb9.tar.gz nextcloud-server-f80a0234319ce1206892259b65e63f5277b2ecb9.zip |
Always give primary button a border for light primary colors
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/css/theming.scss | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index e2cd8fb11ee..ea3792458fa 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -82,10 +82,9 @@ $invert: luma($color-primary) > 0.6; @include icon-color('checkbox-mark', 'actions', $color-white, 1, true); } } - #body-user { - .primary { - border: 1px solid transparent; - } + /* Always give primary button a border for light primary colors */ + .primary { + border-color: var(--color-border) !important; } } @else { #appmenu:not(.inverted) svg { |