SR6_Roll20_Sheet/components/_healthBox.css

66 lines
No EOL
1.3 KiB
CSS

.repcontainer[data-groupname="repeating_physicaltracker"] {
display: grid;
grid-template-columns: repeat(3, auto);
justify-items: center;
gap: 0px;
justify-content: start;
> * {
margin: -1px;
}
> .repitem {
width: fit-content;
height: fit-content;
> .itemcontrol {
display: none !important;
}
> button {
> span.woundModDisplay {
content: "-1";
top: 2px;
right: 4px;
color: #bfbdba;
position: absolute;
}
background-color: #444444;
border: 2px solid #550000;
border-radius: 0px;
appearance: none;
width: 3.5rem;
height: 3.5rem;
border-radius: 3px;
padding: 0px;
position: relative;
grid-span: 1span;
margin: 0px;
}
> div {
pointer-events: none;
}
> input[type="hidden"][name="attr_isCrossed"][value="true"] ~ button {
> div {
background-image: url("https://upload.wikimedia.org/wikipedia/commons/5/5f/Red_X.svg");
background-size: 100%;
background-position: center center;
background-repeat: no-repeat;
height: 100%;
width: 100%;
}
> span.woundModDisplay {
display: none;
}
}
}
}
.repcontrol[data-groupname="repeating_physicaltracker"] {
display: none !important;
}