Files
paper-gtk-theme/Paper/gtk-3.20/widgets/_tooltips.scss

27 lines
470 B
SCSS
Raw Normal View History

2016-04-14 21:54:38 -04:00
/************
* Tooltips *
************/
2016-04-16 11:01:16 -04:00
tooltip,
.tooltip,
.overlay-bar {
margin: 4px;
border: none;
border-radius: 3px;
background-color: $base_color;
color: $fg_color;
box-shadow: 0 2px 2px 0 transparentize(black, 0.7);
2016-04-14 21:54:38 -04:00
&.background {
2016-04-16 11:01:16 -04:00
background-color: $base_color;
2016-04-14 21:54:38 -04:00
border: none;
}
decoration { background-color: transparent; }
* { // Yeah this is ugly
2016-04-16 11:01:16 -04:00
padding: 2px;
2016-04-14 21:54:38 -04:00
background-color: transparent;
2016-04-16 11:01:16 -04:00
color: $fg_color;
2016-04-14 21:54:38 -04:00
}
}