GTK3: remove titlebutton backdrop background

This commit is contained in:
Daniel Ruiz de Alegría 2020-03-02 12:12:21 +01:00
parent 7146c09867
commit e9b27304b9
4 changed files with 13 additions and 4 deletions

View File

@ -5532,6 +5532,8 @@ decoration {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(13, 14, 17, 0.65); }
button.titlebutton:backdrop {
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */

View File

@ -5532,6 +5532,8 @@ decoration {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(13, 14, 17, 0.65); }
button.titlebutton:backdrop {
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */

View File

@ -5555,6 +5555,8 @@ decoration {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0); }
button.titlebutton:backdrop {
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */

View File

@ -264,5 +264,8 @@ decoration {
// Window Close button
button.titlebutton {
&:backdrop { border-color: transparent; }
&:backdrop {
background: transparent;
&:not(:hover) { border-color: transparent; }
}
}