45 lines
814 B
SCSS
45 lines
814 B
SCSS
![]() |
/********
|
||
|
* Misc *
|
||
|
********/
|
||
|
|
||
|
//content view (grid/list)
|
||
|
.content-view {
|
||
|
background-color: darken($bg_color,7%);
|
||
|
|
||
|
&:hover { -gtk-icon-effect: highlight; }
|
||
|
|
||
|
&:backdrop { background-color: darken($bg_color,7%); }
|
||
|
|
||
|
rubberband { @extend rubberband; }
|
||
|
}
|
||
|
|
||
|
.scale-popup {
|
||
|
.osd & { @extend %osd; }
|
||
|
|
||
|
.osd & button.flat { //FIXME: quick hack, redo properly
|
||
|
border-style: none;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
// +/- buttons on GtkVolumeButton popup
|
||
|
.button,
|
||
|
button {
|
||
|
&:hover {
|
||
|
@extend %undecorated_button;
|
||
|
background-color: transparentize($fg_color,0.9);
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
&:backdrop { &:hover, &:disabled, & { @extend %undecorated_button; }}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
separator,
|
||
|
.separator {
|
||
|
color: $borders_color;
|
||
|
}
|
||
|
|
||
|
// text
|
||
|
.h1 { font: 24; }
|
||
|
.h2 { font: 18; }
|
||
|
.h3 { font: 12; }
|