feat: mail
This commit is contained in:
@@ -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
35
bar/styles/notmuch.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user