From b77a7d585cf6cf2420dd770e42ba5b1e08a4e12c Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 11 Mar 2024 17:12:20 +0100 Subject: initial commit --- .themes/FlatColor/gtk-3.0/widgets/notebook.css | 75 ++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .themes/FlatColor/gtk-3.0/widgets/notebook.css (limited to '.themes/FlatColor/gtk-3.0/widgets/notebook.css') 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); +} -- cgit v1.3.1