B00merang-Project / macOS

macOS theme for Gnome and GTK-based desktops
http://b00merang.weebly.com/macos.html
GNU General Public License v3.0
747 stars 117 forks source link

It would be nice if the buttons in trash uses different colour #92

Closed s1-ranjan closed 3 years ago

s1-ranjan commented 4 years ago

Hi, I am using cinnamon desktop environment and the trash folder in nemo is very difficult to figure out, so I would suggest if the Restored Selected Item and Empty Trash can use two different colors such as green and red, would be a good choice. Screenshot from 2020-03-20 15-19-55

dominichayesferen commented 4 years ago

@s1-ranjan The buttons in Nemo for Restore Selected Items and Empty Trash have theming modes applied that Nemo dictates. The theme used cannot dictate whether or not these buttons are normal, suggested action (blue or green, usually) or destructive action buttons (red).

If I were you, I'd make a feature request at https://github.com/linuxmint/nemo/issues/new about making the buttons coloured as the application itself is what dictates the look of those buttons (whether they're normal buttons, 'destructive action' buttons or 'suggested action' buttons).

s1-ranjan commented 4 years ago

@feren, Thanks for providing that valuable information, I have created a new Issue at https://github.com/linuxmint/nemo/issues/2335 and let's hope to get fixed in the future version of the Nemo.

JosephMcc commented 4 years ago

The theme used cannot dictate whether or not these buttons are normal, suggested action (blue or green, usually) or destructive action buttons (red).

It actually probably can using the proper hierarchy of selectors

Elbullazul commented 3 years ago

I won't be adding this because there's no reliable way to target that specific button, but this snippet should do what you want. Add it at the end of the gtk.css file.

.nemo-window-pane.vertical buttonbox button:first-child {
    background-color: red;
    color: white;
}