Skip to content

Commit

Permalink
Merge pull request #13001 from nashidau/master
Browse files Browse the repository at this point in the history
[Rolemaster Unified Official] Add Inventory Manual, many features, including attack updates.
  • Loading branch information
kfroll20 authored Jun 11, 2024
2 parents c60841a + 1ecb574 commit dee2a88
Show file tree
Hide file tree
Showing 5 changed files with 437 additions and 86 deletions.
66 changes: 54 additions & 12 deletions RolemasterUnified_Official/rolemasterunified.css
Original file line number Diff line number Diff line change
Expand Up @@ -711,10 +711,6 @@ div.repcontrol {
display: none;
}

#stuff div.repcontrol {
display: block;
}

.favorite_group div.repcontrol {
display: block;
}
Expand All @@ -723,14 +719,6 @@ div.repcontrol {
display: block;
}


/* A nomral inventory item */
.inventory {
display: grid;
/*grid-template-columns: 5em 1fr 2em 2em;*/
grid-template-columns: 5em 1fr 10em 10em;
}

.small_number {
width: 4em;
}
Expand Down Expand Up @@ -906,10 +894,64 @@ button.nodie {
display: block;
}

.attackaddcontent {
display: grid;
grid-template-columns: 1fr 1fr;
}

/* vim: set sts=2 sw=2 syn=css : */


/* A normal inventory item */
.inventory {
display: grid;
/*grid-template-columns: 5em 1fr 2em 2em;*/
grid-template-columns: 5em 1fr 10em 10em 3em;
}

.inventoryadd {
border: red 1px solid;
display:none;
}

.inventoryaddshow[value='on'] ~ .inventoryadd {
display: block;
}

.inventoryaddcontent {
padding: 1em;
display: grid;
grid-template-columns: 1fr 1fr;
}

/* */
.inventoryarmorshow[value='on'] ~ .inventoryarmortoggle {
display: block;
}
.inventoryarmortoggle {
display: none;
}

.inventoryshieldshow[value='on'] ~ .inventoryshieldtoggle {
display: block;
}
.inventoryshieldtoggle {
display: none;
}

.inventoryweaponshow[value='on'] ~ .inventoryweapontoggle {
display: block;
}
.inventoryweapontoggle {
display: none;
}

/* all repcontrol items hidden by default */








Expand Down
Loading

0 comments on commit dee2a88

Please sign in to comment.