From f9535f73539b2d03e9b7de158e90fc19645ff68b Mon Sep 17 00:00:00 2001 From: Claas Kazzer <kazzer@uni-leipzig.de> Date: Mon, 25 Jan 2021 18:07:13 +0100 Subject: [PATCH] refs #18938 [finc:BARF] replaces more hard-coded colors with variables * input hover * outline/focus --- themes/finc/scss/compiled.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/finc/scss/compiled.scss b/themes/finc/scss/compiled.scss index 8725d299856..fa6b6bd9465 100644 --- a/themes/finc/scss/compiled.scss +++ b/themes/finc/scss/compiled.scss @@ -455,7 +455,7 @@ input[type='text'] { padding: ($grid-gutter-width / 4); &:hover { - outline: 1px $black solid; + outline: 1px solid $input-border-focus; } header &, @@ -464,7 +464,7 @@ input[type='text'] { &:hover { box-shadow: none; - outline: 1px $black solid; + outline: 1px $input-border-focus solid; } } } @@ -509,7 +509,7 @@ select.form-control { } select:hover { - outline: 1px $black solid; + outline: 1px solid $input-border-focus; } //// Create list in add to favs dialog @@ -2129,7 +2129,7 @@ footer { //// Harmonize behaviour to the edit button .result-links .dropdown-toggle { &:focus { - outline: 1px $black dotted; + outline: 1px dotted $black; // FIXME: REPLACE with variable, consider using '$input-border-focus' } } -- GitLab