diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-22 10:18:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 10:18:52 +0100 |
commit | 2e68b73e5ebb34d8200b06554b8ec573eaf42378 (patch) | |
tree | 07088dc7d74e902b6904e5074fd95cc391740800 /apps | |
parent | bebdb19ac24c08d3a1153550cd62002608f129bd (diff) | |
parent | f80a0234319ce1206892259b65e63f5277b2ecb9 (diff) | |
download | nextcloud-server-2e68b73e5ebb34d8200b06554b8ec573eaf42378.tar.gz nextcloud-server-2e68b73e5ebb34d8200b06554b8ec573eaf42378.zip |
Merge pull request #12558 from nextcloud/blurry-button
Apply border to primary button if on log in page (and not in a dark container) or if in header
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 { |