[RolemasterUnified Official] Updates and Cleanups

A few small changes this week.  Most not visible to most people at the
moment.  Less console garbage which should make it a little snappier.

- Spells: Fix a nbs[ instead of a space
- Less message spew during creation.
- Less message spew during attacks.
- Fix actions code to not break level up
- Attacks small layout changes.
- Heading for feats of strength
- Move New Combat to the status block
- move EP near level.
- CC updates.
This commit is contained in:
Brett Nash
2024-10-22 08:19:35 -07:00
parent d467b2ab61
commit c9bbd7f165
5 changed files with 307 additions and 143 deletions
@@ -342,6 +342,12 @@ input:not(:checked).toggle + .toggler { display: none; }
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.prop_pair_heading {
font-weight: bold;
grid-column: span 2;
margin-top: 0.5em;
}
.prop_prop {
font-family: 'PragRoman', 'myPragRoman', 'IM Fell DW Pica', 'Kaushan Script', 'Chalkduster', 'Trattatello', 'Luminari', fantasy, serif;
grid-column: 1;
@@ -473,15 +479,6 @@ input:not(:checked).toggle + .toggler { display: none; }
}
div.attacks {
display: grid;
grid-template-columns: 1fr 3em 3em;
}
.repitem:nth-of-type(even) .attacks {
background: #eed;
}
div.foe {
display: grid;
@@ -934,6 +931,15 @@ button.nodie {
grid-template-columns: 1fr 1fr;
}
div.attacks {
display: grid;
grid-template-columns: 1fr 5em 5em;
}
.repitem:nth-of-type(even) .attacks {
background: #eed;
}
/* vim: set sts=2 sw=2 syn=css : */
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -8,5 +8,5 @@
"legacy": false,
"printable": true,
"compendium": "RMU",
"version": "1728971311"
"version": "1729610352"
}
@@ -36,6 +36,7 @@
"bard": "Bard",
"base": "Base",
"battleexpertise": "Battle Expertise",
"battlestyle": "Battle Styles",
"beak": "Beak",
"bite": "Bite",
"blacksmith": "Blacksmith",
@@ -61,6 +62,7 @@
"closed": "Closed",
"co": "Co",
"combatexpertise": "Combat Expertise",
"combatstyle": "Combat Styles",
"combattraining": "Combat Training",
"composition": "Composition",
"concealment": "Concealment",
@@ -83,6 +85,7 @@
"destruction": "Destruction",
"directedspell": "Directed Spell",
"disarm": "Disarm",
"disciplinestyle": "Discipline Styles",
"drawingpainting": "Drawing/Painting",
"druid": "Druid",
"duping": "Duping",
+14
View File
@@ -1,3 +1,15 @@
# Next
- Spells: Fix a nbs[ instead of a space
- Less message spew during creation.
- Less message spew during attacks.
- Fix actions code to not break level up
- Attacks small layout changes.
- Heading for feats of strength
- Move New Combat to the status block
- move EP near level.
- CC updates.
# 2024-10-15
- Start of Power Level support
@@ -10,6 +22,8 @@
- More messages when injuries are applied.
- Make checkboxes a standard size,
- NPC upload button on the front page.
- Directly rolled crits now have injury string
# 2024-10-8