gtk-4.0/apps/_thunar.scss 1.5 K raw
1
2
/* thunar */
3
.thunar toolbar { background-color: $headerbar_color; }
4
  
5
/* buttons in toolbar */
6
.thunar toolbar.horizontal button image {
7
    -gtk-icon-transform:scale(0.72);
8
}
9
10
scrolledwindow.sidebar treeview.view {
11
    background: darken($_sidebar_color, 2%);
12
    padding: 1.5px;
13
}
14
  
15
/* path-bar of thunar */
16
window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar,
17
.thunar toolbar {
18
    .path-bar-button {
19
        @include button(normal-header);
20
        border-radius: 0;
21
        border-right: 0.5px solid $borders_color;
22
        box-shadow: none;
23
        min-height: 20px;
24
        padding: 3px 4px;
25
        &:first-child {
26
            border-top-left-radius: 4px;
27
            border-bottom-left-radius: 4px;
28
        }
29
30
        &:last-child {
31
            border-top-right-radius: 4px;
32
            border-bottom-right-radius: 4px;
33
            border-right-style: solid;
34
        }
35
36
        &:only-child {
37
            border-radius: 4px;
38
            border-style: solid;
39
        }
40
        &:hover { color: $selected_bg_color; }
41
        &:checked { @include button(active, transparentize($selected_bg_color, 0.3), #fff); }
42
    }
43
    .toggle.path-bar-button:hover {
44
        @include button(active, transparentize($selected_bg_color, 0.3), #fff);
45
    }
46
}
47
  
48
/* thunar sidepane */
49
window.thunar paned > scrolledwindow treeview.view {
50
    &:hover,  &:selected {
51
        background: transparentize($selected_bg_color, 0.3);
52
        color: $selected_fg_color;
53
        border-radius: 0;
54
        box-shadow: none;
55
    }
56
}