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
|
#titlebar-minimize, #titlebar-close {
background-color: transparent;
transition: background-color 200ms;
border-radius: 10px;
}
#titlebar-minimize:hover {
background-color: rgba(99, 99, 99, .5);
}
#titlebar-minimize:focus, #titlebar-minimize:active {
background-color: rgba(99, 99, 99, .75);
}
#titlebar-close:hover {
background-color: rgba(255, 0, 0, .5);
}
#titlebar-close:focus, #titlebar-close:active {
background-color: rgba(255, 0, 0, .75);
}
*::selection {
background-color: transparent;
}
*::inactive-selection {
background-color: transparent;
}
|