Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sat, 08 Jan 2022 22:10:29 UTC Commit: db3659fa8cf48544febab32f5cf80294b3bb7768 https://github.com/geany/geany-osx/commit/db3659fa8cf48544febab32f5cf80294b3...
Log Message: ----------- Draw border around 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(-) =================================================================== @@ -3044,31 +3044,31 @@ notebook > header.top > tabs { margin-bottom: -2px; }
notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.top > tabs > tab:checked { background-color: #444444; } +notebook > header.top > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: none solid; }
notebook > header.bottom { border-top-style: solid; }
notebook > header.bottom > tabs { margin-top: -2px; }
notebook > header.bottom > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.bottom > tabs > tab:checked { background-color: #444444; } +notebook > header.bottom > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: none solid; }
notebook > header.left { border-right-style: solid; }
notebook > header.left > tabs { margin-right: -2px; }
notebook > header.left > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.left > tabs > tab:checked { background-color: #444444; } +notebook > header.left > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: solid none; }
notebook > header.right { border-left-style: solid; }
notebook > header.right > tabs { margin-left: -2px; }
notebook > header.right > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.right > tabs > tab:checked { background-color: #444444; } +notebook > header.right > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: solid none; }
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(-) =================================================================== @@ -3040,31 +3040,31 @@ notebook > header.top > tabs { margin-bottom: -2px; }
notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.top > tabs > tab:checked { background-color: #f3f3f3 } +notebook > header.top > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: none solid; }
notebook > header.bottom { border-top-style: solid; }
notebook > header.bottom > tabs { margin-top: -2px; }
notebook > header.bottom > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.bottom > tabs > tab:checked { background-color: #f3f3f3 } +notebook > header.bottom > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: none solid; }
notebook > header.left { border-right-style: solid; }
notebook > header.left > tabs { margin-right: -2px; }
notebook > header.left > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.left > tabs > tab:checked { background-color: #f3f3f3; } +notebook > header.left > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: solid none; }
notebook > header.right { border-left-style: solid; }
notebook > header.right > tabs { margin-left: -2px; }
notebook > header.right > tabs > tab { padding-top: 3px; padding-bottom: 3px; }
-notebook > header.right > tabs > tab:checked { background-color: #f3f3f3 } +notebook > header.right > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: solid none; }
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).