File: tilix.base.css

package info (click to toggle)
tilix 1.9.6-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,444 kB
  • sloc: xml: 1,175; sh: 285; python: 127; perl: 72; ansic: 53; makefile: 6
file content (172 lines) | stat: -rw-r--r-- 3,960 bytes parent folder | download | duplicates (6)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
.tilix-search-entry {
    padding-bottom: 6px;
    padding-top: 6px;
}

.tilix-search-frame {
    border-bottom: 1px solid @borders;
}

.tilix-notification-counter {
    background-color: @theme_fg_color;
    color: @theme_bg_color;
    border: 1px solid @borders;
    padding: 1px 4px 1px 4px;
    font-size: 0.8em;
}

.tilix-tab-notification-counter {
    background-color: @theme_selected_bg_color;
    color: @theme_selected_fg_color;
    border: 1px solid @borders;
    /*
    padding: 2px 4px 2px 4px;
    margin-top: 2px;
    margin-bottom: 2px;
    */
    font-size: 0.8em;
}

.tilix-small-button {
    padding: 2px 4px;
}

.tilix-notebook-page {
    background-color: @theme_bg_color;
}

/* Used to give backgrounds to widgets that end up transparent
   due to transparent window */
.tilix-background {
    background-color: @theme_bg_color;
}

/* Only used when CSD is disabled */
.tilix-toolbar {
    background-color: @theme_bg_color;
    border-bottom: 1px solid @borders;
}

.tilix-notification-count {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(@theme_selected_bg_color), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.5, to(rgba(255, 255, 255, 0.76923)), to(transparent));
    color: @theme_selected_fg_color;
    font-size: smaller;
}

.tilix-notification-count > label {
    color: @theme_selected_fg_color;
}

.tilix-session-index {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(@theme_fg_color), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.5, to(rgba(255, 255, 255, 0.76923)), to(transparent));
    color: @theme_bg_color;
    font-size: smaller;
}

.tilix-session-index > label {
  color: @theme_bg_color;
}

.tilix-session-sidebar {
    background-color: @theme_bg_color;
}

revealer.left > scrolledwindow {
    border-width: 0 1px 0 0;
}

revealer.right > scrolledwindow {
    border-width: 0 0 0 1px;
}

.tilix-terminal-scrolledwindow > undershoot.top {
    background-image: none;
}

.tilix-terminal-scrolledwindow > undershoot.bottom {
    background-image: none;
}

.tilix-session-name {
    color: @theme_bg_color;
    background-color: @theme_fg_color;
    border-radius: 8px 8px 8px 8px / 50% 50% 50% 50%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: smaller;
}

/* Remove padding from buttons when in compact mode */
.compact > .button {
	padding: 0px;
}

/* Support small titlebars in 3.20 */
.compact > button {
	padding: 0px;
}

.tilix-sidebar-close-button {
    border: 0px;
    padding: 0px;
    margin: 0px;
}

.tilix-session-switcher {
    background-color: @theme_bg_color;
}

/* Visual Bell Animation, note each frame defined
   separately because GTK doesn't support grouping them
   together like normal CSS
 */
@keyframes shake {
    0%   {-gtk-icon-transform: translateX(0);}
    100% {-gtk-icon-transform: translateX(0);}
    10%  {-gtk-icon-transform: translateX(-1px);}
    30%  {-gtk-icon-transform: translateX(-1px);}
    50%  {-gtk-icon-transform: translateX(-1px);}
    70%  {-gtk-icon-transform: translateX(-1px);}
    90%  {-gtk-icon-transform: translateX(-1px);}
    20%  {-gtk-icon-transform: translateX(1px);}
    40%  {-gtk-icon-transform: translateX(1px);}
    60%  {-gtk-icon-transform: translateX(1px);}
    80%  {-gtk-icon-transform: translateX(1px);}
}

.tilix-bell {
  background: none;
  opacity: 0;
  -gtk-icon-source: -gtk-icontheme("alarm-symbolic");
}

.tilix-bell:checked {
    opacity: 1;
    animation: shake 1s linear infinite;
}

/* New Button in new UI */
.session-new-button {
  padding-left: 2px;
  padding-right: 2px;
}

/* Remove rounded corners when disable-csd set to true */
.tilix-embedded-headerbar {
    border-radius: 0;
}

/* Quake window border */
.tilix-quake-frame {
    border: 1px solid rgba(0, 0, 0, .7);
}

/*
.tilix-quake-frame > border {
    border-width: 0px;
}
*/

.tilix-error {
    color: @error_color;
}