mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-10 20:50:12 +00:00
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:
parent
848a524d95
commit
7dbd3da2dd
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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; }
|
||||
|
||||
|
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user