summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2022-01-17 19:02:11 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2022-01-17 19:42:10 -0300
commite38949aeed0f23e55e2bc9daf7d68d6841cc54a4 (patch)
treecb2ecbe37cc22677949cf07c167c7f6e687dd3a2
parent946417990c23283b9aa013ca2d99eeed2a108c95 (diff)
downloadgnome-control-center-e38949aeed0f23e55e2bc9daf7d68d6841cc54a4.tar.gz
online-accounts: Adjust style of symbolic provider icons
As per design feedback, make symbolic icons have a rounded background.
-rw-r--r--panels/online-accounts/cc-online-accounts-panel.c61
-rw-r--r--panels/online-accounts/meson.build5
-rw-r--r--panels/online-accounts/online-accounts.css6
-rw-r--r--panels/online-accounts/online-accounts.gresource.xml1
4 files changed, 68 insertions, 5 deletions
diff --git a/panels/online-accounts/cc-online-accounts-panel.c b/panels/online-accounts/cc-online-accounts-panel.c
index 06071aabc..6c8683cee 100644
--- a/panels/online-accounts/cc-online-accounts-panel.c
+++ b/panels/online-accounts/cc-online-accounts-panel.c
@@ -369,6 +369,24 @@ create_account (CcGoaPanel *self,
self);
}
+static gboolean
+is_gicon_symbolic (GtkWidget *widget,
+ GIcon *icon)
+{
+ g_autoptr(GtkIconPaintable) icon_paintable = NULL;
+ GtkIconTheme *icon_theme;
+
+ icon_theme = gtk_icon_theme_get_for_display (gdk_display_get_default ());
+ icon_paintable = gtk_icon_theme_lookup_by_gicon (icon_theme,
+ icon,
+ 32,
+ gtk_widget_get_scale_factor (widget),
+ gtk_widget_get_direction (widget),
+ 0);
+
+ return icon_paintable && gtk_icon_paintable_is_symbolic (icon_paintable);
+}
+
static void
add_provider_row (CcGoaPanel *self,
GVariant *provider)
@@ -407,8 +425,18 @@ add_provider_row (CcGoaPanel *self,
}
image = gtk_image_new_from_gicon (icon);
- gtk_image_set_icon_size (GTK_IMAGE (image), GTK_ICON_SIZE_LARGE);
- gtk_widget_add_css_class (image, "lowres-icon");
+ gtk_widget_set_halign (image, GTK_ALIGN_CENTER);
+ gtk_widget_set_valign (image, GTK_ALIGN_CENTER);
+ if (is_gicon_symbolic (image, icon))
+ {
+ gtk_image_set_icon_size (GTK_IMAGE (image), GTK_ICON_SIZE_NORMAL);
+ gtk_widget_add_css_class (image, "symbolic-circular");
+ }
+ else
+ {
+ gtk_image_set_icon_size (GTK_IMAGE (image), GTK_ICON_SIZE_LARGE);
+ gtk_widget_add_css_class (image, "lowres-icon");
+ }
adw_action_row_add_prefix (ADW_ACTION_ROW (row), image);
adw_preferences_row_set_title (ADW_PREFERENCES_ROW (row), name);
@@ -466,8 +494,8 @@ add_account (CcGoaPanel *self,
/* The provider icon */
icon = gtk_image_new ();
- gtk_widget_add_css_class (icon, "lowres-icon");
- gtk_image_set_icon_size (GTK_IMAGE (icon), GTK_ICON_SIZE_LARGE);
+ gtk_widget_set_halign (icon, GTK_ALIGN_CENTER);
+ gtk_widget_set_valign (icon, GTK_ALIGN_CENTER);
gicon = g_icon_new_for_string (goa_account_get_provider_icon (account), &error);
if (error != NULL)
@@ -480,6 +508,18 @@ add_account (CcGoaPanel *self,
else
{
gtk_image_set_from_gicon (GTK_IMAGE (icon), gicon);
+
+ if (is_gicon_symbolic (icon, gicon))
+ {
+ gtk_image_set_icon_size (GTK_IMAGE (icon), GTK_ICON_SIZE_NORMAL);
+ gtk_widget_add_css_class (icon, "symbolic-circular");
+ }
+ else
+ {
+ gtk_image_set_icon_size (GTK_IMAGE (icon), GTK_ICON_SIZE_LARGE);
+ gtk_widget_add_css_class (icon, "lowres-icon");
+ }
+
}
adw_action_row_add_prefix (ADW_ACTION_ROW (row), icon);
@@ -645,6 +685,18 @@ command_add (CcGoaPanel *self,
}
}
+static void
+load_custom_css (void)
+{
+ g_autoptr(GtkCssProvider) provider = NULL;
+
+ provider = gtk_css_provider_new ();
+ gtk_css_provider_load_from_resource (provider, "/org/gnome/control-center/online-accounts/online-accounts.css");
+ gtk_style_context_add_provider_for_display (gdk_display_get_default (),
+ GTK_STYLE_PROVIDER (provider),
+ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
+}
+
/* Callbacks */
static gint
@@ -1001,4 +1053,5 @@ cc_goa_panel_init (CcGoaPanel *self)
self);
fill_accounts_listbox (self);
+ load_custom_css ();
}
diff --git a/panels/online-accounts/meson.build b/panels/online-accounts/meson.build
index bf2c302fb..9cdd71625 100644
--- a/panels/online-accounts/meson.build
+++ b/panels/online-accounts/meson.build
@@ -22,7 +22,10 @@ cflags += [
sources = files('cc-online-accounts-panel.c')
-resource_data = files('cc-online-accounts-panel.ui')
+resource_data = files(
+ 'cc-online-accounts-panel.ui',
+ 'online-accounts.css',
+)
sources += gnome.compile_resources(
'cc-' + cappletname + '-resources',
diff --git a/panels/online-accounts/online-accounts.css b/panels/online-accounts/online-accounts.css
new file mode 100644
index 000000000..08a60b696
--- /dev/null
+++ b/panels/online-accounts/online-accounts.css
@@ -0,0 +1,6 @@
+image.symbolic-circular {
+ background-color: alpha(currentColor, 0.08);
+ min-width: 32px;
+ min-height: 32px;
+ border-radius: 50%;
+}
diff --git a/panels/online-accounts/online-accounts.gresource.xml b/panels/online-accounts/online-accounts.gresource.xml
index a82edbec7..84c5bb2eb 100644
--- a/panels/online-accounts/online-accounts.gresource.xml
+++ b/panels/online-accounts/online-accounts.gresource.xml
@@ -2,5 +2,6 @@
<gresources>
<gresource prefix="/org/gnome/control-center/online-accounts">
<file preprocess="xml-stripblanks">cc-online-accounts-panel.ui</file>
+ <file>online-accounts.css</file>
</gresource>
</gresources>