- only 1px stroke for close buttons in notebook tabs
https://bugzilla.gnome.org/show_bug.cgi?id=746149
&:hover {
color: $fg_color;
@include button(hover, $edge: none);
+ border-width: 1px;
background-image: none;
box-shadow: none;
}
&:active {
@include button(active, $edge: none);
+ border-width: 1px;
}
&:backdrop {
color: transparentize($backdrop_fg_color,0.7);
border-color: transparent;
+ border-width: 1px;
}
& > GtkImage { // this is a hack which makes tabs grow
padding: 2px;
background-color: #fff;
border-color: #7f7f7f;
background-image: none;
+ border-width: 1px;
background-image: none;
box-shadow: none; }
.notebook tab .button:active {
background-image: none;
color: white;
background-color: black;
- border-color: #7f7f7f; }
+ border-color: #7f7f7f;
+ border-width: 1px; }
.notebook tab .button:backdrop {
color: rgba(0, 0, 0, 0.3);
- border-color: transparent; }
+ border-color: transparent;
+ border-width: 1px; }
.notebook tab .button > GtkImage {
padding: 2px; }