-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (62 loc) · 2.09 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#folderPaneBox tree {
background-color: var(--folder-pane-background-color);
color: var(--folder-pane-text-color) !important;
}
.spaces-toolbar-button {
transition: none;
}
.spaces-toolbar-button.current,
.spaces-toolbar-button.current:hover,
#spacesAccentPlaceholder {
border-left-color: var(--spaces-button-active-border-color);
border-left-width: 2px;
border-left-style: solid;
margin-left: -2px;
}
#threadPane #quick-filter-bar,
#threadPane #threadPaneHeaderBar {
background-color: var(--toolbar-bgcolor);
border: none;
}
/* mm variables are overridden by Thunderbird in dark mode, so we have to override *that* */
/* TODO: Find an alternative to this ASAP */
calendar-minimonth {
--mmMainBackground: var(--cmmMainBackground) !important;
--mmMainBorderColor: var(--cmmMainBorderColor) !important;
--mmMainColor: var(--cmmMainColor) !important;
--mmDayWeekColor: var(--cmmDayWeekColor) !important;
--mmDayTodayBackground: var(--cmmDayTodayBackground) !important;
}
/* mm uses some other type of button */
#calMinimonth .minimonth-header {
--mmBoxBackground: var(--cmmBoxBackground) !important;
fill: color-mix(in srgb, currentColor 20%, var(--cmmBoxColor));
stroke: var(--cmmBoxColor);
}
#calMinimonth .minimonth-nav-item {
border-color: transparent;
}
#messagePane #messagepanebox {
--layout-background-1: var(--c-message-pane-box-background) !important;
}
.tabmail-tab:hover .tab-line:not([selected="true"]) {
background-color: var(--c-tab-line-hover-background);
}
/* >= 128.* */
/* Tabs toolbar has hardcoded background colors in 128.* */
#tabs-toolbar {
background-image: none !important;
background-color: #121e26;
}
#tabs-toolbar .tabmail-tab:hover .tab-background:not([selected="true"]) {
background-color: transparent;
}
/* For improved contrast, we prefer check buttons to use the gold accent color instead of the lightblue one as the indicator */
.button.check-button {
--button-primary-background-color: var(
--cobalt-button-indicator-active-background-color
);
--button-primary-border-color: var(
--cobalt-button-indicator-active-border-color
);
}