Remove border from selections

This commit is contained in:
Satyajit Sahoo
2014-11-14 22:08:08 +05:30
parent 608c5be890
commit e87a3b6f41
3 changed files with 14 additions and 16 deletions
+8 -5
View File
@@ -82,25 +82,28 @@
.titlebutton {
padding: $spacing;
border: none;
background: none;
color: mix($titlebar_fg_color, $titlebar_bg_color, 0.90);
background-image: none;
background-color: transparent;
color: mix($titlebar_fg_color, $titlebar_bg_color, .1);
box-shadow: none;
&:hover, &:hover:focus {
background: none;
background-image: none;
background-color: transparent;
color: $selected_bg_color;
box-shadow: none;
}
&:active, &:active:hover {
background: none;
background-image: none;
background-color: transparent;
color: darken($selected_bg_color, 10%);
box-shadow: none;
}
&:backdrop {
background: none;
color: mix($titlebar_fg_color, $titlebar_bg_color, 0.60);
color: mix($titlebar_fg_color, $titlebar_bg_color, .6);
icon-shadow: none;
}
}