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