UI improvements

This commit is contained in:
kramo
2023-04-14 14:27:48 +02:00
parent 43e8317c46
commit 3da6674dbb
4 changed files with 14 additions and 9 deletions

View File

@@ -1,6 +1,10 @@
@define-color accent_color @purple_1;
@define-color accent_bg_color @purple_4;
#details_view {
background-color: black;
}
#details_view_play_button {
color: @dark_5;
background-color: @light_1;

View File

@@ -1,6 +1,10 @@
@define-color accent_color @purple_5;
@define-color accent_bg_color @purple_3;
#details_view {
background-color: white;
}
#details_view_play_button {
color: @light_1;
background-color: @dark_5;

View File

@@ -34,6 +34,8 @@ template CartridgesWindow : Adw.ApplicationWindow {
transition-type: over_left;
Overlay details_view {
name: "details_view";
[overlay]
Box details_view_box {
orientation: vertical;
@@ -100,6 +102,7 @@ template CartridgesWindow : Adw.ApplicationWindow {
label: _("Game Title");
hexpand: true;
halign: start;
max-width-chars: 24;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
@@ -113,6 +116,7 @@ template CartridgesWindow : Adw.ApplicationWindow {
margin-top: 3;
hexpand: true;
halign: start;
max-width-chars: 36;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
@@ -214,15 +218,8 @@ template CartridgesWindow : Adw.ApplicationWindow {
}
}
styles [
"background",
]
Picture details_view_blurred_cover {
can-shrink: true;
keep-aspect-ratio: false;
hexpand: true;
vexpand: true;
}
}