-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtk.css
71 lines (61 loc) · 1.88 KB
/
gtk.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
/* Define colors as variables */
@define-color my-black #24273a;
@define-color my-grey-light #8087a2;
@define-color my-grey-dark #5b6078;
@define-color my-white #cad3f5;
@define-color my-green #a6da95;
@define-color my-red #ed8796;
.terminator-terminal-window notebook {
border: none;
}
.terminator-terminal-window notebook header {
background-color: @my-black;
border: none;
}
.terminator-terminal-window notebook > header.top button {
margin-right: 10px;
font-size: 10;
background-color: @my-white;
border: 1px solid @my-grey-light;
}
/*close button colors in the checked tab*/
.terminator-terminal-window notebook > header.top tabs > tab:checked button {
background-color: @my-black;
color: @my-white;
border: 1px solid @my-grey-light;
}
/*close button colors on hover*/
.terminator-terminal-window notebook > header.top tabs > tab button:hover {
background-color: @my-black;
color: @my-red;
border: 1px solid @my-grey-light;
}
.terminator-terminal-window notebook > header.top > tabs > tab {
margin: 0 0 0 0;
padding: 0 0 0 0;
box-shadow: none;
background-color: @my-grey-dark;
border: 1px solid @my-grey-light;
border-top-left-radius: 5px; /* Round upper left corner */
border-top-right-radius: 5px; /* Round upper right corner */
}
.terminator-terminal-window notebook > header.top > tabs > tab:checked {
background-color: @my-green;
}
.terminator-terminal-window notebook > header.top > tabs > tab label {
padding: 0 0 0 0;
margin: 0 0 0 0;
color: @my-white;
font-size: 13;
font-family: "MesloLGS NF", system-ui;
}
.terminator-terminal-window notebook > header.top > tabs > tab:checked label {
color: @my-black;
font-weight: bold;
}
/* Remove focus outline */
.terminator-terminal-window notebook > header.top > tabs > tab:focus {
outline: none;
border: none;
box-shadow: none;
}