Skip to content

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
* Fixed Players list overflowing on Managenemt tab for those crazy people with more than 12 players
  • Loading branch information
Forien committed Jun 30, 2020
1 parent 6ec5dea commit bee667f
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 43 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### v0.4.2
* Fixed Players list overflowing on Managenemt tab for those crazy people with more than 12 players

### v0.4.1
* Fixed Players list overflowing on Managenemt tab for those crazy people with 8 or more players
* Fixed hidden subquests showing empty row to players
Expand Down
8 changes: 4 additions & 4 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"url": "https://www.patreon.com/forien"
}
],
"version": "0.4.1",
"version": "0.4.2",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.6.3",
"url": "https://github.com/Forien/foundryvtt-forien-quest-log",
"manifest": "https://raw.githubusercontent.com/Forien/foundryvtt-forien-quest-log/master/module.json",
"download": "https://github.com/Forien/foundryvtt-forien-quest-log/releases/download/v0.4.1/v0.4.1.zip",
"readme": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.1/README.md",
"changelog": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.1/changelog.md",
"download": "https://github.com/Forien/foundryvtt-forien-quest-log/releases/download/v0.4.2/v0.4.2.zip",
"readme": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.2/README.md",
"changelog": "https://github.com/Forien/foundryvtt-forien-quest-log/blob/v0.4.2/changelog.md",
"bugs": "https://github.com/Forien/foundryvtt-forien-quest-log/issues",
"languages": [
{
Expand Down
35 changes: 22 additions & 13 deletions styles/init.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion styles/init.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 26 additions & 17 deletions styles/quest-preview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -312,24 +312,33 @@
}
}

.user-columns {
padding: 8px;
columns: 2;

.users {
height: 100%;
break-inside: avoid-column;

.user {
break-inside: avoid-column;
display: flex;

&.disabled {
color: #666666;
}
.user-column-container {
overflow-y: scroll;
overflow-x: hidden;
width: 100%; /*modify to suit*/
height: 100%; /*modify to suit*/

.user-columns {
padding: 8px;
columns: 2;
overflow-y: hidden;
overflow-x: hidden;
column-fill: balance;

.users {
height: 100%;

.user {
break-inside: avoid-column;
display: flex;

&.disabled {
color: #666666;
}

label {
align-self: center;
label {
align-self: center;
}
}
}
}
Expand Down
Loading

0 comments on commit bee667f

Please sign in to comment.