Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Moerill committed May 29, 2020
1 parent 5ce1440 commit 7a16815
Show file tree
Hide file tree
Showing 12 changed files with 76 additions and 55 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.5.2
<ul>
<li>Fixed attack buttons being hidden even with alternative rolling disabled.</li>
<li>Fixed clicking on an item name in an item chat card not toggling the description.</li>
</ul>

# v0.5.1
<ul>
<li>Fixed error when trying to throw damage for actors with "Damage Bonus" defined in "Special Traits".</li>
Expand Down
42 changes: 21 additions & 21 deletions dist/css/mess.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,18 @@
padding: 0 3px;
margin: 3px;
}
#chat-log button[data-action="attack"] ~ button[data-action="damage"],
#chat-log button[data-action="versatile"] {
.mess #chat-log button[data-action="attack"] ~ button[data-action="damage"],
.mess #chat-log button[data-action="versatile"] {
display: none;
}
#chat-log .mess-attack-card {
.mess #chat-log .mess-attack-card {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: flex-start;
}
#chat-log .mess-attack-card button,
#chat-log .mess-attack-card .mess-dice-result {
.mess #chat-log .mess-attack-card button,
.mess #chat-log .mess-attack-card .mess-dice-result {
cursor: pointer;
background: rgba(0, 0, 0, 0.1);
border: 2px groove var(--border-color);
Expand All @@ -120,76 +120,76 @@
width: 70%;
border-radius: 0.3em;
}
#chat-log .mess-attack-card .mess-dice-result {
.mess #chat-log .mess-attack-card .mess-dice-result {
height: auto;
}
#chat-log .mess-attack-card .mess-dice-result span {
.mess #chat-log .mess-attack-card .mess-dice-result span {
font-weight: bold;
font-size: 1.4em;
}
#chat-log .mess-attack-card .mess-dice-result .crit {
.mess #chat-log .mess-attack-card .mess-dice-result .crit {
color: var(--color-success);
color: #26a30a;
}
#chat-log .mess-attack-card .mess-dice-result .fumble {
.mess #chat-log .mess-attack-card .mess-dice-result .fumble {
color: var(--color-fail);
color: #c40502;
}
#chat-log .mess-attack-card .dice-roll {
.mess #chat-log .mess-attack-card .dice-roll {
background: rgba(0, 0, 0, 0.1);
border: 2px groove var(--border-color);
height: 1auto;
line-height: 1.2em;
width: 70%;
}
#chat-log .mess-attack-flavor {
.mess #chat-log .mess-attack-flavor {
flex: 1 100%;
border-top: 2px groove var(--border-color);
border-bottom: 2px groove var(--border-color);
padding: 0.2em 0;
}
#chat-log .mess-chat-error {
.mess #chat-log .mess-chat-error {
flex: 1 100%;
border-bottom: 2px groove var(--border-color);
padding: 0.2em 0;
color: var(--color-fail);
}
#chat-log .mess-chat-target {
.mess #chat-log .mess-chat-target {
flex: 40%;
border-right: 2px groove var(--border-color);
}
#chat-log .mess-chat-target span {
.mess #chat-log .mess-chat-target span {
text-overflow: ellipsis;
font-size: 0.8em;
}
#chat-log .mess-chat-target img {
.mess #chat-log .mess-chat-target img {
border: none;
cursor: pointer;
}
#chat-log .mess-chat-target img:hover {
.mess #chat-log .mess-chat-target img:hover {
border: 1px solid var(--highlight-color);
}
#chat-log .mess-chat-rolls {
.mess #chat-log .mess-chat-rolls {
flex: 60%;
display: block;
}
#chat-log .mess-chat-to-hit,
#chat-log .mess-chat-dmg {
.mess #chat-log .mess-chat-to-hit,
.mess #chat-log .mess-chat-dmg {
width: 100%;
text-align: center;
display: flex;
flex-flow: column;
align-items: center;
justify-content: flex-start;
}
#chat-log .mess-chat-sub-label {
.mess #chat-log .mess-chat-sub-label {
font-size: 0.8em;
opacity: 0.8;
color: var(--font-sub-color);
position: relative;
top: -0.3em;
}
#chat-log .mess-chat-roll-type {
.mess #chat-log .mess-chat-roll-type {
margin: 0.5em 0 0 0;
}
.dnd5e.actor .ability-mod,
Expand Down
4 changes: 2 additions & 2 deletions dist/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mess",
"title": "Mess - Moerills enhancing super-suit(e)",
"description": "This module is a mix of QoL changes, enhancements for my game and stuff i play around with. For a complete feature list check the URL down below.",
"version": "0.5.1",
"version": "0.5.2",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.6.0",
"author": "Moerill",
Expand All @@ -28,5 +28,5 @@
],
"manifest": "https://raw.githubusercontent.com/Moerill/mess/master/src/module.json",
"url": "https://github.com/Moerill/mess",
"download": "https://github.com/Moerill/mess/releases/download/v0.5.1/mess.zip"
"download": "https://github.com/Moerill/mess/releases/download/v0.5.2/mess.zip"
}
4 changes: 2 additions & 2 deletions dist/scripts/index.js

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

2 changes: 1 addition & 1 deletion dist/scripts/index.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 7a16815

Please sign in to comment.