From 5e6d15aa27e7ed3d6a7e29d387f4eb71531592a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 19 Sep 2020 11:43:56 +0200 Subject: [PATCH] style: add pk-{information,attention,error} synonyms (#46794) --- gadjo/static/css/gadjo.scss | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index 8eb3194..1c6a5d9 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -340,7 +340,10 @@ ul.messages li, div.infonotice, div.successnotice, div.warningnotice, -div.errornotice { +div.errornotice, +div.pk-information, +div.pk-attention, +div.pk-error { position: relative; font-size: 110%; background: white; @@ -368,19 +371,22 @@ div.errornotice { border-image: linear-gradient(#27eb00, lighten(#27eb00, 10%)) 2; } &.info, - &.infonotice { + &.infonotice, + &.pk-info { &:before { content: "\f05a"; } // info-circle border-color: #0000b0; border-image: linear-gradient(#4474f6, lighten(#4474f6, 10%)) 2; } &.warning, - &.warningnotice { + &.warningnotice, + &.pk-attention { &:before { content: "\f06a"; } //exclamation-circle border-color: #ffb000; border-image: linear-gradient(#f47f13, lighten(#f47f13, 15%)) 2; } &.error, - &.errornotice { + &.errornotice, + &.pk-error { &:before { content: "\f071"; } // exclamation-triangle border-color: #f64474; border-image: linear-gradient(#f64474, lighten(#f64474, 5%)) 2;