aboutsummaryrefslogtreecommitdiff
path: root/.themes/FlatColor/gtk-3.0/widgets/notebook.css
diff options
context:
space:
mode:
Diffstat (limited to '.themes/FlatColor/gtk-3.0/widgets/notebook.css')
-rw-r--r--.themes/FlatColor/gtk-3.0/widgets/notebook.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/.themes/FlatColor/gtk-3.0/widgets/notebook.css b/.themes/FlatColor/gtk-3.0/widgets/notebook.css
new file mode 100644
index 0000000..f5b3c03
--- /dev/null
+++ b/.themes/FlatColor/gtk-3.0/widgets/notebook.css
@@ -0,0 +1,75 @@
+/************
+ * notebook *
+ ************/
+.notebook {
+ padding: 0;
+ border-style: none;
+ background-color: @theme_bg_color;
+ border-radius: 0px;
+ background-image: none;
+ background-clip: border-box;
+ color: @theme_fg_color;
+}
+
+.notebook GtkViewport {
+ background-color: @theme_bg_color;
+ color: @theme_fg_color;
+}
+
+.notebook tab {
+ padding: 5px;
+ border-style: none;
+ border-radius: 0;
+ background-color: shade(@theme_bg_color, 0.97);
+ background-image: none;
+}
+
+.notebook tab:active {
+ background-color: @theme_base_color;
+ background-image: none;
+}
+
+.notebook tab GtkLabel {
+ color: @theme_fg_color;
+}
+
+.notebook tab.top {
+ border-radius: 3px 3px 0 0;
+}
+
+.notebook tab.top:active {
+ box-shadow: inset 0 3px @theme_selected_bg_color;
+}
+
+.notebook tab.right {
+ border-radius: 0 3px 3px 0;
+}
+
+.notebook tab.right:active {
+ box-shadow: inset -3px 0 @theme_selected_bg_color;
+}
+
+.notebook tab.bottom {
+ border-radius: 0 0 3px 3px;
+}
+
+.notebook tab.bottom:active {
+ box-shadow: inset 0 -3px @theme_selected_bg_color;
+}
+
+.notebook tab.left {
+ border-radius: 3px 0 0 3px;
+}
+
+.notebook tab.left:active {
+ box-shadow: inset 3px 0 @theme_selected_bg_color;
+}
+.notebook tab .button {
+ background-color: transparent;
+ background-image: none;
+ border-style: none;
+ color: @theme_text_color;
+}
+.notebook tab .button:hover {
+ color: shade(@theme_fg_color, 0.9);
+}