From edbebe2ff3cee77f2d144743d01f24a3b478e75c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Weber?= <mail@soeren-weber.de>
Date: Fri, 16 Jul 2021 19:55:23 +0200
Subject: [PATCH] notice: use distinct icons for notice box type #17

---
 static/css/theme.css | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/static/css/theme.css b/static/css/theme.css
index 77fbd96dc3..e1acdb5752 100644
--- a/static/css/theme.css
+++ b/static/css/theme.css
@@ -493,7 +493,6 @@ div.notices > div.label {
 div.notices > div.label:first-child:before {
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
-    content: "\f06a";
     margin-left: -.35rem;
     margin-right: .35rem;
 }
@@ -501,6 +500,9 @@ div.notices.info {
     border-top: 30px solid #6AB0DE;
     background: #E7F2FA;
 }
+div.notices.info > div.label:first-child:before {
+    content: "\f05a";
+}
 div.notices.info > div.label:first-child:after {
     content: 'Info';
 }
@@ -508,6 +510,9 @@ div.notices.warning {
     border-top: 30px solid rgba(217, 83, 79, 0.8);
     background: #FAE2E2;
 }
+div.notices.warning > div.label:first-child:before {
+    content: "\f071";
+}
 div.notices.warning > div.label:first-child:after {
     content: 'Warning';
 }
@@ -515,6 +520,9 @@ div.notices.note {
     border-top: 30px solid #F0B37E;
     background: #FFF2DB;
 }
+div.notices.note > div.label:first-child:before {
+    content: "\f06a";
+}
 div.notices.note > div.label:first-child:after {
     content: 'Note';
 }
@@ -522,6 +530,9 @@ div.notices.tip {
     border-top: 30px solid rgba(92, 184, 92, 0.8);
     background: #E6F9E6;
 }
+div.notices.tip > div.label:first-child:before {
+    content: "\f0eb";
+}
 div.notices.tip > div.label:first-child:after {
     content: 'Tip';
 }