caribou-fix-antler-style-css.patch 857 B

123456789101112131415161718192021222324252627
  1. From 13df8b92ae89c796238e669ee6ef4447a42d6355 Mon Sep 17 00:00:00 2001
  2. From: Jeremy Bicha <jbicha@ubuntu.com>
  3. Date: Fri, 1 Dec 2017 12:11:35 -0500
  4. Subject: [PATCH] style.css: Fix failure to start in GNOME Flashback
  5. The order for 'font' properties matters
  6. https://developer.gnome.org/gtk3/stable/chap-css-properties.html
  7. https://bugzilla.gnome.org/show_bug.cgi?id=791001
  8. ---
  9. data/antler/style.css | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/data/antler/style.css b/data/antler/style.css
  12. index 5ab6f71..4d84904 100644
  13. --- a/data/antler/style.css
  14. +++ b/data/antler/style.css
  15. @@ -13,7 +13,7 @@
  16. border-width: 0px;
  17. border-radius: 2px;
  18. border-image: url("dark-key-border.svg") 2 2 2 2 repeat stretch;
  19. - font: Sans 14px;
  20. + font: 14px Sans;
  21. background-image: -gtk-gradient (linear,
  22. left top,
  23. left bottom,