-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmisc.as.css
45 lines (40 loc) · 1.05 KB
/
misc.as.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
/*
Some personal tweaks for my own use
*/
/* Custom values for the height and colors of toolbars */
*|*:root:-moz-lwtheme {
--toolbar-bgcolor: #2a2a2e !important;
}
:root {
--toolbar-height: 40px;
}
:root[uidensity="compact"] {
--toolbar-height: 34px;
}
:root[uidensity="touch"] {
--toolbar-height: 44px;
}
/* Custom height for Bookmark Bar */
#PersonalToolbar {
height: calc(var(--toolbar-height) - 5px) !important;
}
/*
Separators on my bookmark bar is barely visible
as its color match the backgound
*/
toolbarseparator {
filter: invert(0.5) !important;
}
/*
Github icon on my bookmark bar is barely visible
as its color match the backgound
*/
.toolbarbutton-icon[src^="page-icon:https://github.com/"] {
filter: invert(65%) !important;
}
/* Color for Identity Icon when the connection is secured */
#identity-box[pageproxystate="valid"].verifiedDomain > #identity-icon,
#identity-box[pageproxystate="valid"].verifiedIdentity > #identity-icon,
#identity-box[pageproxystate="valid"].mixedActiveBlocked > #identity-icon {
color: #3ad31c;
}