Added styles for notebook and scrollbar

This commit is contained in:
Satyajit Sahoo
2014-12-09 00:42:07 +05:30
parent cceeb065f8
commit f34745f3da
6 changed files with 266 additions and 251 deletions
+46
View File
@@ -219,3 +219,49 @@ GtkExpander {
background-color: $bg_color;
color: transparent;
}
/****************
! Floating bar *
*****************/
.floating-bar {
border: 1px solid border_normal($bg_color);
border-radius: $roundness;
background-color: $bg_color;
background-image: none;
color: $fg_color;
&.top {
border-top-width: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
&.right {
border-right-width: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
&.bottom {
border-bottom-width: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
&.left {
border-left-width: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.button {
-GtkButton-image-spacing: 0;
-GtkButton-inner-border: 0;
border: none;
background-color: transparent;
background-image: none;
}
}