


GTK3 Themes by petrucci4prez 48 comments

GTK3 Themes by petrucci4prez 48 comments
he would make an excellent prez...good music for all :)
about Labrie, I think the only time he has ever unleashed his full versatility is with Frameshift. DT thus far has underutilized him...except for maybe their latest :( - Jan 18 2017

GTK3 Themes by petrucci4prez 48 comments

GTK3 Themes by petrucci4prez 48 comments
Cinn10 will be a much bigger undertaking, especially considering that I have yet to even touch Win10 since it was released.
Either way, plz be patient, I do this in my spare time :) - Jan 23 2016

GTK3 Themes by petrucci4prez 48 comments
.button,
.button:hover,
.toolbar .button.raised,
.toolbar .raised .button,
.toolbar .button.raised:hover,
.toolbar .raised .button:hover,
.primary-toolbar .raised .button,
.primary-toolbar .button.raised,
.primary-toolbar .raised .button:hover,
.primary-toolbar .button.raised:hover,
.toolbar GtkComboBox .button,
.toolbar GtkComboBox .button:hover,
.spinbutton.vertical .button,
.spinbutton.vertical .button:hover,
GtkSwitch.slider,
GtkSwitch.slider:active {
background-color: white;
}
There is a reason GNOME is using scss for adwaita and benevolently forcing its users to do the same for their own themes :D - Jan 15 2016

GTK3 Themes by petrucci4prez 48 comments

GTK3 Themes by petrucci4prez 48 comments
a {
color: white;
}
a:hover {
color: black;
}
a b {
color: green;
}
can be written in SCSS as:
a {
color: white;
&:hover { color: black; }
b { color: green; }
}
There's also nice things like loops and if/then logic that can be used to further simplify things.
If you want to learn, the guide I used for all this was http://sass-lang.com/guide. My advice would be to start playing with the original Adwaita SCSS (it's cleaner than mine) and see how any changes you make will affect the output (gtk-contained.css and gtk-contained-dark.scss)
- Nov 29 2015

GTK3 Themes by petrucci4prez 48 comments