-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApplication.css
More file actions
173 lines (142 loc) · 4.63 KB
/
Application.css
File metadata and controls
173 lines (142 loc) · 4.63 KB
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
173
/*
* Copyright (c) 2017-2024 Lains
* Copyright (c) 2025 Stella (teamcons on GitHub) and the Ellie_Commons community
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
windowcontrols:backdrop button {
background: none;
}
editablelabel {
font-weight: 800;
text-shadow: 0px 1px rgba(255,255,255,0.5);
padding-left: 24px;
padding-right: 24px;
letter-spacing: .04em;
}
textview.view,
editablelabel.editing {
background-image: none;
font-weight: 500;
box-shadow: none;
text-shadow: none;
line-height: 1.35em;
letter-spacing: .02em;
}
/* Fix buttons in popover inheriting the color */
popover button image {
color: @fg_color;
}
/* Avoid zoom bleeding out into the menus */
popover * {
line-height: initial;
}
/* Pretty actionbar blending into background */
actionbar {
box-shadow: none; /*Pondering. It looks good with, too */
background-color: transparent;
background-image: none;
padding: 3px;
border: none;
}
/* White relief in actionbar icons */
actionbar image {
-gtk-icon-shadow: 0px 1px rgba(255,255,255,0.5);
}
actionbar .themedbutton:hover,
actionbar .themedbutton:focus {
background-color: alpha(@fg_color, 0.3);
border-radius: 6px;
}
/* Obfuscate note */
window.scribbly textview.view,
window.scribbly editablelabel {
font-family: "Redacted Script";
}
/* Font zooms */
.s20 textview.view {font-size: 40%;}
.s20 editablelabel {font-size: 25%;}
.s20 editablelabel.editing {font-size: 20%;}
.s40 textview.view {font-size: 60%;}
.s40 editablelabel {font-size: 45%;}
.s40 editablelabel.editing {font-size: 40%;}
.s60 textview.view {font-size: 80%;}
.s60 editablelabel {font-size: 65%;}
.s60 editablelabel.editing {font-size: 60%;}
.s80 textview.view {font-size: 100%;}
.s80 editablelabel {font-size: 85%;}
.s80 editablelabel.editing {font-size: 80%;}
.s100 textview.view {font-size: 120%;}
.s100 editablelabel {font-size: 105%;}
.s100 editablelabel.editing {font-size: 100%;}
.s120 textview.view {font-size: 140%;}
.s120 editablelabel {font-size: 125%;}
.s120 editablelabel.editing {font-size: 120%;}
.s140 textview.view {font-size: 160%;}
.s140 editablelabel {font-size: 145%;}
.s140 editablelabel.editing {font-size: 140%;}
.s160 textview.view {font-size: 180%;}
.s160 editablelabel {font-size: 165%;}
.s160 editablelabel.editing {font-size: 160%;}
.s180 textview.view {font-size: 200%;}
.s180 editablelabel {font-size: 185%;}
.s180 editablelabel.editing {font-size: 180%;}
.s200 textview.view {font-size: 220%;}
.s200 editablelabel {font-size: 205%;}
.s200 editablelabel.editing {font-size: 200%;}
.s220 textview.view {font-size: 240%;}
.s220 editablelabel {font-size: 225%;}
.s220 editablelabel.editing {font-size: 220%;}
.s240 textview.view {font-size: 260%;}
.s240 editablelabel {font-size: 245%;}
.s240 editablelabel.editing {font-size: 240%;}
.s260 textview.view {font-size: 280%;}
.s260 editablelabel {font-size: 265%;}
.s260 editablelabel.editing {font-size: 260%;}
.s280 textview.view {font-size: 300%;}
.s280 editablelabel {font-size: 285%;}
.s280 editablelabel.editing {font-size: 280%;}
.s300 textview.view {font-size: 320%;}
.s300 editablelabel {font-size: 305%;}
.s300 editablelabel.editing {font-size: 300%;}
/* ANIMATION */
window.animated,
window.animated overshoot,
window.animated undershoot {
transition: background 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
window.animated textview,
window.animated textview text,
window.animated headertitle {
transition: color 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
window.animated actionbar {
transition: color 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
window.animated actionbar .themedbutton:hover,
window.animated actionbar .themedbutton:focus {
transition: color 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
window.animated editablelabel,
window.animated actionbar image {
transition: color 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* Devel builds get these. Libadwaita has that too, but we do not use it. */
window.devel {
border-style: solid;
border-width: 2px;
border-color: @warning_color;
}