feat: mail

This commit is contained in:
2025-09-29 23:24:23 +02:00
parent 34e837562f
commit 15077fe6fa
7 changed files with 242 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
@import url("./bar.css");
@import url("./finder.css");
@import url("./calendar.css");
@import url("./notmuch.css");
/* unset so we can style everything from the ground up. */

35
bar/styles/notmuch.css Normal file
View File

@@ -0,0 +1,35 @@
/* Notmuch email widget styling */
#notmuch-widget {
background-color: var(--module-bg);
padding: 4px 8px;
border-radius: 12px;
transition: background-color 0.2s ease;
}
#notmuch-widget:hover {
background-color: var(--light-bg);
}
#notmuch-widget.has-unread {
background-color: var(--blue);
}
#notmuch-widget.has-unread:hover {
background-color: var(--turquoise);
}
#notmuch-widget.no-unread {
background-color: var(--module-bg);
}
#unread-count {
color: var(--foreground);
font-size: 14px;
font-weight: bold;
min-width: 16px;
}
#notmuch-widget.has-unread #unread-count {
color: var(--background);
}