Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sun, 16 Jan 2022 22:59:48 UTC Commit: 6c6776ce8847048bcd48e5fb5a4f5ab0289c8db5 https://github.com/geany/geany-osx/commit/6c6776ce8847048bcd48e5fb5a4f5ab028...
Log Message: ----------- Avoid slight move when changing 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 16 lines changed, 8 insertions(+), 8 deletions(-) =================================================================== @@ -3011,33 +3011,33 @@ notebook > header.top { border-bottom-style: solid; }
notebook > header.top > tabs { margin-bottom: -2px; }
-notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; } +notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: none solid; }
-notebook > header.top > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: none solid; } +notebook > header.top > tabs > tab:checked { background-color: #444444; border-color: #111111; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: none solid; }
-notebook > header.bottom > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: none solid; } +notebook > header.bottom > tabs > tab:checked { background-color: #444444; border-color: #111111; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: solid none; }
-notebook > header.left > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: solid none; } +notebook > header.left > tabs > tab:checked { background-color: #444444; border-color: #111111; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: solid none; }
-notebook > header.right > tabs > tab:checked { background-color: #444444; border-color: #111111; border-width: 1px; border-style: solid none; } +notebook > header.right > tabs > tab:checked { background-color: #444444; border-color: #111111; }
notebook > header.top > tabs > arrow { border-top-style: none; }
Modified: Prof-Gnome/gtk-3.0/main-light.css 16 lines changed, 8 insertions(+), 8 deletions(-) =================================================================== @@ -3007,33 +3007,33 @@ notebook > header.top { border-bottom-style: solid; }
notebook > header.top > tabs { margin-bottom: -2px; }
-notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; } +notebook > header.top > tabs > tab { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: none solid; }
-notebook > header.top > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: none solid; } +notebook > header.top > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: none solid; }
-notebook > header.bottom > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: none solid; } +notebook > header.bottom > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: solid none; }
-notebook > header.left > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: solid none; } +notebook > header.left > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; }
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 { padding-top: 3px; padding-bottom: 3px; border-color: transparent; border-width: 1px; border-style: solid none; }
-notebook > header.right > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; border-width: 1px; border-style: solid none; } +notebook > header.right > tabs > tab:checked { background-color: #f3f3f3; border-color: #c0c0c0; }
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).