summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb@kaidan.im>2024-04-03 00:52:46 +0200
committerJonah BrĂ¼chert <jbb@kaidan.im>2024-04-03 00:52:46 +0200
commitb4ed28d6c80fea63492e51b62fcfa847322eb6c0 (patch)
tree453318497b158c7dff88721d314c7b1ebc9c9ab4
parent27b8fffe81be92f1ad004578621dacde999acf69 (diff)
downloadweb-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.tar.gz
web-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.tar.bz2
web-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.zip
Use bootstrap for flash messages
-rw-r--r--accounts/static/layout.css15
-rw-r--r--accounts/templates/base.html2
2 files changed, 9 insertions, 8 deletions
diff --git a/accounts/static/layout.css b/accounts/static/layout.css
index 0901983..1d6a3bf 100644
--- a/accounts/static/layout.css
+++ b/accounts/static/layout.css
@@ -210,16 +210,17 @@ ul.flashes li {
display: block;
padding: .2em .6em;
- border: 1px solid #ee3;
- border-radius: 3px;
- background-color: #ffd;
+ --bs-alert-border-color: #ee3;
+ --bs-alert-bg: #ffd;
}
+
ul.flashes li.error {
- border-color: #e33;
- background-color: #fdd;
+ --bs-alert-border-color: #e33;
+ --bs-alert-bg: #fdd;
}
+
ul.flashes li.success {
- border-color: #3e3;
- background-color: #dfd;
+ --bs-alert-border-color: #3e3;
+ --bs-alert-bg: #dfd;
}
diff --git a/accounts/templates/base.html b/accounts/templates/base.html
index 10c146e..02c0a08 100644
--- a/accounts/templates/base.html
+++ b/accounts/templates/base.html
@@ -55,7 +55,7 @@
{% if messages %}
<ul class="flashes">
{% for category, message in messages %}
- <li class="{{ category }}">{{ message }}</li>
+ <li class="alert {{ category }}">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}