Adwaita: Don't use a property that GTK+ 3 lacks

border-spacing was not backported (yet?). If it won't be, then a
suitable replacement is needed. Until then, avoid the runtime error that
can result from using a nonexistent property in our theme.

https://gitlab.gnome.org/GNOME/gtk/issues/1166
This commit is contained in:
Daniel Boles 2018-06-20 20:24:19 +01:00
parent 848a524d95
commit 7dbd3da2dd
3 changed files with 4 additions and 3 deletions

View File

@ -4573,7 +4573,8 @@ popover.emoji-completion arrow {
}
popover.emoji-completion contents row box {
border-spacing: 10px;
// FIXME: needs redone in a GTK+ 3 compatible way
//border-spacing: 10px;
padding: 2px 10px;
}

View File

@ -1936,7 +1936,7 @@ popover.emoji-picker .emoji :hover { background: #215d9c; }
popover.emoji-completion arrow { border: none; background: none; }
popover.emoji-completion contents row box { border-spacing: 10px; padding: 2px 10px; }
popover.emoji-completion contents row box { padding: 2px 10px; }
popover.emoji-completion .emoji:hover { background: #3f4649; }

View File

@ -1956,7 +1956,7 @@ popover.emoji-picker .emoji :hover { background: #4a90d9; }
popover.emoji-completion arrow { border: none; background: none; }
popover.emoji-completion contents row box { border-spacing: 10px; padding: 2px 10px; }
popover.emoji-completion contents row box { padding: 2px 10px; }
popover.emoji-completion .emoji:hover { background: #f4f4f4; }