blob: 08bcbbf773eb3436e50cf9df76f375a83b946dd7 (
plain) (
blame)
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
|
// https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-3-24/gtk/theme/Adwaita/_colors-public.scss
// $fg-color: #{"@theme_fg_color"};
// $bg-color: #{"@theme_bg_color"};
window.Bar {
border: none;
box-shadow: none;
background-color: #000;
color: #fff;
>box {
padding: 4px 0;
}
}
box.Workspaces {
padding-left: 3px;
>button {
min-width: 10px;
min-height: 10px;
border-radius: 5px;
border: none;
margin: 2px 4px;
padding: 0;
background: #ccc;
transition: min-width 2s ease-in-out;
// transition-property: min-width;
// transition-duration: 2s;
// transition-timing-function: ease-out;
&.active {
min-width: 25px;
}
&.focused {
background: #AD49E1;
}
}
}
|