Skip to content

Commit fb243a9

Browse files
authored
v0.2.5 (#526)
1 parent f85fd48 commit fb243a9

File tree

3 files changed

+34
-22
lines changed

3 files changed

+34
-22
lines changed

themes/Theme-Minimal/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ For intended experience:
1717

1818
## Changelog
1919

20+
### Version 0.2.5 - 2025-04-06
21+
22+
- Theme tag card view.
23+
- Rework studio/tag card backgrounds.
24+
2025
### Version 0.2.4 - 2025-04-06
2126

2227
- Increase contrast for settings toggles

themes/Theme-Minimal/Theme-Minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Theme - Minimal
22
description: Minimal Theme for Stash
3-
version: 0.2.4
3+
version: 0.2.5
44
ui:
55
css:
66
- index.css

themes/Theme-Minimal/scenes.css

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@
77
padding: 20px;
88
margin: 8px;
99

10+
border-radius: 10px;
11+
12+
transition: background-color 0.5s ease-out;
13+
&:hover {
14+
background-color: var(--primary-2);
15+
}
16+
1017
a .card-section-title {
1118
color: unset;
1219
text-decoration: none;
1320
font-size: var(--text-lg);
14-
/* demo */
15-
/* filter: blur(3px); */
1621
}
1722

1823
.card-controls {
@@ -46,10 +51,17 @@
4651
}
4752

4853
.thumbnail-section {
49-
background-color: var(--primary-3);
5054
border-radius: 12px;
5155
overflow: hidden;
5256

57+
a.tag-card-header {
58+
img {
59+
border-radius: 12px;
60+
overflow: hidden;
61+
width: unset;
62+
}
63+
}
64+
5365
.scene-card-preview {
5466
margin-bottom: 0;
5567
}
@@ -93,8 +105,8 @@
93105

94106
white-space: nowrap;
95107
text-overflow: ellipsis;
96-
overflow: hidden;
97108
width: 100%;
109+
overflow: hidden;
98110
}
99111

100112
a:has(> img) {
@@ -214,21 +226,26 @@
214226
}
215227

216228
.card-section {
229+
margin-bottom: 0;
230+
padding: 1rem 0.75rem 0 0.75rem;
217231
.card-section-title {
218232
font-size: var(--text-base);
219233
color: var(--primary-12);
220234
}
221235

222-
.scene-card__details {
236+
.scene-card__details,
237+
.studio-card__details,
238+
.tag-parent-tags,
239+
.scene-marker-card__details,
240+
.tag-sub-tags,
241+
.tag-description {
223242
min-height: 0;
224243
margin-bottom: 0;
225244
height: auto;
226245

227-
.scene-card__date {
228-
font-size: var(--text-xs);
229-
color: var(--primary-11);
230-
line-height: 1;
231-
}
246+
font-size: var(--text-xs);
247+
color: var(--primary-11);
248+
line-height: 1.5;
232249

233250
.scene-card__description {
234251
display: none;
@@ -245,6 +262,7 @@
245262
display: flex;
246263
flex-wrap: wrap;
247264
justify-content: start;
265+
margin-top: 10px;
248266
margin-bottom: 10px;
249267

250268
.btn {
@@ -256,17 +274,6 @@
256274
}
257275
}
258276

259-
.video-section {
260-
position: relative;
261-
border-radius: 1rem;
262-
overflow: hidden;
263-
}
264-
265-
.card-section {
266-
margin-bottom: 0;
267-
padding: 1rem 0.75rem 0 0.75rem;
268-
}
269-
270277
.scene-table {
271278
table {
272279
border-collapse: separate;

0 commit comments

Comments
 (0)