From ebd956e4d130e33cea358034e581cf393b0fe0c1 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 9 Apr 2021 18:07:48 +0000 Subject: [PATCH] Bug 27695: (follow-up) Add specificity to CSS changes This patch moves the definition of .alert and .error classes into the block for .dialog in order to make sure they don't have an effect beyond the desired scope. The ".closebtn" section is redundant and has been removed. --- .../intranet-tmpl/prog/css/src/staff-global.scss | 30 ++++++++-------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index e52c690b8f..dd1211569e 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1791,30 +1791,22 @@ i { text-align: right; } } -} - -.alert, -.error { - background: linear-gradient(to bottom, #FEF8D3 0%, #FFEC91 9%, #FFED87 89%, #F9DC00 100%); - border: 1px solid #E0C726; - color: inherit; - text-align: center; - text-shadow: none; - strong { - color: #900; - } + &.alert, + &.error { + background: linear-gradient(to bottom, #FEF8D3 0%, #FFEC91 9%, #FFED87 89%, #F9DC00 100%); + border: 1px solid #E0C726; + color: inherit; + text-align: center; + text-shadow: none; - // Redefine a new style for Bootstrap's class "close" since we use that already - // Use × - .closebtn { - line-height: 20px; - position: relative; - right: -21px; - top: -2px; + strong { + color: #900; + } } } + .approve, .success { i { -- 2.11.0