We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is an inspection of a GtkContainer with a GtkScale:
GtkContainer
GtkScale
This is more pronounced in Eclipse SWT, where anything outside of the container is not painted:
The following seems to fix the problem:
diff --git a/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css b/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css index 09c9159..89d9e58 100644 --- a/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css +++ b/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css @@ -384,14 +384,10 @@ row:selected:focus progressbar trough { * GtkScale * ************/ -scale.vertical { - min-width: 10px; - padding: 3px 5px; -} - -scale.horizontal { - min-height: 10px; - padding: 5px 2px; +scale { + min-height: 13px; + min-width: 21px; + padding: 12px; } scale.horizontal slider,
The text was updated successfully, but these errors were encountered:
I'll try out some other changes to the theme and will post my findings.
Sorry, something went wrong.
Here is what I arrived at:
diff --git a/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css b/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css index 09c9159..030bd14 100644 --- a/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css +++ b/src/clearlooks-phenix-theme-7.0.1/gtk-3.0/gtk-widgets.css @@ -386,12 +386,12 @@ row:selected:focus progressbar trough { scale.vertical { min-width: 10px; - padding: 3px 5px; + padding: 9px 5px; } scale.horizontal { min-height: 10px; - padding: 5px 2px; + padding: 5px 9px; } scale.horizontal slider,
Before:
After:
No branches or pull requests
Here is an inspection of a
GtkContainer
with aGtkScale
:This is more pronounced in Eclipse SWT, where anything outside of the container is not painted:
The following seems to fix the problem:
The text was updated successfully, but these errors were encountered: