_st-theme.scss
ASCII text
1
@use "theme";
2
3
//
4
// Override sizes
5
//
6
7
$menuitem-size: 32px;
8
$panel-button-hpadding: 12px;
9
10
@if theme.$compact {
11
$menuitem-size: 28px;
12
$panel-button-hpadding: 8px;
13
}
14
15
//
16
// Override durations; since St does not support transition-timing-function
17
//
18
19
$duration: 100ms;
20
$duration-ripple: 200ms;
21
22
//
23
// Override shadows
24
//
25
26
// This should be none, but it's creating some issues with borders, so to
27
// workaround it for now, use inset wich goes through a different code path.
28
// see https://bugzilla.gnome.org/show_bug.cgi?id=752934
29
$shadow-z0: 0 0 transparent;
30