From af039770c298ce0c31e19b7615196b8fb4834b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 25 Mar 2018 16:03:17 +0200 Subject: [PATCH] style: use triangle for warning messages (#22320) --- gadjo/static/css/gadjo.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index f586848..3e8898e 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -225,11 +225,11 @@ ul.messages { border-color: #0000b0; } &.warning { - &:before { content: "\f06a"; } /* exclamation-circle */ + &:before { content: "\f071"; } /* exclamation-triangle */ border-color: #ffb000; } &.error { - &:before { content: "\f071"; } /* exclamation-triangle */ + &:before { content: "\f06a"; } /* exclamation-circle */ border-color: #b00000; } .close { -- 2.16.3