Skip to content

Commit bee667f

Browse files
committed
v0.4.2
* Fixed Players list overflowing on Managenemt tab for those crazy people with more than 12 players
1 parent 6ec5dea commit bee667f

File tree

7 files changed

+70
-43
lines changed

7 files changed

+70
-43
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### v0.4.2
4+
* Fixed Players list overflowing on Managenemt tab for those crazy people with more than 12 players
5+
36
### v0.4.1
47
* Fixed Players list overflowing on Managenemt tab for those crazy people with 8 or more players
58
* Fixed hidden subquests showing empty row to players

module.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
"url": "https://www.patreon.com/forien"
1010
}
1111
],
12-
"version": "0.4.1",
12+
"version": "0.4.2",
1313
"minimumCoreVersion": "0.6.0",
1414
"compatibleCoreVersion": "0.6.3",
1515
"url": "https://github.com/Forien/foundryvtt-forien-quest-log",
1616
"manifest": "https://raw.githubusercontent.com/Forien/foundryvtt-forien-quest-log/master/module.json",
17-
"download": "https://github.com/Forien/foundryvtt-forien-quest-log/releases/download/v0.4.1/v0.4.1.zip",
18-
"readme": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.1/README.md",
19-
"changelog": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.1/changelog.md",
17+
"download": "https://github.com/Forien/foundryvtt-forien-quest-log/releases/download/v0.4.2/v0.4.2.zip",
18+
"readme": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.2/README.md",
19+
"changelog": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.2/changelog.md",
2020
"bugs": "https://github.com/Forien/foundryvtt-forien-quest-log/issues",
2121
"languages": [
2222
{

styles/init.css

+22-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

styles/init.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

styles/quest-preview.scss

+26-17
Original file line numberDiff line numberDiff line change
@@ -312,24 +312,33 @@
312312
}
313313
}
314314

315-
.user-columns {
316-
padding: 8px;
317-
columns: 2;
318-
319-
.users {
320-
height: 100%;
321-
break-inside: avoid-column;
322-
323-
.user {
324-
break-inside: avoid-column;
325-
display: flex;
326-
327-
&.disabled {
328-
color: #666666;
329-
}
315+
.user-column-container {
316+
overflow-y: scroll;
317+
overflow-x: hidden;
318+
width: 100%; /*modify to suit*/
319+
height: 100%; /*modify to suit*/
320+
321+
.user-columns {
322+
padding: 8px;
323+
columns: 2;
324+
overflow-y: hidden;
325+
overflow-x: hidden;
326+
column-fill: balance;
327+
328+
.users {
329+
height: 100%;
330+
331+
.user {
332+
break-inside: avoid-column;
333+
display: flex;
334+
335+
&.disabled {
336+
color: #666666;
337+
}
330338

331-
label {
332-
align-self: center;
339+
label {
340+
align-self: center;
341+
}
333342
}
334343
}
335344
}

0 commit comments

Comments
 (0)