Skip to content

Commit d26c96b

Browse files
committed
v1.1.3-alpha
1 parent 90dc074 commit d26c96b

10 files changed

Lines changed: 376 additions & 23 deletions

File tree

menu.custom.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body.DesktopUI .PP7LM0Ow1K5qkR8WElLpt {
99

1010
body.DesktopUI ._2EstNjFIIZm_WUSKm5Wt7n {
1111
padding: 6px !important;
12-
border: 2px solid rgb(var(--color-5));
12+
border: 3px solid rgb(var(--color-5));
1313
border-radius: 8px;
1414
background-color: rgb(var(--color-3));
1515
}

options/experimental/userpannel.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
height: 0;
157157
margin: 0 !important;
158158
}
159-
._1_yS5UP7el0aN4vntx3dx:has(.yZ55NhARZGx1Awk2qs8pS) {
159+
._1_yS5UP7el0aN4vntx3dx:has(.wi0pDywRgOCxhG7OqQNaA) {
160160
visibility: visible;
161161
height: unset;
162162
}
@@ -209,10 +209,10 @@
209209
._2_FomluqqgQ2Hx8ON3AVep .wi0pDywRgOCxhG7OqQNaA {
210210
height: 4px;
211211
margin-top: 4px;
212-
--color-progress-bar-foreground: rgb(var(--accent-2));
212+
--color-progress-bar-foreground: rgb(var(--accent-1));
213213
--color-progress-bar-background: rgb(var(--background));
214214
}
215-
.yZ55NhARZGx1Awk2qs8pS._1CcdviLW6hebdTPh-3a7DC::after {
215+
._2_FomluqqgQ2Hx8ON3AVep .wi0pDywRgOCxhG7OqQNaA::after {
216216
border-radius: 8px;
217217
}
218218

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.ShoppingCart ._2rkDlHZ2yi-tFtDk4-CC4U {
2+
display: none;
3+
}

skin.json

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
}
138138
},
139139
"VAC-Ban visibility": {
140-
"description": "Hide the VAC ban from your profile or on all profiles (currently not working)",
140+
"description": "Hide the VAC ban from your profile or on all profiles",
141141
"default": "Show",
142142
"tab": "Steam bloat",
143143
"values": {
@@ -150,17 +150,28 @@
150150
}
151151
}
152152
},
153+
"Shop Cart Recommendations": {
154+
"description": "Hide recommendations in the cart",
155+
"default": "yes",
156+
"tab": "Steam bloat",
157+
"values": {
158+
"yes": {
159+
"TargetCss": { "affects": ["https://.*.steampowered.com"], "src": "options/steamBloat/shopCartRecommendations.css" }
160+
},
161+
"no": {}
162+
}
163+
},
153164

154165
"Userpannel": {
155166
"description": "Moves the user buttons and the download bar to the game sidebar",
156167
"default": "no",
157168
"tab": "Experimental",
158169
"values": {
159-
"no": {},
160170
"yes": {
161171
"TargetCss": { "affects": ["^Steam$"], "src": "options/experimental/userpannel.css" },
162172
"TargetJs": { "affects": ["^Steam$"], "src": "options/experimental/userpannel.js" }
163-
}
173+
},
174+
"no": {}
164175
}
165176
}
166177
},
@@ -191,5 +202,5 @@
191202
"splash_image": "https://raw.githubusercontent.com/SpaceTheme/Steam/main/_assets/img/preview.png",
192203
"name": "SpaceTheme for Steam",
193204
"tags": [ "Modular", "Dark", "Customizable", "alpha" ],
194-
"version": "1.1.2-alpha"
205+
"version": "1.1.3-alpha"
195206
}

src/css/webkit/agecheck.css

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,45 @@
11
.age_gate #app_agegate {
2-
position: relative;
32
margin: 0;
43
width: auto;
54
}
65

76
.age_gate #app_agegate .main_content_ctn {
87
padding: 42px;
98
border: none;
9+
border-radius: 8px;
10+
background-color: rgba(var(--color-2), 50%);
11+
}
12+
13+
14+
15+
/* Date Input */
16+
.age_gate #app_agegate .agegate_birthday_selector {
17+
border-radius: 8px;
18+
background-color: rgba(var(--color-1), 26%);
19+
}
20+
21+
/* Text */
22+
.age_gate #app_agegate .agegate_birthday_desc {
23+
padding-bottom: 6px;
24+
}
25+
26+
/* Select */
27+
.age_gate #app_agegate .agegate_birthday_selector select {
28+
height: unset;
29+
margin: 0 3px;
30+
padding: 6px;
31+
outline: none;
32+
border-radius: 8px;
33+
color: rgb(var(--accent-1));
34+
background-color: rgba(var(--color-1), 26%);
35+
}
36+
37+
38+
39+
/* Buttons */
40+
.age_gate #app_agegate .agegate_text_container.btns {
41+
height: unset;
42+
margin: 12px auto 0;
1043
}
1144

1245

@@ -17,9 +50,10 @@
1750
position: absolute;
1851
top: 0;
1952
left: 0;
20-
width: -webkit-fill-available;
53+
width: 100%;
54+
height: 100%;
2155
margin: 0;
22-
filter: blur(16px) brightness(0.6);
56+
filter: blur(60px) brightness(0.6);
2357
}
2458

2559
.age_gate #app_agegate .img_ctn img {

src/css/webkit/cart.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* Background image */
2+
.FaiD8bJRAZ-HoNo0VvLOO {
3+
display: none;
4+
}

src/css/webkit/home.css

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
.responsive_page_template_content {
2-
display: flex;
3-
flex-direction: column;
4-
align-items: center;
5-
}
6-
7-
.home_page_col_wrapper {
8-
max-width: 1400px;
9-
margin: 16px;
10-
}
11-
121
/* Banner */
132
.page_background_holder {
143
right: 0 !important;

src/css/webkit/wishlist.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* Wishlist button */
22
.wishlist .responsive_store_nav_ctn_spacer {
3-
display: none;
3+
visibility: hidden;
4+
height: 0;
45
}
56

67

src/icons/search.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)