Skip to content

Commit

Permalink
general: Replace deprecated .dim-label style
Browse files Browse the repository at this point in the history
With `.dimmed`.
  • Loading branch information
oscfdezdz committed Jan 8, 2025
1 parent 19d6107 commit bda5f83
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/exm-comment-tile.blp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ template $ExmCommentTile: Gtk.Widget {

Gtk.Label date {
styles [
"dim-label"
"dimmed"
]

margin-top: 6;
Expand Down
6 changes: 3 additions & 3 deletions src/exm-detail-view.blp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ template $ExmDetailView: Adw.NavigationPage {

Gtk.Label ext_author {
styles [
"dim-label"
"dimmed"
]

xalign: 0;
Expand Down Expand Up @@ -206,7 +206,7 @@ template $ExmDetailView: Adw.NavigationPage {
[suffix]
Gtk.Image {
styles [
"dim-label"
"dimmed"
]

icon-name: "external-link-symbolic";
Expand Down Expand Up @@ -235,7 +235,7 @@ template $ExmDetailView: Adw.NavigationPage {
[suffix]
Gtk.Image {
styles [
"dim-label"
"dimmed"
]

icon-name: "external-link-symbolic";
Expand Down
2 changes: 1 addition & 1 deletion src/exm-detail-view.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ new_donation_row (ExmDetailView *self,
gtk_actionable_set_action_target_value (GTK_ACTIONABLE (row), g_variant_new_int32 (num_donation));

external_link_icon = gtk_image_new_from_icon_name ("external-link-symbolic");
gtk_widget_add_css_class (external_link_icon, "dim-label");
gtk_widget_add_css_class (external_link_icon, "dimmed");
adw_action_row_add_suffix (ADW_ACTION_ROW (row), external_link_icon);

adw_expander_row_add_row (self->links_donations, row);
Expand Down
6 changes: 3 additions & 3 deletions src/exm-extension-row.blp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ template $ExmExtensionRow: Adw.ExpanderRow {

Gtk.Label description_title {
styles [
"dim-label"
"dimmed"
]

label: _("Description");
Expand Down Expand Up @@ -138,7 +138,7 @@ template $ExmExtensionRow: Adw.ExpanderRow {

Gtk.Label version_title {
styles [
"dim-label"
"dimmed"
]

label: _("Version");
Expand Down Expand Up @@ -169,7 +169,7 @@ template $ExmExtensionRow: Adw.ExpanderRow {

Gtk.Label error_label_tag {
styles [
"dim-label"
"dimmed"
]

label: _("Error");
Expand Down
2 changes: 1 addition & 1 deletion src/exm-search-row.blp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ template $ExmSearchRow: Gtk.ListBoxRow {

Gtk.Label description_label {
styles [
"dim-label"
"dimmed"
]

margin-top: 6;
Expand Down

0 comments on commit bda5f83

Please sign in to comment.