Sweet-topborder/gtk-3.0/apps/_xfce.scss

109 lines
2.4 KiB
SCSS
Raw Normal View History

2019-04-29 20:31:19 +02:00
// Xfce Panel
.xfce4-panel {
border-radius: 0;
&.panel {
2019-04-29 20:31:19 +02:00
background-color: $panel_bg_color;
text-shadow: none;
-gtk-icon-shadow: none;
button.flat { @extend %panelbutton; }
}
}
2019-04-29 20:31:19 +02:00
#tasklist-button {
color: transparentize($panel_fg_color, 0.2);
border-radius: 0;
border: none;
background-color: transparentize($panel_bg_color, 1);
&:hover {
color: lighten($panel_fg_color, 10%);
background-color: transparentize(black, 0.83);
}
&:checked {
color: white;
background-color: transparentize(black, 0.75);
box-shadow: inset 0 -2px $selected_bg_color;
}
}
%panelbutton {
color: $panel_fg_color;
border-radius: 0;
border: none;
background-color: transparentize($panel_bg_color, 1);
&:hover {
border: none;
2020-07-22 20:32:50 +02:00
background-color: lighten($panel_bg_color, 7%);
2019-04-29 20:31:19 +02:00
}
&:active, &:checked {
color: $selected_fg_color;
2020-07-22 20:32:50 +02:00
background-color: lighten($panel_bg_color, 5%);
2019-06-21 18:56:59 +02:00
border-bottom: 2px solid $selected_bg_color;
2019-04-29 20:31:19 +02:00
label, image { color: inherit; }
}
}
2019-04-29 20:26:41 +02:00
#whiskermenu-window button {
background-color:transparent;
border: none;
border-radius: 0;
font-weight: normal;
padding: 2px;
margin: 1px 0px;
&:hover, &:checked {
background-color: $selected_bg_color;
}
2020-07-03 22:03:34 +02:00
}
/* thunar */
.thunar toolbar {
background-color: $headerbar_color;
}
/* buttons in toolbar */
.thunar toolbar.horizontal button image {
-gtk-icon-transform:scale(0.72);
}
/* path-bar of thunar */
2021-07-27 20:51:28 +02:00
window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar > button.toggle.path-bar-button, .thunar toolbar .path-bar-button {
2020-07-03 22:03:34 +02:00
margin-top: 7px;
margin-bottom: 7px;
&:hover { color: $selected_bg_color; }
&:checked { @include button(active-header); }
}
2021-07-27 20:51:28 +02:00
window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar > button.path-bar-button, .thunar toolbar .path-bar-button {
2020-07-03 22:03:34 +02:00
background: none;
outline: none;
border: none;
box-shadow: none;
}
/* thunar sidepane */
.thunar scrolledwindow.sidebar treeview.view {
background: darken($_sidebar_color, 2%);
padding: 1.5px;
color: #98abb2;
&:hover {
background: lighten($_sidebar_color, 5%);
}
&:selected {
@include button(active-header);
border-radius: 0;
box-shadow: none;
}
}
window.thunar toolbar#location-toolbar entry {
border-radius: 10px;
2018-10-09 17:52:31 +02:00
}