-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththeme.css
94 lines (80 loc) · 1.52 KB
/
theme.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* global theme */
* {
font: sans-serif 11;
-GtkPaned-handle-size: 2;
-GtkProgressBar-min-horizontal-bar-height: 10;
-GtkProgressBar-min-vertical-bar-width: 10;
background-color: rgb (100, 100, 100);
}
*:hover {
background-color: rgb (125, 125, 125);
}
GtkNotebook
{
-GtkWidget-focus-line-width: 0;
}
/* notebook theme */
.notebook
{
font: sans-serif 9 bold;
padding: 0;
}
.notebook child
{
border-style: none;
background-color: rgb (100, 100, 100);
}
.notebook tab
{
background-color: rgb (100, 100, 100);
border-style: solid;
border-color: black;
border-width: 1;
color: white;
}
.notebook tab:active
{
background-color: black;
}
.notebook tab:hover
{
background-color: rgb (125, 125, 125);
}
/* scrollbar theme */
GtkScrollbar
{
background-color: rgb (100, 100, 100);
border-color: #444444;
border-width: 1;
-GtkRange-slider-width: 10;
-GtkScrollbar-has-backward-stepper: false;
-GtkScrollbar-has-forward-stepper: false;
}
GtkScrollbar.slider
{
background-color: black;
}
/* statusbar theme */
Statusbar, Statusbar *
{
background-color: rgb (0, 0, 0);
color: rgb (255, 255, 255);
font: sans-serif 9 bold;
}
.progressbar,
.progressbar row
{
background-color: rgb (50, 50, 100);
border-width: 1;
border-color: shade (rgb (50, 50, 100), 0.4);
}
/* inputbox theme */
Inputbox, Inputbox *
{
border-style: none;
padding: 0;
margin: 0;
background-color: white;
font: sans-serif 9;
color: black;
}