-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserChrome.css
77 lines (64 loc) · 1.71 KB
/
userChrome.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
75
76
77
.aw-firstColBox {
display:none !important;
}
#identityLabel-box,
.address-label-container,
#subjectLabel-box {
margin-left: -40px !important;
}
#toolbar-menubar {
order: 1;
}
unified-toolbar {
order: 3;
}
#tabs-toolbar {
order: 2;
}
#spacesPinnedButton{
display: none
}
.unread > .container > .unread-count {
display: unset;
color: gray !important;
background-color: transparent !important;
}
/* Set colour for new mail */
#threadTree tbody [data-properties~="new"] {
font-weight: bold !important;
color: black !important;
}
/* Set colour for folders that contain new mail */
.new-messages > .container > .name {
color: black !important;
}
/* zebra messages pane */
#threadTree tr:nth-child(2n) {
/* gradient avoids overwriting text */
background-image: linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.04)) !important;
}
/* zebra folder tree */
#folderTree li[is="folder-tree-row"]:nth-child(2n) > div.container {
/* gradient avoids overwriting text */
background-image: linear-gradient(rgba(0,0,0,.02), rgba(0,0,0,.02)) !important;
}
/* disable buttons in mail pane header */
.header-buttons-container {
display:none !important;
}
/* disable new mail icon in subject column of mail list */
tr[data-properties~="new"] :is(.subject-line img, .new) {
visibility: hidden !important;
}
/* disable new mail mark on folder icon in the folder pane */
.new-messages:not([data-server-type]) > .container > .icon::after
{
content: url("") !important;
}
/* square corners for context menu */
.tab-background,
#urlbar-background,
#searchbar,
menupopup,
.menupopup-arrowscrollbox{ border-radius: 0 !important; }
:root{--arrowpanel-border-radius:0px !important;}