WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit ae5ab9d

Browse files
authored
Merge pull request #198 from Foldex/app_properties_fixes
2 parents bc83700 + 20a1a32 commit ae5ab9d

File tree

2 files changed

+32
-36
lines changed

2 files changed

+32
-36
lines changed

adwaita/variants/full/dialogs/app_properties.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,32 @@
66
}
77

88
/* Headings */
9-
.ModalDialogPopup div[class*="appproperties_Title_"]
9+
.ModalDialogPopup div[class*="appproperties_Title_"],
10+
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_BetaLabel_"]
1011
{
1112
font-family: var(--basefont) !important;
1213
font-size: var(--header_size) !important;
1314
font-weight: var(--header_weight) !important;
15+
color: var(--fg) !important;
1416
}
1517

16-
.ModalDialogPopup div[class*="appproperties_Detail_"]
18+
.ModalDialogPopup div[class*="appproperties_Detail_"],
19+
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_BetaLabel_"] + div
1720
{
1821
font-family: var(--basefont) !important;
1922
font-size: var(--label_size) !important;
2023
font-weight: var(--label_weight) !important;
24+
color: var(--fg) !important;
25+
}
26+
27+
/* Normal Text */
28+
.ModalDialogPopup div[class*="appproperties_AppProperties_"] .DialogBody,
29+
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_BuildInfo_"]
30+
{
31+
font-family: var(--basefont) !important;
32+
font-size: var(--basesize) !important;
33+
font-weight: var(--baseweight) !important;
34+
color: var(--fg) !important;
2135
}
2236

2337
/* Top Border */
@@ -83,12 +97,18 @@
8397
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_WorkshopGrid_"]
8498
{
8599
border-radius: var(--card_radius) !important;
100+
border: none !important;
101+
background: none !important;
102+
box-shadow: none !important;
86103
}
87104

88105
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_DlcGrid_"] div[class*="appproperties_DlcHeader_"],
89106
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_WorkshopGrid_"] div[class*="appproperties_WorkshopHeader_"]
90107
{
91108
background: var(--card_solid_bg) !important;
109+
font-family: var(--basefont) !important;
110+
font-weight: var(--header_weight) !important;
111+
color: var(--fg) !important;
92112
}
93113

94114
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="appproperties_DlcGrid_"] div[class*="appproperties_NameText_"],
@@ -253,7 +273,7 @@
253273

254274
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="gamepaddialog_FieldChildren_"] > .DialogDropDown
255275
{
256-
margin-right: 18px !important;
276+
margin: 0px 18px !important;
257277
}
258278

259279
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="gamepaddialog_FieldLabel_"] + div[class*="gamepaddialog_FieldChildren_"] > .DialogDropDown
@@ -326,6 +346,8 @@
326346
align-self: center !important;
327347
min-height: var(--button_min_height) !important;
328348
padding-left: 5px !important;
349+
text-decoration: none !important;
350+
white-space: nowrap !important;
329351
}
330352

331353
.ModalDialogPopup div[class*="appproperties_AppProperties_"] div[class*="gamepaddialog_FieldLabel_"] > div > div:nth-child(2) a

custom/custom.css

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,15 @@
33
/* ------------------ */
44

55
/* --- EXAMPLE: Override Theme Colors --- */
6-
/* -- DELETE BOTH LINES TO ENABLE
76
:root
87
{
9-
--bg: #242424;
10-
--fg: #FFFFFF;
11-
12-
--headerbar_bg: #303030;
13-
--popover_bg: #383838;
14-
--view_bg: #1E1E1E;
15-
16-
--accent: #78AEED;
17-
--accent_bg: #3584E4;
18-
--accent_disabled: #78AEED80;
19-
--accent_hover_bg: #78AEED12;
20-
--accent_active_bg: #78AEED29;
21-
--focusring: #78AEED80;
22-
23-
--destructive: #FF7B63;
24-
--destructive_bg: #C01C28;
25-
--destructive_disabled: #FF7B6380;
26-
--destructive_hover_bg: #FF7B6312;
27-
--destructive_active_bg: #FF7B6329;
28-
29-
--success: #8FF0A4;
30-
--success_bg: #26A269;
31-
--success_fg: var(--fg);
32-
33-
--warning: #F8E45C;
34-
--warning_bg: #CD9309;
35-
--warning_fg: var(--fg);
36-
37-
--error: #FF7B63;
38-
--error_bg: #C01C28;
39-
--error_fg: var(--fg);
8+
--accent: #81a2be;
9+
--accent_bg: #81a2be;
10+
--accent_disabled: #81a2be80;
11+
--accent_hover_bg: #81a2be12;
12+
--accent_active_bg: #81a2be29;
13+
--focusring: #81a2be80;
4014
}
41-
-- DELETE BOTH LINES TO ENABLE */
4215

4316
/* --- EXAMPLE: Hide Whats New --- */
4417
/* -- DELETE BOTH LINES TO ENABLE
@@ -47,3 +20,4 @@
4720
display: none !important;
4821
}
4922
-- DELETE BOTH LINES TO ENABLE */
23+

0 commit comments

Comments
 (0)