Skip to content

Commit

Permalink
Merge pull request #13611 from Djjus/dev-wfrp4e-1.74b
Browse files Browse the repository at this point in the history
[Warhammer 4e Character Sheet] v1.74b fixes & updates
  • Loading branch information
NorWhal authored Dec 19, 2024
2 parents 5f871bc + bb947c5 commit 3e3e9c4
Show file tree
Hide file tree
Showing 4 changed files with 470 additions and 139 deletions.
11 changes: 11 additions & 0 deletions Warhammer 4e Character Sheet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,17 @@ Note conditions are not intended for out of combat situations, GM simply makes t

///// ============ Change Log ============ /////

Dec 14th 2024 v1.74b

- New Custom Race option added to Race dropdown menu, will allow entering owna Custom Race name. See setting's tab for Custom Race Stating Characteristics Modifier, this allows the Char Roll to generate starting Charactistics for the Customer Race.reset to menu by clicking the X.
- Fix issue with Dual Wield trigger checkbox not showing correctly in Declare Actions section.
- Fix issue with impact/damaging not showing on Attack rolls with Size modifier Large Vs Small.
- Fix mixed up Impact/Impale checkboxes on the NPC pages.
- Fix Dangerous Quality fumble sometimes not showing when test Unit or 10s Die is 9.
- Fix Warpstone Quality now only triggered on crit again.
- Resolved some issues with dulpicate crit translations.
- Cleaned up minor CSS file errors.


Dec 14th 2024 v1.74a

Expand Down
59 changes: 42 additions & 17 deletions Warhammer 4e Character Sheet/Warhammer 4e Character Sheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@

@font-face {
font-family: 'WH font';
src: url(https://fonts.googleapis.com/css?family=EB+Garamond);
font-style: normal;
font-weight: 400;
src: url('https://fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkCY9_S6w.woff2') format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
.ui-dialog .charactersheet {
padding-left: 0px;
Expand Down Expand Up @@ -592,6 +595,23 @@ button[type=roll].sheet-combat-actions-np {
text-align: center;
}

button[type=action].sheet-combat-actions-list {
border-radius: 1px;
font-size: 11px;
display: left;
height: 24px;
padding: 1px 2px;
padding-bottom: -1px;
width: 100%;
margin: auto;
background-color: transparent;
font-weight: var(--bgfw);
border: 1px solid;
border-color: #423d32;
color: #63615c;
text-align: center;
text-shadow: none;
}

button[type=action].sheet-combat-actions-rep::before,
button[type=roll].sheet-combat-actions-rep::before {
Expand Down Expand Up @@ -1120,12 +1140,10 @@ input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="checkbox"] {
-moz-appearance: checkbox !important;
}
input[type="number"] {
-webkit-appearance: textfield;
-moz-appearance: textfield;

appearance: textfield;
}
input[type=number].sheet-no-spin::-webkit-outer-spin-button,
input[type=number].sheet-no-spin::-webkit-inner-spin-button,
Expand All @@ -1136,7 +1154,9 @@ input[disabled]::-webkit-outer-spin-button {
}
input[disabled],
input[type=number].sheet-no-spin {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
/* === SELECTS === */
select {
Expand Down Expand Up @@ -1230,13 +1250,13 @@ textarea {
}
.sheet-xs-textarea {
height: 19px;

vertical-align:middle;
position: relative;
vertical-align: middle;
}
.sheet-xs-textarea-talents {
height: 21px;

vertical-align:middle;
vertical-align: middle;
}
.sheet-small-textarea {
height: 50px;
Expand Down Expand Up @@ -2384,12 +2404,6 @@ select.sheet-inv-select{
}
}

input[type=checkbox] {
-webkit-appearance: radio; /* Chrome, Safari, Opera */
-moz-appearance: radio; /* Firefox */
-ms-appearance: radio; /* not currently supported */
}

input[type=text].sheet-underlined {
box-shadow: 0px -2px 0px 0px #000000 inset;
}
Expand Down Expand Up @@ -2580,13 +2594,11 @@ input[disabled],
input.sheet-pseudo-disabled {
background-color: #F9F5F0;
cursor: not-allowed;
-moz-appearance: textfield;
}

input[disabled].sheet-passive-skill-score {
background-color: #F2ECDC;
cursor: not-allowed;
-moz-appearance: textfield;
}

.sheet-important-text {
Expand Down Expand Up @@ -2663,6 +2675,19 @@ input[disabled].sheet-passive-skill-score {
text-align: center;
}

.sheet-button {
background-color: #04AA6D;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}

.sheet-large-button {
padding: 5px;
height: 45px;
Expand Down Expand Up @@ -5491,7 +5516,7 @@ input.sheet-condition[value="1"] ~ *.sheet-condition {

.sheet-rolltemplate-whfrp2e{
color: black;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-family: "WH font";
}

.sheet-rolltemplate-whfrp2e .textchatcontainer .inlinerollresult{
Expand Down
Loading

0 comments on commit 3e3e9c4

Please sign in to comment.