blob: 38122450d4ebe13e0b9abd37b553ec1f65649c33 (
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
|
@use "sass:string";
@use "sass:color";
@use "sass:math";
@import "./theme";
@function gtkalpha($c, $a) {
@return string.unquote("alpha(#{$c},#{$a})");
}
* {
all: unset;
}
window {
color: $text;
font-family: $font-name;
}
button {
color: $text;
background: $surface;
&:hover {
background: $overlay;
}
&.primary {
color: $base;
background: $primary;
}
}
menu {
background: $base;
padding: $inner-gap 0;
border-radius: $outer-radius;
menuitem {
color: $text;
margin: $inner-gap $outer-gap;
padding: $inner-gap;
border-radius: $inner-radius;
&:hover,
&:selected {
background: $surface;
}
&:disabled {
color: darken($text, 5%);
}
}
separator {
background-color: $surface;
min-height: 1px;
margin: $inner-gap 0;
}
}
|