Skip to content

Commit

Permalink
A couple UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Aug 20, 2024
1 parent 1a6d1db commit 66a5c53
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions data/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@
background: shade(@accent_container_bg_color, 0.95);
}

.music-navrail button image,
.music-navrail button label {
color: @accent_container_fg_color;
}

.music-navrail button image {
background: shade(@accent_container_bg_color, 0.95);
}
Expand Down
8 changes: 4 additions & 4 deletions src/Widgets/play-bar-mobile.vala
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ namespace Victrola {
_play.add_css_class ("play-button");

cover_art = new Gtk.Image ();
cover_art.width_request = 48;
cover_art.height_request = 48;
cover_art.width_request = 64;
cover_art.height_request = 64;
cover_art.halign = Gtk.Align.CENTER;
cover_art.valign = Gtk.Align.CENTER;
cover_art.add_css_class ("cover-art");

cover_blur = new Gtk.Image ();
cover_blur.width_request = 48;
cover_blur.height_request = 48;
cover_blur.width_request = 64;
cover_blur.height_request = 64;
cover_blur.halign = Gtk.Align.CENTER;
cover_blur.valign = Gtk.Align.CENTER;
cover_blur.add_css_class ("cover-art-blur");
Expand Down

0 comments on commit 66a5c53

Please sign in to comment.