Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Thu, 18 Nov 2021 22:30:18 UTC Commit: 482a22e98e0882daa5c8f958587893ca5f1273b0 https://github.com/geany/geany-osx/commit/482a22e98e0882daa5c8f958587893ca5f...
Log Message: ----------- Use accent color for notebook tabs
Modified Paths: -------------- Prof-Gnome/gtk-3.0/main-dark.css Prof-Gnome/gtk-3.0/main-light.css
Modified: Prof-Gnome/gtk-3.0/main-dark.css 8 lines changed, 4 insertions(+), 4 deletions(-) =================================================================== @@ -3078,7 +3078,7 @@ notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.top > tabs > tab:hover { box-shadow: inset 0 -0.20625rem #737373; }
-notebook > header.top > tabs > tab:checked { background-color: #444444; box-shadow: inset 0 -0.20625rem #15539e; } +notebook > header.top > tabs > tab:checked { background-color: #444444; box-shadow: inset 0 -0.20625rem @color_accent; }
notebook > header.bottom { border-top-style: solid; }
@@ -3088,7 +3088,7 @@ notebook > header.bottom > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.bottom > tabs > tab:hover { box-shadow: inset 0 0.20625rem #737373; }
-notebook > header.bottom > tabs > tab:checked { background-color: #444444; box-shadow: inset 0 0.20625rem #15539e; } +notebook > header.bottom > tabs > tab:checked { background-color: #444444; box-shadow: inset 0 0.20625rem @color_accent; }
notebook > header.left { border-right-style: solid; }
@@ -3098,7 +3098,7 @@ notebook > header.left > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.left > tabs > tab:hover { box-shadow: inset -0.20625rem 0 #737373; }
-notebook > header.left > tabs > tab:checked { background-color: #444444; box-shadow: inset -0.20625rem 0 #15539e; } +notebook > header.left > tabs > tab:checked { background-color: #444444; box-shadow: inset -0.20625rem 0 @color_accent; }
notebook > header.right { border-left-style: solid; }
@@ -3108,7 +3108,7 @@ notebook > header.right > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.right > tabs > tab:hover { box-shadow: inset 0.20625rem 0 #737373; }
-notebook > header.right > tabs > tab:checked { background-color: #444444; box-shadow: inset 0.20625rem 0 #15539e; } +notebook > header.right > tabs > tab:checked { background-color: #444444; box-shadow: inset 0.20625rem 0 @color_accent; }
notebook > header.top > tabs > arrow { border-top-style: none; }
Modified: Prof-Gnome/gtk-3.0/main-light.css 8 lines changed, 4 insertions(+), 4 deletions(-) =================================================================== @@ -3074,7 +3074,7 @@ notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.top > tabs > tab:hover { box-shadow: inset 0 -0.20625rem #909090; }
-notebook > header.top > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0 -0.20625rem #3584e4; } +notebook > header.top > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0 -0.20625rem @color_accent; }
notebook > header.bottom { border-top-style: solid; }
@@ -3084,7 +3084,7 @@ notebook > header.bottom > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.bottom > tabs > tab:hover { box-shadow: inset 0 0.20625rem #909090; }
-notebook > header.bottom > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0 0.20625rem #3584e4; } +notebook > header.bottom > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0 0.20625rem @color_accent; }
notebook > header.left { border-right-style: solid; }
@@ -3094,7 +3094,7 @@ notebook > header.left > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.left > tabs > tab:hover { box-shadow: inset -0.20625rem 0 #909090; }
-notebook > header.left > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset -0.20625rem 0 #3584e4; } +notebook > header.left > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset -0.20625rem 0 @color_accent; }
notebook > header.right { border-left-style: solid; }
@@ -3104,7 +3104,7 @@ notebook > header.right > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
notebook > header.right > tabs > tab:hover { box-shadow: inset 0.20625rem 0 #909090; }
-notebook > header.right > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0.20625rem 0 #3584e4; } +notebook > header.right > tabs > tab:checked { background-color: #fbfbfb; box-shadow: inset 0.20625rem 0 @color_accent; }
notebook > header.top > tabs > arrow { border-top-style: none; }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).