higher contrast outline for new notifications

This commit is contained in:
keyan 2024-07-11 17:32:28 -05:00
parent 729aab12eb
commit 0aea695d8a
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.fresh {
border-radius: 0;
border: solid 1px rgba(0, 123, 190, 0.25);
border: solid 1px var(--bs-info);
border-bottom: 0;
border-top: 0;
}
@ -8,13 +8,13 @@
.fresh:not(.fresh ~ .fresh) {
border-top-left-radius: .4rem;
border-top-right-radius: .4rem;
border-top: solid 1px rgba(0, 123, 190, 0.25);
border-top: solid 1px var(--bs-info);
}
.fresh:has(+ :not(.fresh)) {
border-bottom-left-radius: .4rem;
border-bottom-right-radius: .4rem;
border-bottom: solid 1px rgba(0, 123, 190, 0.25);
border-bottom: solid 1px var(--bs-info);
}
.reply {