diff options
author | Horst3180 | 2016-04-06 00:04:04 +0200 |
---|---|---|
committer | Horst3180 | 2016-04-06 00:04:04 +0200 |
commit | 46a232eff849bc5cd9dd233409c049cd9d9e3ca4 (patch) | |
tree | d58e0baaeab0a8350919e203ba849fc18a73694d /common/gtk-3.0/3.20/gtk-solid-darker.css | |
parent | 3a41c93ff4243e203ac68cebe35a4dc09b58ab88 (diff) | |
download | solarc-theme-46a232eff849bc5cd9dd233409c049cd9d9e3ca4.tar.gz solarc-theme-46a232eff849bc5cd9dd233409c049cd9d9e3ca4.tar.xz solarc-theme-46a232eff849bc5cd9dd233409c049cd9d9e3ca4.zip |
notebook fixes
Diffstat (limited to 'common/gtk-3.0/3.20/gtk-solid-darker.css')
-rw-r--r-- | common/gtk-3.0/3.20/gtk-solid-darker.css | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/common/gtk-3.0/3.20/gtk-solid-darker.css b/common/gtk-3.0/3.20/gtk-solid-darker.css index 677bc68..2bb5a22 100644 --- a/common/gtk-3.0/3.20/gtk-solid-darker.css +++ b/common/gtk-3.0/3.20/gtk-solid-darker.css @@ -1627,6 +1627,12 @@ notebook { border: 1px solid #dcdfe3; } notebook.frame > header { margin: -1px; } + notebook.frame > header.top, notebook.frame > header.bottom { + padding-left: 0; + padding-right: 0; } + notebook.frame > header.left, notebook.frame > header.right { + padding-top: 0; + padding-bottom: 0; } notebook > stack:not(:only-child) { background-color: #ffffff; } notebook > header { @@ -1649,8 +1655,9 @@ notebook { outline-offset: -4px; border: 1px solid transparent; border-bottom: none; - margin-right: -1px; border-radius: 1px 1px 0 0; } + notebook > header.top > tabs > tab + tab { + margin-left: -1px; } notebook > header.bottom { padding-top: 0; } notebook > header.bottom > tabs > tab { @@ -1660,8 +1667,9 @@ notebook { outline-offset: -4px; border: 1px solid transparent; border-top: none; - margin-right: -1px; border-radius: 0 0 1px 1px; } + notebook > header.bottom > tabs > tab + tab { + margin-left: -1px; } notebook > header.right { padding-left: 0; } notebook > header.right > tabs > tab { @@ -1671,8 +1679,9 @@ notebook { outline-offset: -4px; border: 1px solid transparent; border-left: none; - margin-bottom: -1px; border-radius: 0 1px 1px 0; } + notebook > header.right > tabs > tab + tab { + margin-top: -1px; } notebook > header.left { padding-right: 0; } notebook > header.left > tabs > tab { @@ -1682,8 +1691,9 @@ notebook { outline-offset: -4px; border: 1px solid transparent; border-right: none; - margin-bottom: -1px; border-radius: 1px 0 0 1px; } + notebook > header.left > tabs > tab + tab { + margin-top: -1px; } notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { @@ -1708,14 +1718,21 @@ notebook { color: #5c616c; } notebook > header > tabs > arrow:disabled { color: rgba(92, 97, 108, 0.25); } + notebook > header.top > tabs > tab:hover:not(:checked) { + box-shadow: inset 0 -1px #dcdfe3; } + notebook > header.bottom > tabs > tab:hover:not(:checked) { + box-shadow: inset 0 1px #dcdfe3; } + notebook > header.left > tabs > tab:hover:not(:checked) { + box-shadow: inset -1px 0 #dcdfe3; } + notebook > header.right > tabs > tab:hover:not(:checked) { + box-shadow: inset 1px 0 #dcdfe3; } notebook > header > tabs > tab { color: rgba(92, 97, 108, 0.55); background-color: rgba(255, 255, 255, 0); } notebook > header > tabs > tab:hover:not(:checked) { color: rgba(92, 97, 108, 0.775); background-color: rgba(255, 255, 255, 0.5); - border-color: #dcdfe3; - box-shadow: inset 0 -1px #dcdfe3; } + border-color: #dcdfe3; } notebook > header > tabs > tab:checked { color: #5c616c; background-color: #ffffff; |