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,7 +5532,9 @@ 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 {
border-color: transparent; }
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */
@define-color disk_space_unknown #383c4a;

View File

@ -5532,7 +5532,9 @@ 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 {
border-color: transparent; }
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */
@define-color disk_space_unknown #383c4a;

View File

@ -5555,7 +5555,9 @@ decoration {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0); }
button.titlebutton:backdrop {
border-color: transparent; }
background: transparent; }
button.titlebutton:backdrop:not(:hover) {
border-color: transparent; }
/* Nautilus */
@define-color disk_space_unknown #383c4a;

View File

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