Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sat, 08 Jan 2022 22:23:01 UTC Commit: d4208c8c0419768cc23e52dbf4f790e918cd8322 https://github.com/geany/geany-osx/commit/d4208c8c0419768cc23e52dbf4f790e918...
Log Message: ----------- Dim color of unselected tab a bit
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, 8 insertions(+), 0 deletions(-) =================================================================== @@ -3136,6 +3136,10 @@ notebook > header tab { border-width: 1px; border-color: transparent; }
+notebook > header tab label { + color: alpha(@text_color,0.7); +} + notebook > header tab:hover { color: #c0c0be; } @@ -3150,6 +3154,10 @@ notebook > header tab:checked { color: #ececec; }
+notebook > header tab:checked label { + color: @text_color; +} + notebook > header tab:checked.reorderable-page {
border-color: rgba(27, 27, 27, 0.5);
Modified: Prof-Gnome/gtk-3.0/main-light.css 8 lines changed, 8 insertions(+), 0 deletions(-) =================================================================== @@ -3131,6 +3131,10 @@ notebook > header tab { border-width: 1px; border-color: transparent; }
+notebook > header tab label { + color: alpha(@text_color,0.7); +} + notebook > header tab:hover {
color: #404040; @@ -3146,6 +3150,10 @@ notebook > header tab:checked { color: #404040; }
+notebook > header tab:checked label { + color: @text_color; +} + notebook > header tab:checked.reorderable-page {
border-color: rgba(205, 199, 194, 0.5);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).