aboutsummaryrefslogtreecommitdiff
path: root/.themes/FlatColor/gtk-3.0/widgets/notebook.css
blob: f5b3c03d52894a81a0a142c6aefe3da81a39ce56 (plain)
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
/************
 * notebook *
 ************/
.notebook {
    padding: 0;
    border-style: none;
    background-color: @theme_bg_color;
    border-radius: 0px;
    background-image: none;
    background-clip: border-box;
    color: @theme_fg_color;
}

.notebook GtkViewport {
    background-color: @theme_bg_color;
    color: @theme_fg_color;
}

.notebook tab {
    padding: 5px;
    border-style: none;
    border-radius: 0;
    background-color: shade(@theme_bg_color, 0.97);
    background-image: none;
}

.notebook tab:active {
    background-color: @theme_base_color;
    background-image: none;
}

.notebook tab GtkLabel {
    color: @theme_fg_color;
}

.notebook tab.top {
    border-radius: 3px 3px 0 0;
}

.notebook tab.top:active {
    box-shadow: inset 0 3px @theme_selected_bg_color;
}

.notebook tab.right {
    border-radius: 0 3px 3px 0;
}

.notebook tab.right:active {
    box-shadow: inset -3px 0 @theme_selected_bg_color;
}

.notebook tab.bottom {
    border-radius: 0 0 3px 3px;
}

.notebook tab.bottom:active {
    box-shadow: inset 0 -3px @theme_selected_bg_color;
}

.notebook tab.left {
    border-radius: 3px 0 0 3px;
}

.notebook tab.left:active {
    box-shadow: inset 3px 0 @theme_selected_bg_color;
}
.notebook tab .button {
    background-color: transparent;
    background-image: none;
    border-style: none;
    color: @theme_text_color;
}
.notebook tab .button:hover {
    color: shade(@theme_fg_color, 0.9);
}