Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-03-27 18:11:57 +0300
committerJulius Härtl <jus@bitgrid.net>2019-03-27 20:42:06 +0300
commit798b2e87b9bd49843c6929da93066fab111f1498 (patch)
treea1c2afab39e425d17dcf9d870a0ea5496276aae8 /apps/theming/css
parentf1f113c5232f6c191a431140624b0fe4e44770ce (diff)
Fix light primary button styling
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r--apps/theming/css/theming.scss7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss
index ae0e7ad2f8b..928c54bc105 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -84,10 +84,6 @@ $invert: luma($color-primary) > 0.6;
@include icon-color('checkbox-mark', 'actions', $color-white, 1, true);
}
}
- /* Always give primary button a border for light primary colors */
- .primary {
- border-color: $color-border !important;
- }
} @else {
#appmenu:not(.inverted) svg {
filter: none;
@@ -214,11 +210,12 @@ input.primary,
&.primary:not(:disabled) {
background-color: var(--color-background-dark);
color: var(--color-main-text);
- border: 1px solid var(--color-background-darker);
+ border-color: var(--color-text-lighter);
&:hover, &:focus, &:active {
background-color: var(--color-background-darker);
color: var(--color-main-text);
+ border-color: var(--color-text);
}
}
}