This repository has been archived on 2024-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
gtk-nova-theme/gtk-3.20/widgets/_floating-bar.scss
2021-01-07 18:44:37 +00:00

34 lines
592 B
SCSS

/****************
* Floating Bar *
****************/
.floating-bar {
background-color: $bg_color;
border-width: 1px;
border-style: solid solid none;
border-color: $borders_color;
border-radius: 3px 3px 0 0;
box-shadow: inset 0 1px $top_highlight;
&.bottom {
&.left {
border-left-style: none;
border-top-left-radius: 0;
}
&.right {
border-right-style: none;
border-top-right-radius: 0;
}
}
> button {
padding:4px;
}
&:backdrop {
background-color: $backdrop_bg_color;
border-color: $backdrop_borders_color;
}
}