mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
15483 lines
467 KiB
CSS
15483 lines
467 KiB
CSS
/* SANITIZATION CHANGE FIXES
|
|
============================= */
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
#edit-button {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 10px;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.characterdialog .bioinfo blockquote {
|
|
border-left: none;
|
|
}
|
|
|
|
.ui-dialog {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
scrollbar-width: thin;
|
|
padding: 0;
|
|
scrollbar-color: #90A4AE #CFD8DC;
|
|
}
|
|
|
|
.ui-dialog::-webkit-scrollbar {
|
|
width: 9px;
|
|
}
|
|
|
|
.ui-dialog::-webkit-scrollbar-track {
|
|
background: #CFD8DC;
|
|
}
|
|
|
|
.ui-dialog::-webkit-scrollbar-thumb {
|
|
background-color: #90A4AE;
|
|
border-radius: 2px;
|
|
border: 1px solid #CFD8DC;
|
|
}
|
|
|
|
.ui-dialog.patinece__parent {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ui-dialog.patinece__parent .loader {
|
|
padding: 0;
|
|
}
|
|
|
|
.ui-dialog.patinece__parent .loader svg {
|
|
position: relative;
|
|
height: 80px;
|
|
width: 80px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -40px;
|
|
margin-left: -40px;
|
|
}
|
|
|
|
.largedialog label {
|
|
width: 100%;
|
|
text-align: left;
|
|
float: none;
|
|
display: block;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
label input {
|
|
display: inline-block;
|
|
}
|
|
|
|
label input[type=checkbox] {
|
|
display: inline-block;
|
|
}
|
|
|
|
.largedialog textarea {
|
|
width: 100%;
|
|
height: 150px;
|
|
}
|
|
|
|
.largedialog .clear {
|
|
height: 15px;
|
|
}
|
|
|
|
.largedialog small {
|
|
text-align: right;
|
|
color: #999;
|
|
font-size: 0.85em;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.divider {
|
|
height: 100%;
|
|
border-right: 1px solid #C3C3C4;
|
|
}
|
|
|
|
.ui-dialog .largedialog {
|
|
padding: 0px 20px 0px 20px;
|
|
}
|
|
|
|
.ui-dialog {
|
|
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
|
|
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
|
|
transition: opacity 0.2s, -webkit-transform 0.2s;
|
|
-o-transition: transform 0.2s, opacity 0.2s;
|
|
transition: transform 0.2s, opacity 0.2s;
|
|
transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
|
|
}
|
|
|
|
.ui-dialog.collapsed {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.ui-dialog.collapsed .ui-dialog-content {
|
|
display: none !important;
|
|
}
|
|
|
|
.ui-dialog.dialog-collapsed {
|
|
opacity: 0.4;
|
|
max-width: 300px !important;
|
|
max-height: 50px !important;
|
|
-webkit-transform: scale(0.75, 0.75);
|
|
-ms-transform: scale(0.75, 0.75);
|
|
transform: scale(0.75, 0.75);
|
|
}
|
|
|
|
.ui-dialog.dialog-collapsed .ui-dialog-titlebar button {
|
|
display: none;
|
|
}
|
|
|
|
.ui-dialog.dialog-collapsed .ui-dialog-content {
|
|
display: none !important;
|
|
}
|
|
|
|
.dialog {
|
|
display: none;
|
|
}
|
|
|
|
.ui-dialog {
|
|
position: fixed !important;
|
|
}
|
|
|
|
.ui-dialog-content::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
.ui-dialog-content::-webkit-scrollbar-thumb {
|
|
border-radius: 4px;
|
|
border: 2px solid rgba(0, 0, 0, 0);
|
|
/* should match background, can't be transparent */
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
|
overflow-x: hidden !important;
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
.ui-dialog .nav-tabs li a {
|
|
color: #404040;
|
|
}
|
|
|
|
.ui-dialog label {
|
|
margin: 0;
|
|
}
|
|
|
|
.ui-dialog input {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
.dialog label {
|
|
display: block;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.characterviewer label {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.characterviewer .content {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.characterviewer .avatar {
|
|
float: left;
|
|
margin-right: 10px !important;
|
|
margin-bottom: 10px !important;
|
|
max-width: 250px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.characterviewer .avatar video {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
/* bio and info tab styles */
|
|
.note-editor table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.note-editor table > thead > tr > th,
|
|
.note-editor table > tbody > tr > th,
|
|
.note-editor table > tfoot > tr > th,
|
|
.note-editor table > thead > tr > td,
|
|
.note-editor table > tbody > tr > td,
|
|
.note-editor table > tfoot > tr > td {
|
|
padding: 8px;
|
|
line-height: 1.42857143;
|
|
vertical-align: top;
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
|
|
.note-editor table > thead > tr > th,
|
|
.note-editor table > thead > tr > td {
|
|
border-bottom: 2px solid #000 !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
.note-editor table > thead > tr > th {
|
|
vertical-align: bottom;
|
|
border-bottom: 2px solid #ddd;
|
|
}
|
|
|
|
.note-editor table {
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.note-editor table > thead > tr > th,
|
|
.note-editor table > tbody > tr > th,
|
|
.note-editor table > tfoot > tr > th,
|
|
.note-editor table > thead > tr > td,
|
|
.note-editor table > tbody > tr > td,
|
|
.note-editor table > tfoot > tr > td {
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.node-editor table > thead > tr > th,
|
|
.node-editor table > thead > tr > td {
|
|
border-bottom-width: 2px;
|
|
}
|
|
|
|
.note-popover {
|
|
z-index: 10700;
|
|
}
|
|
|
|
.note-editor:first-of-type {
|
|
z-index: 2;
|
|
}
|
|
|
|
.note-editor {
|
|
z-index: 1;
|
|
}
|
|
|
|
.note-editor .note-btn-group .dropdown-menu {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
.note-editor .dropdown-menu.dropdown-style,
|
|
.note-editor .dropdown-menu.note-table {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
.modal.link-dialog {
|
|
z-index: 13000;
|
|
}
|
|
|
|
.modal.link-dialog * {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal.link-dialog .checkbox {
|
|
display: none;
|
|
}
|
|
|
|
.note-editor a[href^="http://journal.roll20.net"] {
|
|
color: #B021A4 !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.note-editor a {
|
|
color: #337ab7;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.note-editor a:hover,
|
|
.note-editor a:focus {
|
|
color: #23527c;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* character sheet styles */
|
|
.ui-dialog .charsheet {
|
|
padding: 10px;
|
|
}
|
|
|
|
.ui-dialog .charsheet input {
|
|
height: auto;
|
|
vertical-align: middle;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ui-dialog .charsheet hr {
|
|
clear: both;
|
|
}
|
|
|
|
.ui-dialog .charsheet input[type=number] {
|
|
width: 3.5em;
|
|
}
|
|
|
|
.ui-dialog .charsheet .col:last-child {
|
|
margin-right: 0px !important;
|
|
}
|
|
|
|
.ui-dialog .charsheet button[type=roll],
|
|
.ui-dialog .charsheet button[type=compendium] {
|
|
padding: 2px 3px;
|
|
font-size: 1.3em;
|
|
margin: 0px 3px 0px 3px;
|
|
}
|
|
|
|
.ui-dialog .charsheet button[type=roll]:before {
|
|
font-family: "dicefontd20";
|
|
content: "t";
|
|
}
|
|
|
|
.ui-dialog .charsheet button[type=compendium]:before {
|
|
font-family: "pictos";
|
|
content: "i";
|
|
}
|
|
|
|
button[type=roll].ui-draggable-dragging {
|
|
z-index: 11000;
|
|
width: auto !important;
|
|
height: auto !important;
|
|
padding: 2px 3px;
|
|
font-size: 1.3em;
|
|
margin: 0px 3px 0px 3px;
|
|
}
|
|
|
|
button[type=roll].ui-draggable-dragging:before {
|
|
font-family: "dicefontd20";
|
|
content: "t";
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontrol_edit {
|
|
float: right;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem {
|
|
position: relative;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol {
|
|
display: none;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_del {
|
|
float: right;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_move {
|
|
cursor: move;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repitem.repitembroken {
|
|
border: 1px solid red !important;
|
|
}
|
|
|
|
.no-touch .ui-dialog .charsheet .repcontainer.editmode div.repitem:hover .itemcontrol {
|
|
background-color: rgba(241, 255, 92, 0.6);
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer.editmode .repitem .itemcontrol {
|
|
display: block;
|
|
}
|
|
|
|
.ui-dialog button.disabled {
|
|
opacity: 0.5;
|
|
cursor: default;
|
|
}
|
|
|
|
.ui-dialog .charmancer .choice {
|
|
display: none;
|
|
}
|
|
|
|
.ui-dialog .charmancer.locked input {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ui-dialog .charmancer.locked span label {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Attributes & Abilities */
|
|
.addattrib,
|
|
.addabil {
|
|
float: right;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.attributes {
|
|
font-size: 1.1em;
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.attributes .heading {
|
|
float: left;
|
|
width: 20%;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.attributes .heading small {
|
|
font-size: 0.825em;
|
|
color: #777;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
}
|
|
|
|
.attributes .heading:first-child {
|
|
width: 40%;
|
|
}
|
|
|
|
.attributes .attrib {
|
|
margin-bottom: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.attributes .attrib > div {
|
|
float: left;
|
|
width: 16%;
|
|
text-align: left;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.attributes .attrib .divider {
|
|
width: auto;
|
|
padding: 5px 5px 0px 5px;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.attributes .attrib input {
|
|
width: 80%;
|
|
}
|
|
|
|
.attributes .body.editable .attrib div.attrname:hover {
|
|
background-color: #FFFFBA;
|
|
}
|
|
|
|
.abilities .abil {
|
|
position: relative;
|
|
background-color: white;
|
|
}
|
|
|
|
.abilities .body .abil.editing .editabil {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil .saveabil {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil.editing .saveabil {
|
|
display: inline;
|
|
color: green;
|
|
}
|
|
|
|
.abilities .body .abil.editing .handle {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil .action,
|
|
.abilities .body .abil .instructions {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil.editing .action,
|
|
.abilities .body .abil.editing .instructions {
|
|
display: block;
|
|
}
|
|
|
|
.abilities .body input[type=text] {
|
|
width: 150px;
|
|
}
|
|
|
|
.abilities .body .bartoggle label {
|
|
font-size: 0.9em;
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
margin-top: 5px;
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
width: auto;
|
|
}
|
|
|
|
.abilities .body .bartoggle .istokenaction-label {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil.editing .bartoggle {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body.editable .abil .bartoggle .istokenaction-label {
|
|
display: inline-block;
|
|
}
|
|
|
|
.abilities .body .testabil {
|
|
color: black;
|
|
vertical-align: middle;
|
|
font-size: 1.1em;
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil.editing .testabil {
|
|
display: block;
|
|
}
|
|
|
|
.abilities .body .rollabil {
|
|
margin-right: 10px;
|
|
font-size: 1.2em;
|
|
color: black;
|
|
padding: 3px 5px;
|
|
}
|
|
|
|
.abilities .body hr {
|
|
display: none;
|
|
}
|
|
|
|
.abilities .body .abil.editing hr {
|
|
display: block;
|
|
}
|
|
|
|
.attributesabilities .sortcontrols {
|
|
position: absolute;
|
|
right: -22px;
|
|
top: 5px;
|
|
display: none;
|
|
width: 45px;
|
|
}
|
|
|
|
.attributesabilities .abil {
|
|
padding-top: 10px;
|
|
padding-bottom: 5px;
|
|
border-bottom: 1px solid #eeeeee;
|
|
background-color: white;
|
|
}
|
|
|
|
.attributesabilities .abil .sortcontrols {
|
|
right: 0px;
|
|
top: 10px;
|
|
width: auto;
|
|
}
|
|
|
|
.attributesabilities .attributes .body.editable .attrib:hover .sortcontrols,
|
|
.attributesabilities .abilities .body.editable .abil:hover .sortcontrols {
|
|
display: block;
|
|
}
|
|
|
|
.attributesabilities .attributes .body.editable .attrib .sortcontrols:hover,
|
|
.attributesabilities .abilities .body.editable .abil .sortcontrols:hover {
|
|
display: block;
|
|
}
|
|
|
|
.attributesabilities .sortcontrols > div {
|
|
display: block;
|
|
float: left;
|
|
margin-right: 7px;
|
|
color: #aaa !important;
|
|
}
|
|
|
|
.attributesabilities .sortcontrols > div:hover {
|
|
color: #666 !important;
|
|
}
|
|
|
|
.attributesabilities .sortcontrols > div {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.attributesabilities .sortcontrols .handle {
|
|
cursor: move;
|
|
}
|
|
|
|
.attributesabilities .abil label {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
/* Macrobar */
|
|
#background {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
background-color: white;
|
|
z-index: -5;
|
|
}
|
|
|
|
#macrobar {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 63px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
/* display: none; */
|
|
}
|
|
|
|
#macrobar p {
|
|
font-size: 1.5em;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
color: white;
|
|
margin: 0;
|
|
}
|
|
|
|
#macrobar_macros {
|
|
width: 100%;
|
|
height: 38px;
|
|
padding: 5px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#macrobar.sorting {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
#macrobar.sorting #macrobar_macros {
|
|
background: rgba(251, 255, 227, 0.5);
|
|
}
|
|
|
|
#macrobar.sorting button {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#macrobar .macrobox {
|
|
display: inline-block;
|
|
width: auto;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#macrobar .emptybox {
|
|
width: 75px;
|
|
display: inline-block;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
#macrobar button.emptybox {
|
|
width: 30px;
|
|
opacity: 0;
|
|
}
|
|
|
|
#macrobar div.macrobox:hover,
|
|
#macrobar div.macrobox.ui-sortable-helper {
|
|
padding-right: 12px;
|
|
margin-right: 3px;
|
|
border-radius: 3px;
|
|
background-color: #999;
|
|
cursor: move;
|
|
}
|
|
|
|
.charmancer .sheet-attr-container {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
-ms-flex-flow: column-reverse;
|
|
flex-flow: column-reverse;
|
|
min-width: 15%;
|
|
display: -webkit-inline-box !important;
|
|
display: -ms-inline-flexbox !important;
|
|
display: inline-flex !important;
|
|
-ms-flex-line-pack: space-evenly;
|
|
align-content: space-evenly;
|
|
}
|
|
|
|
.charsheet .sheet-attr-container {
|
|
width: 70px;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 19px;
|
|
height: 64px;
|
|
text-align: center;
|
|
}
|
|
|
|
.charsheet .label {
|
|
color: #333;
|
|
text-align: inherit;
|
|
white-space: inherit;
|
|
vertical-align: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
.charsheet div.charmancer .info .sheet-compendium-page {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 10px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/D&D-border.png");
|
|
border-image-slice: 20 32;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
}
|
|
|
|
.charsheet .charmancer .sheet-compendium-page {
|
|
height: 100%;
|
|
}
|
|
|
|
.charsheet div.charmancer .sheet-attr-container.choice {
|
|
display: none !important;
|
|
}
|
|
|
|
.charsheet .charmancer span label.sheet-compendium-opt > span {
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
min-width: 1.618em;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.charsheet .charmancer label.sheet-compendium-opt, .charsheet .charmancer label.sheet-compendium-opt > *, .charsheet .charmancer label.sheet-abilities_attribute {
|
|
display: inline;
|
|
vertical-align: unset;
|
|
}
|
|
|
|
.charsheet .charmancer label * {
|
|
margin-top: 9px;
|
|
}
|
|
|
|
.charsheet .charmancer span .sheet-compendium-opt > input[type=radio] {
|
|
opacity: 0;
|
|
width: 0;
|
|
cursor: none;
|
|
}
|
|
|
|
.charsheet .charmancer .hilite {
|
|
color: #7e2d40;
|
|
background: #EFEFEF;
|
|
border-radius: 0.5em;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.charsheet .charmancer .hilite .label {
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.charsheet .charmancer span label.sheet-compendium-opt > input[type=radio]:checked + span {
|
|
color: white;
|
|
background-color: #EC2127;
|
|
}
|
|
|
|
.charsheet .charmancer button[type=roll] {
|
|
padding: 1px 6px;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
|
|
.charsheet .backgrounds_options label button[type=roll] {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.charsheet .charmancer button[type=roll]:before {
|
|
content: "";
|
|
}
|
|
|
|
.charsheet .sheet-item .sheet-subitem, .charsheet .header .sheet-options {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .col {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.attr-container button[type=roll], .saving-throw button[type=roll], .skill button[type=roll], .ac-init-speed-container button[type=roll], .subcontainer button[type=roll], .npc button[type=roll] {
|
|
font-size: 9px !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.charsheet .row {
|
|
margin: 0;
|
|
}
|
|
|
|
.saving-throw-container .label span, .skills-container .label span, .textbox-container .label span, .ac-init-speed-container span.label, .hp span, .exhaustion span.label, .hdice-dsaves-container span, .attacks span, .globalattack span, .equipment span, .textbox span, .tool_proficiencies span, .proficiencies span, .traits span, .spells span, .options .body span {
|
|
text-align: center !important;
|
|
}
|
|
|
|
.charsheet .spell .details-flag, .charsheet .attacks .options-flag, .charsheet .spell .options-flag, .charsheet .tool .options-flag, .charsheet .npc .npc_options-flag, .charsheet .pc .trait .options-flag, .charsheet .pc .global-mod .options-flag, .charsheet .action .options-flag, .charsheet .textbox .options-flag, .charsheet .proficiencies .options-flag, .charsheet .traits .options-flag, .charsheet .equipment .inventorysubflag, .charsheet .header .options-flag {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 18px !important;
|
|
height: 18px !important;
|
|
z-index: 2;
|
|
}
|
|
|
|
.charsheet .hp input[type=number] {
|
|
width: 100%;
|
|
}
|
|
|
|
.charsheet .options-flag + span, .charsheet .action .options-flag + span, .charsheet div .textbox .options-flag + span, .charsheet .proficiencies .options-flag + span, .charsheet .traits .options-flag + span, .charsheet .equipment .inventorysubflag + span, .charsheet .header .options-flag + span {
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
white-space: nowrap;
|
|
width: 18px;
|
|
height: 18px;
|
|
font-size: 20px;
|
|
font-family: pictos;
|
|
color: #A0A0A0;
|
|
cursor: pointer;
|
|
margin-top: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .pc .trait .output::before {
|
|
display: none !important;
|
|
content: "";
|
|
}
|
|
|
|
.charsheet .spell .options-done span {
|
|
color: #fff;
|
|
}
|
|
|
|
.charsheet .container {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.charsheet .repcontainer .spell .details-flag:not(:checked) ~ .wrapper {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .spell .prep-box {
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
opacity: 0;
|
|
z-index: 2;
|
|
position: relative;
|
|
width: 12px;
|
|
}
|
|
|
|
.charsheet .repcontainer.editmode div.repitem:hover .itemcontrol {
|
|
background-color: rgba(241, 255, 92, 0.6);
|
|
}
|
|
|
|
.charsheet .container:not(.npc) div.page div.header div.name-container span {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.charsheet .toggleflag[value*=advantagetoggle] + .advantagetoggle, .charsheet .toggleflag[value*=whispertoggle] + .whispertoggle, .charsheet .toggleflag[value="1"] + .hidden, .charsheet .toggleflag[value="1"] + .row.hidden {
|
|
display: block !important;
|
|
}
|
|
|
|
.charsheet button[type=roll]:before {
|
|
display: none !important;
|
|
}
|
|
|
|
.npc .trait .display .description, .npc .reaction .display .description, .npc .action .display .description {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.charsheet .spell .details-flag:hover + span, .charsheet .attacks .options-flag:hover + span, .charsheet .spell .options-flag:hover + span, .charsheet .tool .options-flag:hover + span, .charsheet .npc .npc_options-flag:hover + span, .charsheet .trait .options-flag:hover + span, .charsheet .global-mod .options-flag:hover + span, .charsheet .action .options-flag:hover + span, .charsheet .textbox .options-flag:hover + span, .charsheet .proficiencies .options-flag:hover + span, .charsheet .traits .options-flag:hover + span, .charsheet .equipment .inventorysubflag:hover + span, .charsheet .header .options-flag:hover + span {
|
|
color: #000 !important;
|
|
}
|
|
|
|
.charsheet .spell .details-flag, .charsheet .spell .details-flag + span {
|
|
position: absolute !important;
|
|
top: 0px !important;
|
|
right: 23px !important;
|
|
width: 18px !important;
|
|
height: 18px !important;
|
|
}
|
|
|
|
.charsheet .display span {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.charsheet .display .spellritual, .charsheet .display .spellconcentration {
|
|
text-align: center !important;
|
|
}
|
|
|
|
.charsheet .hp input[type=number] {
|
|
font-size: 30px !important;
|
|
}
|
|
|
|
.charsheet .npc .traits .wide,
|
|
.charsheet .npc .actions .wide {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.charsheet .npc .display span {
|
|
text-align: inherit !important;
|
|
}
|
|
|
|
.charsheet .npc .display .row.title.red span {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.charsheet .coin input {
|
|
display: inline-block !important;
|
|
font-size: 12px !important;
|
|
padding: 0px !important;
|
|
width: 40px !important;
|
|
}
|
|
|
|
/* GENERIC STYLES
|
|
============================= */
|
|
.ellipsis {
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
/* GRID
|
|
============================= */
|
|
div.grid {
|
|
display: -ms-inline-grid;
|
|
display: inline-grid;
|
|
grid-column-gap: 1%;
|
|
grid-row-gap: 0.5%;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.italics {
|
|
font-style: italic;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
div.auto2column {
|
|
-ms-grid-columns: auto 1fr;
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
|
|
.pc,
|
|
.npc {
|
|
display: none;
|
|
}
|
|
|
|
.npc_toggle[value="0"] ~ .pc,
|
|
.npc_toggle[value="1"] ~ .npc {
|
|
display: block;
|
|
}
|
|
|
|
.container {
|
|
width: 750px;
|
|
background-color: white;
|
|
position: relative;
|
|
}
|
|
|
|
input[type=radio].tab-button {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 92px;
|
|
right: 0px;
|
|
width: 18px;
|
|
height: 18px;
|
|
z-index: 2;
|
|
}
|
|
|
|
input[type=radio].tab-button + span {
|
|
position: absolute;
|
|
top: 92px;
|
|
right: 0px;
|
|
width: 17px;
|
|
height: 17px;
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.advantagetoggle {
|
|
position: absolute;
|
|
top: 92px;
|
|
left: 570px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.advantagetoggle input[type=radio] {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 18px;
|
|
height: 18px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.advantagetoggle input[type=radio] + span {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 17px;
|
|
height: 17px;
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.advantagetoggle input[type=radio]:checked + span,
|
|
input[type=radio].tab-button:checked + span {
|
|
color: #FFFFFF;
|
|
background-color: #EC2127;
|
|
}
|
|
|
|
.advantagetoggle input.toggle-left,
|
|
.advantagetoggle input.toggle-left + span {
|
|
right: 181px;
|
|
width: 90px;
|
|
}
|
|
|
|
.advantagetoggle input.toggle-center,
|
|
.advantagetoggle input.toggle-center + span {
|
|
right: 113px;
|
|
width: 65px;
|
|
}
|
|
|
|
.advantagetoggle input.toggle-right,
|
|
.advantagetoggle input.toggle-right + span {
|
|
right: 0px;
|
|
width: 110px;
|
|
}
|
|
|
|
.whispertoggle {
|
|
left: 270px;
|
|
}
|
|
|
|
.advantagetoggle.whispertoggle input.toggle-right,
|
|
.advantagetoggle.whispertoggle input.toggle-right + span {
|
|
width: 50px;
|
|
}
|
|
|
|
.advantagetoggle.whispertoggle input.toggle-left,
|
|
.advantagetoggle.whispertoggle input.toggle-left + span {
|
|
right: 54px;
|
|
width: 55px;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle {
|
|
top: -10px;
|
|
left: 390px;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle.whispertoggle {
|
|
top: -10px;
|
|
left: 120px;
|
|
}
|
|
|
|
.advantagetoggle {
|
|
display: none;
|
|
}
|
|
|
|
.toggleflag[value*=advantagetoggle] + .advantagetoggle,
|
|
.toggleflag[value*=whispertoggle] + .whispertoggle,
|
|
.toggleflag[value="1"] + .hidden,
|
|
.toggleflag[value="1"] + .row.hidden {
|
|
display: block;
|
|
}
|
|
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc,
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .header {
|
|
display: block;
|
|
visibility: hidden;
|
|
width: 0px;
|
|
top: -150px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells {
|
|
display: block;
|
|
}
|
|
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.core,
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.bio,
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.options {
|
|
display: none;
|
|
}
|
|
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .body {
|
|
visibility: visible;
|
|
}
|
|
|
|
.npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .body .col {
|
|
display: block;
|
|
}
|
|
|
|
.hidden,
|
|
.options .row.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle input[type=radio] + span {
|
|
text-transform: lowercase;
|
|
font-variant: small-caps;
|
|
font-weight: normal;
|
|
background: transparent;
|
|
border: none;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle input[type=radio] + span:first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle input[type=radio] + span > span.togm {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.npc_toggle[value="1"] ~ .advantagetoggle input[type=radio]:checked + span {
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.page {
|
|
display: none;
|
|
}
|
|
|
|
input[type=radio].tab-button.core:checked ~ .page.core,
|
|
input[type=radio].tab-button.bio:checked ~ .page.bio,
|
|
input[type=radio].tab-button.spells:checked ~ .page.spells,
|
|
input[type=radio].tab-button.options:checked ~ .page.options {
|
|
display: block;
|
|
}
|
|
|
|
input[type=radio].tab-button.core,
|
|
input[type=radio].tab-button.core + span {
|
|
right: 116px;
|
|
width: 45px;
|
|
}
|
|
|
|
input[type=radio].tab-button.bio,
|
|
input[type=radio].tab-button.bio + span {
|
|
right: 83px;
|
|
width: 30px;
|
|
}
|
|
|
|
input[type=radio].tab-button.spells,
|
|
input[type=radio].tab-button.spells + span {
|
|
right: 20px;
|
|
width: 60px;
|
|
}
|
|
|
|
.header .top {
|
|
height: 42px;
|
|
}
|
|
|
|
.header .part {
|
|
width: 157px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.header .part input[type=text],
|
|
.header .part select {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
height: 56px;
|
|
width: 110px;
|
|
text-align: center;
|
|
}
|
|
|
|
.header .header-info select {
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.header .part input[type=text] {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.header .part span.display {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
height: 54px;
|
|
width: 110px;
|
|
text-align: center;
|
|
margin: 0px;
|
|
display: inline-block;
|
|
line-height: 54px;
|
|
font-size: 25px;
|
|
}
|
|
|
|
.header input,
|
|
.header select {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
}
|
|
|
|
.header input {
|
|
padding: 0px;
|
|
}
|
|
|
|
.header select {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.header input[type=number] {
|
|
text-align: center;
|
|
margin-bottom: -9px;
|
|
}
|
|
|
|
.header input[type=number]::-webkit-inner-spin-button,
|
|
.header input[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.header input[type=number] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
.header span {
|
|
display: block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.header .name-container span.label {
|
|
text-align: left;
|
|
font-weight: normal;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.name-container {
|
|
width: 250px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.name-container input {
|
|
font-size: 20px;
|
|
margin-top: -9px;
|
|
}
|
|
|
|
.header-info {
|
|
width: 482px;
|
|
margin-left: -2px;
|
|
display: inline-block;
|
|
border: 3px double #666;
|
|
padding: 5px;
|
|
max-height: 74px;
|
|
}
|
|
|
|
.hlabel-container {
|
|
display: inline-block;
|
|
margin-left: -4px;
|
|
}
|
|
|
|
.hlabel-container.multiclass-container {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.hlabel-container:first-child {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
.charsheet .body {
|
|
width: 750px;
|
|
margin-top: 22px;
|
|
}
|
|
|
|
.col {
|
|
width: 32.97%;
|
|
}
|
|
|
|
.col2-3 {
|
|
width: 490px;
|
|
margin-left: 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.attributes-container {
|
|
width: 70px;
|
|
margin-right: 5px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.attr-container {
|
|
width: 70px;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 19px;
|
|
height: 64px;
|
|
text-align: center;
|
|
}
|
|
|
|
.attr-container button[type=roll],
|
|
.saving-throw button[type=roll],
|
|
.skill button[type=roll],
|
|
.ac-init-speed-container button[type=roll],
|
|
.subcontainer button[type=roll],
|
|
.npc button[type=roll] {
|
|
background-color: transparent;
|
|
color: black;
|
|
border: none;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.attr-container button[type=roll]::before,
|
|
.saving-throw button[type=roll]::before,
|
|
.skill button[type=roll]::before,
|
|
.ac-init-speed-container button[type=roll]::before,
|
|
.subcontainer button[type=roll]::before,
|
|
.npc button[type=roll]::before {
|
|
content: "" !important;
|
|
}
|
|
|
|
.attr-container button[type=roll] {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.charsheet button[type=roll]:hover,
|
|
.charsheet button[type=roll]:hover *,
|
|
.charsheet .spell button[type=roll]:hover input[type=text],
|
|
.charsheet .action .display button[type=roll]:hover * {
|
|
color: #EC2127;
|
|
}
|
|
|
|
button[type=roll] * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.attr-container input {
|
|
border: none;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.attr {
|
|
font-size: 30px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.attr-mod {
|
|
width: 40px;
|
|
height: 20px;
|
|
border: 1px solid #666;
|
|
border-radius: 50%;
|
|
z-index: 2;
|
|
position: absolute;
|
|
top: 62px;
|
|
left: 0;
|
|
right: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: white;
|
|
}
|
|
|
|
.attr-mod input {
|
|
text-align: center;
|
|
/* width: 100%;
|
|
height: 20px;*/
|
|
font-size: 20px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
vertical-align: middle;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.skills-saves-container {
|
|
width: 163px;
|
|
margin-right: 5px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.insp-prof-container {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.insp-prof-container .value {
|
|
display: inline-block;
|
|
border: 1px solid #666;
|
|
border-radius: 50%;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-color: white;
|
|
position: relative;
|
|
}
|
|
|
|
.insp-prof-container .value input[type=checkbox] {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
.insp-prof-container .value input[type=checkbox] ~ span {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-radius: 50%;
|
|
background: url("https://app.roll20.net/images/dndstyling/insperation.gif") left top no-repeat;
|
|
background-size: contain;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.insp-prof-container .value input[type=checkbox]:checked ~ span {
|
|
display: block;
|
|
}
|
|
|
|
.insp-prof-container .value span {
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
line-height: 34px;
|
|
}
|
|
|
|
.insp-prof-container .label {
|
|
width: calc(100% - 29px);
|
|
height: 30px;
|
|
margin-left: -15px;
|
|
margin-top: 3px;
|
|
display: inline-block;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.insp-prof-container span {
|
|
display: block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charsheet .insp-prof-container .value input,
|
|
.charsheet .saving-throw input[type=text],
|
|
.charsheet .skill input[type=text],
|
|
.charsheet .ac-init-speed-container input,
|
|
.charsheet .hp input,
|
|
.charsheet .exhaustion input,
|
|
.charsheet .hdice-dsaves-container input[type=text],
|
|
.charsheet .hdice-dsaves-container input[type=number],
|
|
.charsheet .attacks input,
|
|
.charsheet .equipment input,
|
|
.charsheet .tool input,
|
|
.charsheet .proficiencies input,
|
|
.charsheet .pc .traits input,
|
|
.charsheet .spell input,
|
|
.charsheet .options .body input,
|
|
.charsheet .resources input[type=number] {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
border: none;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
}
|
|
|
|
.resources input[type=number],
|
|
.hdice-dsaves-container input[type=number] {
|
|
padding-right: 0px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.saving-throw-container,
|
|
.skills-container {
|
|
width: 165px;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
margin-bottom: 10px;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.saving-throw,
|
|
.skill {
|
|
width: 165px;
|
|
height: 18px;
|
|
}
|
|
|
|
.saving-throw input[type=checkbox],
|
|
.skill input[type=checkbox] {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.saving-throw input[type=text],
|
|
.skill input[type=text] {
|
|
font-size: 12px;
|
|
width: 21px;
|
|
}
|
|
|
|
.col1 .saving-throw > span,
|
|
.col1 .skill > span {
|
|
font-size: 12px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
min-width: 21px;
|
|
}
|
|
|
|
.saving-throw button[type=roll],
|
|
.skill button[type=roll] {
|
|
width: calc(100% - 72px);
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
white-space: nowrap;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
text-align: left;
|
|
}
|
|
|
|
.saving-throw-container .label span,
|
|
.skills-container .label span,
|
|
.textbox-container .label span,
|
|
.ac-init-speed-container span.label,
|
|
.hp span,
|
|
.exhaustion span.label,
|
|
.hdice-dsaves-container span,
|
|
.attacks span,
|
|
.globalattack span,
|
|
.equipment span,
|
|
.textbox span,
|
|
.tool_proficiencies span,
|
|
.proficiencies span,
|
|
.traits span,
|
|
.spells span,
|
|
.options .body span {
|
|
display: block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.npc .traits span {
|
|
font-size: 13px;
|
|
text-align: left;
|
|
font-weight: normal;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.globalattack span {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.globalattack.acmod .display span span {
|
|
display: inline;
|
|
}
|
|
|
|
.globalattack.acmod label,
|
|
.globalattack.acmod label input {
|
|
font-weight: normal;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.globalattack.acmod label input[type=number] {
|
|
width: 3.5em;
|
|
}
|
|
|
|
.exhaustion div span.ex-description {
|
|
font-size: 9px;
|
|
line-height: 9px;
|
|
text-align: left;
|
|
width: 116px;
|
|
display: block;
|
|
}
|
|
|
|
.exhaustion span.label {
|
|
width: 100%;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.exhaustion div.ex-descriptions {
|
|
display: inline-block;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.exhaustion-toggle[value="0"] ~ .exhaustion {
|
|
display: none;
|
|
}
|
|
|
|
.exhaustion input[type=number] {
|
|
width: 116px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.skill button span,
|
|
.options .body .skill span span,
|
|
.rolltemplate-spell .grey {
|
|
color: #A0A0A0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.textbox-container,
|
|
.tool_proficiencies {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
width: 243px;
|
|
}
|
|
|
|
.tool_proficiencies,
|
|
.attacks {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.textbox-container textarea {
|
|
width: calc(100% - 10px);
|
|
resize: vertical;
|
|
border: none;
|
|
}
|
|
|
|
.ac-init-speed-container,
|
|
.hp,
|
|
.exhaustion,
|
|
.hdice-dsaves-container,
|
|
.attacks,
|
|
.equipment {
|
|
width: 240px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.ac-init-speed-container div {
|
|
width: calc(31%);
|
|
height: 100%;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.ac-init-speed-container span.label {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.ac-init-speed-container button[type=roll] {
|
|
display: block;
|
|
}
|
|
|
|
.hp,
|
|
.exhaustion,
|
|
.subcontainer,
|
|
.attacks,
|
|
.equipment {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.hp input {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.exhaustion input {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.hp input[type=number] {
|
|
width: 100%;
|
|
padding-right: 10px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.hp span.label,
|
|
.exhuastion span .label,
|
|
.hdice-dsaves-container span.label {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.hp .top span,
|
|
.hdice-dsaves-container .top span,
|
|
.attacks .top span,
|
|
.tool_proficiencies .top span,
|
|
.proficiencies .top span,
|
|
.traits .top span {
|
|
text-align: left;
|
|
margin-left: 5px;
|
|
color: #A0A0A0;
|
|
font-weight: normal;
|
|
display: inline-block;
|
|
width: initial;
|
|
}
|
|
|
|
.hp .top input,
|
|
.hdice-dsaves-container .top input[type=text] {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
width: 150px;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.hdice-dsaves-container .top input[type=text] {
|
|
width: 80px;
|
|
}
|
|
|
|
.subcontainer {
|
|
width: 116px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
height: 64px;
|
|
}
|
|
|
|
.subcontainer input[type=text].label {
|
|
display: block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hdice-dsaves-container .row-container {
|
|
float: right;
|
|
margin-right: 5px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.hdice-dsaves-container .row-container span {
|
|
display: inline-block;
|
|
width: inherit;
|
|
}
|
|
|
|
.money {
|
|
width: 70px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.coin {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
margin-top: 10px;
|
|
background-color: white;
|
|
position: relative;
|
|
left: -5px;
|
|
}
|
|
|
|
.coin span {
|
|
display: inline-block;
|
|
color: #A0A0A0;
|
|
margin-top: 0px;
|
|
margin-left: 5px;
|
|
width: 15px;
|
|
}
|
|
|
|
.coin input {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
padding: 0px;
|
|
width: 40px;
|
|
}
|
|
|
|
.equipment {
|
|
position: relative;
|
|
min-height: 276px;
|
|
}
|
|
|
|
.equipment textarea {
|
|
width: calc(100% - 69px);
|
|
margin: 0px 0px 0px -5px;
|
|
resize: vertical;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 0px;
|
|
min-height: 264px;
|
|
}
|
|
|
|
.equipment span,
|
|
.textbox span {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.textbox {
|
|
width: 100%;
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.textbox textarea {
|
|
width: calc(100% - 10px);
|
|
resize: vertical;
|
|
border: none;
|
|
margin: 0px;
|
|
padding-bottom: 0px;
|
|
min-height: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
/*.col3 {
|
|
width: 245px;
|
|
margin-left: -3px;
|
|
}*/
|
|
.footer {
|
|
-webkit-user-select: auto;
|
|
-moz-user-select: text;
|
|
font-size: 10px;
|
|
color: #a5a5a5;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.footer div {
|
|
width: 45%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.attacks {
|
|
min-height: 150px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.equipment.hidden {
|
|
min-height: 50px;
|
|
}
|
|
|
|
.attacks .display button[type=roll],
|
|
.tool .display button[type=roll],
|
|
.proficiency .display button[type=roll],
|
|
.globalattack .globaldisplay button[type=roll] {
|
|
background-color: transparent;
|
|
color: black;
|
|
border: none;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
line-height: normal;
|
|
}
|
|
|
|
.globalattack .globaldisplay span[name=attr_global_save_name]:not(:empty)::before,
|
|
.globalattack .globaldisplay span[name=attr_global_skill_name]:not(:empty)::before,
|
|
.globalattack .globaldisplay span[name=attr_global_attack_name]:not(:empty)::before,
|
|
.globalattack .display span[name=attr_global_damage_type]:not(:empty)::before {
|
|
content: "[";
|
|
}
|
|
|
|
.globalattack .globaldisplay span[name=attr_global_save_name]:not(:empty)::after,
|
|
.globalattack .globaldisplay span[name=attr_global_skill_name]:not(:empty)::after,
|
|
.globalattack .globaldisplay span[name=attr_global_attack_name]:not(:empty)::after,
|
|
.globalattack .display span[name=attr_global_damage_type]:not(:empty)::after {
|
|
content: "]";
|
|
}
|
|
|
|
.attacks .display button[type=roll]::before,
|
|
.tool .display button[type=roll]::before,
|
|
.proficiency .display button[type=roll]::before,
|
|
.globalattack .globaldisplay button[type=roll]::before {
|
|
content: "" !important;
|
|
}
|
|
|
|
.attacks .display input,
|
|
.tool .display input,
|
|
.equipment .item input,
|
|
.attacks .display span,
|
|
.tool .display span,
|
|
.equipment .item span,
|
|
.proficiencies .display span {
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
border-top-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
background-color: #EFEFEF;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
font-size: 9px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.attacks .display span,
|
|
.tool .display span,
|
|
.equipment .item span,
|
|
.proficiencies .display span {
|
|
min-height: 12px;
|
|
display: inline-block;
|
|
margin-top: 0px;
|
|
padding: 4px;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
vertical-align: bottom;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.traits .display .title {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.traits .display .subheader {
|
|
font-style: italic;
|
|
color: #A0A0A0;
|
|
margin-top: -3px;
|
|
}
|
|
|
|
.traits .display .subheader span {
|
|
font-size: 10px;
|
|
display: inline;
|
|
}
|
|
|
|
.spell .details-flag,
|
|
.attacks .options-flag,
|
|
.spell .options-flag,
|
|
.tool .options-flag,
|
|
.npc .npc_options-flag,
|
|
.pc .trait .options-flag,
|
|
.pc .global-mod .options-flag,
|
|
.action .options-flag,
|
|
.textbox .options-flag,
|
|
.proficiencies .options-flag,
|
|
.traits .options-flag,
|
|
.equipment .inventorysubflag,
|
|
.header .options-flag {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 18px;
|
|
height: 18px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.spell .details-flag + span,
|
|
.attacks .options-flag + span,
|
|
.spell .options-flag + span,
|
|
.tool .options-flag + span,
|
|
.npc .npc_options-flag + span,
|
|
.trait .options-flag + span,
|
|
.global-mod .options-flag + span,
|
|
.action .options-flag + span,
|
|
.textbox .options-flag + span,
|
|
.proficiencies .options-flag + span,
|
|
.traits .options-flag + span,
|
|
.equipment .inventorysubflag + span,
|
|
.header .options-flag + span {
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
white-space: nowrap;
|
|
width: 18px;
|
|
height: 18px;
|
|
font-size: 20px;
|
|
font-family: pictos;
|
|
color: #A0A0A0;
|
|
cursor: pointer;
|
|
margin-top: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.spell .details-flag:hover + span,
|
|
.attacks .options-flag:hover + span,
|
|
.spell .options-flag:hover + span,
|
|
.tool .options-flag:hover + span,
|
|
.npc .npc_options-flag:hover + span,
|
|
.trait .options-flag:hover + span,
|
|
.global-mod .options-flag:hover + span,
|
|
.action .options-flag:hover + span,
|
|
.textbox .options-flag:hover + span,
|
|
.proficiencies .options-flag:hover + span,
|
|
.traits .options-flag:hover + span,
|
|
.equipment .inventorysubflag:hover + span,
|
|
.header .options-flag:hover + span {
|
|
color: #000000;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:not(:checked) ~ .display,
|
|
.pc .global-mod .options-flag:checked ~ .options {
|
|
width: 80%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.charsheet .spell .details-flag:checked + span,
|
|
.charsheet .attacks .options-flag:checked + span,
|
|
.charsheet .spell .options-flag:checked + span,
|
|
.charsheet .tool .options-flag:checked + span,
|
|
.charsheet .npc .npc_options-flag:checked + span,
|
|
.charsheet .trait .options-flag:checked + span,
|
|
.charsheet .global-mod .options-flag:checked + span,
|
|
.charsheet .action .options-flag:checked + span,
|
|
.charsheet .textbox .options-flag:checked + span,
|
|
.charsheet .proficiencies .options-flag:checked + span,
|
|
.charsheet .traits .options-flag:checked + span,
|
|
.charsheet .equipment .inventorysubflag:checked + span,
|
|
.charsheet .header .options-flag:checked + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.charsheet .spell:hover .details-flag + span,
|
|
.charsheet .spell:hover .options-flag + span,
|
|
.charsheet .attacks .attack:hover .options-flag + span,
|
|
.charsheet .tool:hover .options-flag + span,
|
|
.charsheet .npc:hover > .npc_options-flag + span,
|
|
.charsheet .trait:hover .options-flag + span,
|
|
.charsheet .global-mod:hover .options-flag + span,
|
|
.charsheet .action:hover .npc_options-flag + span,
|
|
.charsheet .trait:hover .npc_options-flag + span,
|
|
.charsheet .textbox:hover > .options-flag + span,
|
|
.charsheet .proficiency:hover .options-flag + span,
|
|
.charsheet .item:hover .inventorysubflag + span,
|
|
.charsheet .pc .trait:hover .output,
|
|
.charsheet .pc .header:hover .options-flag + span {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.pc .header .options-flag {
|
|
top: 8px;
|
|
right: 4px;
|
|
}
|
|
|
|
.pc .header .options-flag + span {
|
|
top: 8px;
|
|
right: 4px;
|
|
}
|
|
|
|
.pc .global-mod .display-flag,
|
|
.pc .trait .display-flag {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:checked ~ .display-flag,
|
|
.pc .trait .options-flag:checked ~ .display-flag {
|
|
width: 0px;
|
|
height: 0px;
|
|
}
|
|
|
|
.pc .trait .display-flag:checked ~ .display .desc {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .pc .trait .output {
|
|
position: absolute;
|
|
top: -8px;
|
|
right: 30px;
|
|
width: 18px;
|
|
height: 18px;
|
|
z-index: 2;
|
|
background: none;
|
|
border: none;
|
|
font-family: pictos;
|
|
font-size: 20px;
|
|
display: none;
|
|
}
|
|
|
|
.pc .trait .output:before {
|
|
content: "";
|
|
}
|
|
|
|
.textbox .display .desc {
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.licensecontainer,
|
|
.attack,
|
|
.spell,
|
|
.tool,
|
|
.npc,
|
|
.action,
|
|
.textbox,
|
|
.proficiencies,
|
|
.traits {
|
|
position: relative;
|
|
}
|
|
|
|
.attack .options,
|
|
.spell .options,
|
|
.tool .options,
|
|
.npc .npc_options,
|
|
.trait .options,
|
|
.global-mod .options,
|
|
.action .options,
|
|
.textbox .options,
|
|
.proficiencies .options,
|
|
.trait .options {
|
|
display: none;
|
|
border-top: 2px dashed gold;
|
|
}
|
|
|
|
.item .subitem,
|
|
.header .options {
|
|
display: none;
|
|
}
|
|
|
|
.col3 .textbox .display {
|
|
padding: 5px 5px 5px 10px;
|
|
}
|
|
|
|
.textbox .display span {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.textbox.pibf span {
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.attacks .options-flag:checked ~ .options,
|
|
.tool .options-flag:checked ~ .options,
|
|
.npc .npc_options-flag:checked ~ .npc_options,
|
|
.trait .options-flag:checked ~ .options,
|
|
.global-mod .options-flag:checked ~ .options,
|
|
.action .options-flag:checked ~ .options,
|
|
.textbox .options-flag:checked ~ .options,
|
|
.proficiencies .options-flag:checked ~ .options,
|
|
.traits .options-flag:checked ~ .options,
|
|
.item .inventorysubflag:checked ~ .subitem {
|
|
display: inherit;
|
|
}
|
|
|
|
.header .options-flag:checked ~ .options {
|
|
min-height: 74px;
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
}
|
|
|
|
.textbox .options-flag:checked ~ .display,
|
|
.header .options-flag:checked ~ .display {
|
|
display: none;
|
|
}
|
|
|
|
.spell-level {
|
|
position: relative;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.header-info.options span {
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.header-info.options input {
|
|
width: 170px;
|
|
}
|
|
|
|
.level {
|
|
width: 20px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.level:after,
|
|
.level:before {
|
|
border-top: 20px solid transparent;
|
|
border-bottom: 20px solid transparent;
|
|
border-left: 20px solid #FFF;
|
|
left: 0px;
|
|
top: -6px;
|
|
content: "";
|
|
position: absolute;
|
|
}
|
|
|
|
.level:before {
|
|
border-top: 23px solid transparent;
|
|
border-bottom: 23px solid transparent;
|
|
border-left: 24px solid;
|
|
border-left-color: inherit;
|
|
left: -2px;
|
|
top: -9px;
|
|
}
|
|
|
|
.level span {
|
|
z-index: 3;
|
|
margin-left: -3px;
|
|
position: relative;
|
|
font-size: 16px;
|
|
top: 2px;
|
|
}
|
|
|
|
/* GENERIC STYLES
|
|
============================= */
|
|
.cantrips {
|
|
display: inline-block;
|
|
border: 1px solid black;
|
|
height: 25px;
|
|
border-radius: 5px;
|
|
width: 238px;
|
|
text-align: center;
|
|
margin-left: -20px;
|
|
}
|
|
|
|
.cantrips span {
|
|
display: block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.spell-labels {
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.spell-labels span {
|
|
display: inline;
|
|
font-weight: normal;
|
|
font-size: 8px;
|
|
}
|
|
|
|
.spell-level input {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
border: none;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: textfield;
|
|
border-radius: 0px;
|
|
color: black;
|
|
padding: 0px;
|
|
margin: 2px;
|
|
height: 100%;
|
|
}
|
|
|
|
.spell-level .total,
|
|
.spell-level .expended {
|
|
display: inline-block;
|
|
border: 1px solid black;
|
|
height: 25px;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
margin-left: -20px;
|
|
background-color: white;
|
|
}
|
|
|
|
.spell-level .total {
|
|
width: 114px;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.spell-level .total span {
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
|
|
.spell-level .expended {
|
|
width: 139px;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
}
|
|
|
|
.spell {
|
|
margin-bottom: 5px;
|
|
width: 245px;
|
|
}
|
|
|
|
.spell .wrapper button.spell_link::before {
|
|
content: "|";
|
|
}
|
|
|
|
.spell .wrapper button.spell_link {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 5px;
|
|
border: none;
|
|
background: none;
|
|
color: #A0A0A0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.spell .wrapper button.spell_link:hover {
|
|
color: #000000;
|
|
}
|
|
|
|
.spell .wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.charsheet .spells .details span {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.charsheet .spells .details span[name=attr_spelldescription] {
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.repcontainer .spell .details-flag:not(:checked) ~ .wrapper {
|
|
display: none;
|
|
}
|
|
|
|
.spell .wrapper .options-flag,
|
|
.spell .wrapper .options-flag + span {
|
|
display: inherit;
|
|
}
|
|
|
|
.repcontainer .spell .details-flag:not(:checked) ~ .wrapper input.spell_desc + .options-flag,
|
|
.repcontainer .spell .details-flag:not(:checked) ~ .wrapper input.spell_desc + .options-flag + span {
|
|
display: none;
|
|
}
|
|
|
|
.repcontainer .spell .wrapper .options .options-flag + span {
|
|
right: 23.5px;
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.repcontainer .spell .wrapper input.spell_desc[value] + .options-flag:not(:checked) ~ .options {
|
|
display: none;
|
|
}
|
|
|
|
.repcontainer .spell .wrapper .options-flag:not(:checked) ~ .options {
|
|
display: none;
|
|
}
|
|
|
|
.spell .wrapper .options-flag:checked ~ .details {
|
|
display: none;
|
|
}
|
|
|
|
.spell .wrapper .options-flag:checked ~ .options {
|
|
display: inherit;
|
|
}
|
|
|
|
.spell .wrapper .options-flag {
|
|
z-index: 10;
|
|
}
|
|
|
|
.spell .wrapper .options-flag,
|
|
.spell .wrapper .options-flag + span {
|
|
right: 23.5px;
|
|
}
|
|
|
|
div.spell div.details {
|
|
overflow: hidden;
|
|
margin: 15px 10px;
|
|
}
|
|
|
|
.spell .details span:not(.innate) {
|
|
display: inline;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.spell .details span.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.spell .details .italics {
|
|
font-style: italic;
|
|
}
|
|
|
|
.spell .details input[type=checkbox] {
|
|
display: none;
|
|
}
|
|
|
|
.spell .details input[type=checkbox] + span {
|
|
display: none;
|
|
}
|
|
|
|
.spell .details input[type=checkbox]:checked + span {
|
|
display: inline;
|
|
}
|
|
|
|
.spell .details input[type=checkbox]:checked ~ input[type=checkbox]:checked + span::before {
|
|
content: ", ";
|
|
}
|
|
|
|
.spell .details span[name=attr_spellname] {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.spell .details input[name=attr_spellcomp_materials][value=""] + span,
|
|
.spell .details input[name=attr_spellathigherlevels][value=""] + div {
|
|
display: none;
|
|
}
|
|
|
|
.spell .options {
|
|
border-top: none;
|
|
border-bottom: 2px dashed gold;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.spell .options-done {
|
|
display: inline-block;
|
|
margin-top: 5px;
|
|
padding: 3px 10px;
|
|
width: auto;
|
|
border-radius: 1em;
|
|
color: #ffffff;
|
|
background-color: #000000;
|
|
font-size: 1em;
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.spell .options-done:hover {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.spell .options-done::before {
|
|
content: "3";
|
|
font-family: pictos;
|
|
}
|
|
|
|
.spell .options-done input[type=checkbox] {
|
|
display: none;
|
|
}
|
|
|
|
.spell .options-done span.label {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.spell .display {
|
|
position: relative;
|
|
}
|
|
|
|
.spell .display button[type=roll] {
|
|
background-color: transparent;
|
|
color: black;
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: 1px solid #D3D3D3;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
}
|
|
|
|
.spell .display button[type=roll]::before {
|
|
content: "" !important;
|
|
}
|
|
|
|
span.spellritual,
|
|
span.spellconcentration {
|
|
display: none;
|
|
font-size: 8px;
|
|
font-weight: normal;
|
|
margin-top: 0px;
|
|
color: white;
|
|
background-color: black;
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
top: 0px;
|
|
line-height: 10px;
|
|
}
|
|
|
|
.spellicon_flag:not([value=none]) + .body .spell .display .spellritual:not([value="0"]) ~ span.spellritual {
|
|
display: inline-block;
|
|
right: 11px;
|
|
}
|
|
|
|
.spellicon_flag:not([value=none]) + .body .spell .display .spellconcentration:not([value="0"]) ~ span.spellconcentration {
|
|
border-radius: 100%;
|
|
display: inline-block;
|
|
right: 0;
|
|
}
|
|
|
|
.spell .display .componentscontainer {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 0;
|
|
width: auto;
|
|
}
|
|
|
|
.spell .display .v,
|
|
.spell .display .s,
|
|
.spell .display .m {
|
|
display: none;
|
|
}
|
|
|
|
.spellicon_flag[value=all] + .body .spell .display input.v:not([value="0"]) ~ .componentscontainer span.v,
|
|
.spellicon_flag[value=all] + .body .spell .display input.s:not([value="0"]) ~ .componentscontainer span.s,
|
|
.spellicon_flag[value=all] + .body .spell .display input.m:not([value="0"]) ~ .componentscontainer span.m {
|
|
display: inline;
|
|
width: initial;
|
|
font-size: 8px;
|
|
}
|
|
|
|
.spell .display input[type=text] {
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
padding: none;
|
|
margin: none;
|
|
background-color: transparent;
|
|
color: black;
|
|
border: none;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
.spell .display span.spellname {
|
|
font-size: 12px;
|
|
text-align: left;
|
|
font-weight: normal;
|
|
margin-right: -4px;
|
|
margin-left: 4px;
|
|
display: inline;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 220px;
|
|
}
|
|
|
|
.spell .display .prep ~ span.spellname {
|
|
margin-left: 14px;
|
|
}
|
|
|
|
.spell .details-flag,
|
|
.spell .details-flag + span {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 23px;
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.spell .details-flag {
|
|
opacity: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.spell .details-flag + span {
|
|
white-space: nowrap;
|
|
font-size: 20px;
|
|
font-family: pictos;
|
|
color: #A0A0A0;
|
|
cursor: pointer;
|
|
margin-top: 0px;
|
|
display: none;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.spell .options-flag,
|
|
.spell .options-flag + span {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 23px;
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.spell .options-flag {
|
|
opacity: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.spell .options-flag + span {
|
|
white-space: nowrap;
|
|
font-size: 20px;
|
|
font-family: pictos;
|
|
color: #A0A0A0;
|
|
cursor: pointer;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.spell .details button.spell_link::before {
|
|
content: "|";
|
|
}
|
|
|
|
.spell .details button.spell_link {
|
|
float: right;
|
|
border: none;
|
|
background: none;
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.spell .details button.spell_link:hover {
|
|
color: #000000;
|
|
}
|
|
|
|
.spell .details-flag:checked + span {
|
|
display: block;
|
|
color: #000000;
|
|
}
|
|
|
|
.spell:hover .details-flag + span {
|
|
display: block;
|
|
}
|
|
|
|
.spell .details-flag ~ .details {
|
|
display: none;
|
|
}
|
|
|
|
.spell .details-flag:checked ~ .details {
|
|
display: block;
|
|
}
|
|
|
|
.spell .options {
|
|
margin: 15px 10px;
|
|
padding: 0;
|
|
overflow-x: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.spell .details span.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.spell .details .italics {
|
|
font-style: italic;
|
|
}
|
|
|
|
.spell .details input[type=checkbox] {
|
|
display: none;
|
|
}
|
|
|
|
.spell .details input[type=checkbox] + span {
|
|
display: none;
|
|
}
|
|
|
|
.spell .details input[type=checkbox]:checked + span {
|
|
display: inline;
|
|
}
|
|
|
|
.spell .details input[type=checkbox]:checked ~ input[type=checkbox]:checked + span::before {
|
|
content: ", ";
|
|
}
|
|
|
|
.spell .details span[name=attr_spellname] {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.spell .details input[name=attr_spellcomp_materials][value=""] + span,
|
|
.spell .details input[name=attr_spellathigherlevels][value=""] + div {
|
|
display: none;
|
|
}
|
|
|
|
.spell .display {
|
|
position: relative;
|
|
}
|
|
|
|
.spell .prep {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: 0px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.spell input[type=checkbox]:checked ~ span.prep {
|
|
background-color: #EC2127;
|
|
}
|
|
|
|
.spell .prep-box {
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
opacity: 0;
|
|
z-index: 2;
|
|
position: relative;
|
|
width: 12px;
|
|
}
|
|
|
|
.charsheet .spell .display button[type=roll].spellcard {
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
width: calc(93% - 18px);
|
|
}
|
|
|
|
.spell-level .spell-points span {
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.spellpoints_flag:not([value="1"]) ~ .body .spell-points {
|
|
display: none;
|
|
}
|
|
|
|
.spellpoints_flag[value="1"] ~ .body .spell-labels {
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-columns: 70px 1fr 1fr;
|
|
grid-template-columns: 70px 1fr 1fr;
|
|
margin-left: 25px;
|
|
width: calc(100% - 25px);
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-labels span {
|
|
width: 100%;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.spellpoints_flag[value="1"] ~ .body .spell-point-hide {
|
|
display: none;
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-level {
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-columns: 25px 70px 1fr 1fr;
|
|
grid-template-columns: 25px 70px 1fr 1fr;
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-level .spell-points {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-level .spell-points span {
|
|
margin-top: 0;
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-level .total:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 20px;
|
|
left: 76px;
|
|
top: 4px;
|
|
background: black;
|
|
}
|
|
.spellpoints_flag[value="1"] ~ .body .spell-level .total, .spellpoints_flag[value="1"] ~ .body .spell-level .expended {
|
|
margin: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* REPCONTROL
|
|
============================= */
|
|
.repcontrol {
|
|
min-height: 27px;
|
|
}
|
|
|
|
.repcontrol .btn {
|
|
/*visibility: hidden;*/
|
|
border: medium none;
|
|
color: white !important;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.repcontrol .btn:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.saving-throw-container .repcontrol .repcontrol_edit,
|
|
.saving-throw-container .repcontrol .repcontrol_add {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.repcontrol .repcontrol_edit:after {
|
|
content: "(";
|
|
visibility: visible;
|
|
font-family: pictos;
|
|
background-color: #fff;
|
|
border: 1px solid black;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
height: 12px;
|
|
width: 12px;
|
|
padding: 2px 4px 2px 4px;
|
|
color: black;
|
|
}
|
|
|
|
.editmode ~ .repcontrol .repcontrol_edit:after {
|
|
content: ")";
|
|
}
|
|
|
|
.repcontrol .repcontrol_add:before {
|
|
content: "&";
|
|
visibility: visible;
|
|
font-family: pictos;
|
|
background-color: #fff;
|
|
border: 1px solid black;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
height: 12px;
|
|
width: 12px;
|
|
padding: 2px 4px 2px 4px;
|
|
color: black;
|
|
}
|
|
|
|
.repcontrol .repcontrol_edit:hover:after,
|
|
.repcontrol .repcontrol_add:hover:before {
|
|
background-color: #EFEFEF;
|
|
}
|
|
|
|
.resources .repcontrol {
|
|
margin-top: -10px;
|
|
}
|
|
|
|
.itemcontrol {
|
|
z-index: 10;
|
|
}
|
|
|
|
.itemcontrol .repcontrol_del {
|
|
font-size: 10px;
|
|
margin-top: 3px;
|
|
padding: 0px;
|
|
height: 18px;
|
|
width: 18px;
|
|
}
|
|
|
|
.itemcontrol .repcontrol_move {
|
|
font-size: 10px;
|
|
margin-top: 3px;
|
|
padding: 0px;
|
|
height: 18px;
|
|
width: 18px;
|
|
}
|
|
|
|
.tool .options,
|
|
.attack .options,
|
|
.spell .options,
|
|
.proficiencies .options,
|
|
.traits .options,
|
|
.global-mod .options {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.tool .options span,
|
|
.attack .options span,
|
|
.spell .options span,
|
|
.options .body span,
|
|
.proficiencies .options span,
|
|
.traits .options span,
|
|
.global-mod .options span {
|
|
width: initial;
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
|
|
.tool .options input,
|
|
.attack .options input[type=text],
|
|
.spell .options input[type=text],
|
|
.options .body input[type=text],
|
|
.proficiencies .options input[type=text],
|
|
.traits .options input[type=text],
|
|
.global-mod .options input[type=text],
|
|
.options .general_options input[type=number] {
|
|
display: inline-block;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
border-bottom: 1px solid #D3D3D3;
|
|
padding: 0px;
|
|
width: initial;
|
|
}
|
|
|
|
.tool .options select,
|
|
.attack .options select,
|
|
.spell .options select,
|
|
.options .body select,
|
|
.proficiencies .options select,
|
|
.traits .options select {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
width: initial;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
line-height: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.tool .options input[type=checkbox],
|
|
.attack .options input[type=checkbox],
|
|
.spell .options input[type=checkbox],
|
|
.options .body input[type=checkbox],
|
|
.npc .npc_options input[type=checkbox],
|
|
.proficiencies .options input[type=checkbox],
|
|
.traits .options input[type=checkbox],
|
|
.global-mod .options input[type=checkbox] {
|
|
width: 13px;
|
|
font-size: initial;
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
}
|
|
|
|
.attack .options input[type=text].num,
|
|
.options input[type=text].num {
|
|
width: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.spell .options textarea {
|
|
width: calc(100% - 10px);
|
|
resize: vertical;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.spell-container {
|
|
min-height: 60px;
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.spell-container input[name=attr_spellcastingtime] {
|
|
width: 168px;
|
|
}
|
|
|
|
.spell-container input[name=attr_spellrange] {
|
|
width: 201px;
|
|
}
|
|
|
|
.spell-container input[name=attr_spelltarget] {
|
|
width: 199px;
|
|
}
|
|
|
|
.spell-container .spell .options input[name=attr_spellcomp_materials] {
|
|
margin-left: 17px;
|
|
width: 223px;
|
|
}
|
|
|
|
.spell-container input[name=attr_spellduration] {
|
|
width: 186px;
|
|
}
|
|
|
|
.options .row {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.options .title input[type=text] {
|
|
width: 52px;
|
|
border: none;
|
|
text-align: center;
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.options .title {
|
|
text-align: center;
|
|
}
|
|
|
|
.class_options,
|
|
.skill_options,
|
|
.general_options {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.general_options {
|
|
position: relative;
|
|
}
|
|
|
|
.hlabel-container .showing,
|
|
.hlabel-container .hiding,
|
|
.header .showing,
|
|
.header input[value="1"].flag ~ .hiding {
|
|
display: none;
|
|
}
|
|
|
|
.hlabel-container input[value="1"].flag ~ .showing,
|
|
.hlabel-container input[value="0"].flag ~ .hiding,
|
|
.header input[value="1"].flag ~ .showing {
|
|
display: inline-block;
|
|
}
|
|
|
|
.options .row > span {
|
|
color: black;
|
|
}
|
|
|
|
/* GENERIC STYLES
|
|
============================= */
|
|
.sheet-rolltemplates {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg,
|
|
.sheet-rolltemplate-atk,
|
|
.sheet-rolltemplate-simple,
|
|
.sheet-rolltemplate-simple3D,
|
|
.sheet-rolltemplate-skill,
|
|
.sheet-rolltemplate-atkdmg {
|
|
width: 14em;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-container,
|
|
.sheet-rolltemplate-simple3D .sheet-container,
|
|
.sheet-rolltemplate-skill .sheet-container,
|
|
.sheet-rolltemplate-atk .sheet-container,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-atk,
|
|
.sheet-rolltemplate-dmg .sheet-atk,
|
|
.sheet-rolltemplate-dmg .sheet-container,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-damagetemplate {
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
color: black;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-container,
|
|
.sheet-rolltemplate-simple3D .sheet-container,
|
|
.sheet-rolltemplate-skill .sheet-container {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-container,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-atk,
|
|
.sheet-rolltemplate-dmg .sheet-atk {
|
|
border-top-left-radius: 0.8em;
|
|
border-top-right-radius: 0.8em;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-container,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-damagetemplate {
|
|
border-bottom-left-radius: 0.8em;
|
|
border-bottom-right-radius: 0.8em;
|
|
}
|
|
|
|
/* Obsolete Template */
|
|
.sheet-rolltemplate-simple .sheet-containerold,
|
|
.sheet-rolltemplate-simple3D .sheet-containerold,
|
|
.sheet-rolltemplate-skill .sheet-containerold,
|
|
.sheet-rolltemplate-atk .sheet-containerold,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-atkold,
|
|
.sheet-rolltemplate-dmg .sheet-atkold,
|
|
.sheet-rolltemplate-dmg .sheet-containerold,
|
|
.sheet-rolltemplate-atkdmg .sheet-container.sheet-damagetemplateold {
|
|
background-repeat: no-repeat;
|
|
background-size: 14em 100%;
|
|
color: black;
|
|
width: 81%;
|
|
}
|
|
|
|
.sheet-rolltemplate-atkdmg .sheet-damagetemplate .sheet-result,
|
|
.sheet-rolltemplate-dmg .sheet-damagetemplate .sheet-result {
|
|
min-height: 45px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-adv,
|
|
.sheet-rolltemplate-simple3D .sheet-adv,
|
|
.sheet-rolltemplate-atk .sheet-adv,
|
|
.sheet-rolltemplate-atkdmg .sheet-adv,
|
|
.sheet-rolltemplate-dmg .sheet-adv {
|
|
display: inline-block;
|
|
margin-top: 1em;
|
|
text-align: center;
|
|
vertical-align: top;
|
|
width: 45%;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-result {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
margin: 0 10px 0 7px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-roll {
|
|
display: inline-block;
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
text-align: center;
|
|
vertical-align: top;
|
|
width: 45%;
|
|
-ms-flex-preferred-size: 50%;
|
|
flex-basis: 50%;
|
|
-webkit-box-flex: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1;
|
|
-ms-flex-negative: 1;
|
|
flex-shrink: 1;
|
|
min-width: 33.33333%;
|
|
position: relative;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-reliableroll span .inlinerollresult {
|
|
color: #4A57ED;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-roll + .sheet-roll:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
width: 2px;
|
|
height: calc(100% + 1em);
|
|
min-height: 35px;
|
|
background: black;
|
|
position: absolute;
|
|
top: -1em;
|
|
left: -1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-adv:first-child,
|
|
.sheet-rolltemplate-simple3D .sheet-adv:first-child,
|
|
.sheet-rolltemplate-atk .sheet-adv:first-child,
|
|
.sheet-rolltemplate-atkdmg .sheet-adv:first-child,
|
|
.sheet-rolltemplate-dmg .sheet-adv:first-child {
|
|
margin-left: 0.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-adv:nth-child(3),
|
|
.sheet-rolltemplate-simple3D .sheet-adv:nth-child(3),
|
|
.sheet-rolltemplate-atk .sheet-adv:nth-child(3),
|
|
.sheet-rolltemplate-atkdmg .sheet-adv:nth-child(3),
|
|
.sheet-rolltemplate-dmg .sheet-adv:nth-child(3) {
|
|
margin-right: 8px;
|
|
margin-left: -3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-adv span,
|
|
.sheet-rolltemplate-simple .sheet-solo span,
|
|
.sheet-rolltemplate-simple3D .sheet-adv span,
|
|
.sheet-rolltemplate-simple3D .sheet-solo span,
|
|
.sheet-rolltemplate-skill .sheet-roll span,
|
|
.sheet-rolltemplate-atk .sheet-adv span,
|
|
.sheet-rolltemplate-atk .sheet-solo span,
|
|
.sheet-rolltemplate-atkdmg .sheet-adv span,
|
|
.sheet-rolltemplate-atkdmg .sheet-solo span,
|
|
.sheet-rolltemplate-dmg .sheet-adv span,
|
|
.sheet-rolltemplate-dmg .sheet-solo span {
|
|
background-color: transparent;
|
|
border: 0px;
|
|
font-size: 1.2em;
|
|
padding: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-advspacer,
|
|
.sheet-rolltemplate-simple3D .sheet-advspacer,
|
|
.sheet-rolltemplate-atk .sheet-advspacer,
|
|
.sheet-rolltemplate-atkdmg .sheet-advspacer,
|
|
.sheet-rolltemplate-dmg .sheet-advspacer {
|
|
border: 1px solid black;
|
|
display: inline-block;
|
|
height: 35px;
|
|
width: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-solo,
|
|
.sheet-rolltemplate-simple3D .sheet-solo,
|
|
.sheet-rolltemplate-atk .sheet-solo,
|
|
.sheet-rolltemplate-atkdmg .sheet-solo,
|
|
.sheet-rolltemplate-dmg .sheet-solo {
|
|
height: auto;
|
|
padding-bottom: 0.5em;
|
|
padding-top: 1em;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple span,
|
|
.sheet-rolltemplate-simple3D span,
|
|
.sheet-rolltemplate-skill span,
|
|
.sheet-rolltemplate-atk span,
|
|
.sheet-rolltemplate-atkdmg span,
|
|
.sheet-rolltemplate-dmg span,
|
|
.sheet-rolltemplate-desc span {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-desc span.sheet-plus,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc span.sheet-plus {
|
|
display: inline;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-grey,
|
|
.sheet-rolltemplate-simple .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-simple .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-simple .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-simple .sheet-label span span,
|
|
.sheet-rolltemplate-simple3D .sheet-grey,
|
|
.sheet-rolltemplate-simple3D .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-simple3D .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-simple3D .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-simple3D .sheet-label span span,
|
|
.sheet-rolltemplate-skill .sheet-grey,
|
|
.sheet-rolltemplate-skill .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-skill .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-skill .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-skill .sheet-label span span,
|
|
.sheet-rolltemplate-atk .sheet-label span span,
|
|
.sheet-rolltemplate-atk .sheet-grey,
|
|
.sheet-rolltemplate-atk .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atk .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-atk .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atkdmg .sheet-label span span,
|
|
.sheet-rolltemplate-atkdmg .sheet-grey,
|
|
.sheet-rolltemplate-atkdmg .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atkdmg .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-atkdmg .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmg .sheet-label span span,
|
|
.sheet-rolltemplate-dmg .sheet-grey,
|
|
.sheet-rolltemplate-dmg .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmg .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmg .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npc .sheet-grey,
|
|
.sheet-rolltemplate-npc .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npc .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npc .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcaction .sheet-grey,
|
|
.sheet-rolltemplate-npcaction .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcaction .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcaction .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcfullatk .sheet-grey,
|
|
.sheet-rolltemplate-npcfullatk .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcfullatk .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcfullatk .sheet-grey .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcatk .sheet-grey,
|
|
.sheet-rolltemplate-npcatk .sheet-grey .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcatk .sheet-grey .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcatk .sheet-grey .inlinerollresult.importantroll {
|
|
color: #A0A0A0;
|
|
border: 0px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-label,
|
|
.sheet-rolltemplate-simple3D .sheet-label,
|
|
.sheet-rolltemplate-skill .sheet-label,
|
|
.sheet-rolltemplate-atk .sheet-label,
|
|
.sheet-rolltemplate-atkdmg .sheet-label,
|
|
.sheet-rolltemplate-dmg .sheet-label {
|
|
margin-top: -3px;
|
|
padding: 0.25em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-label span span,
|
|
.sheet-rolltemplate-simple3D .sheet-label span span,
|
|
.sheet-rolltemplate-skill .sheet-label span span,
|
|
.sheet-rolltemplate-atk .sheet-label span span,
|
|
.sheet-rolltemplate-atkdmg .sheet-label span span,
|
|
.sheet-rolltemplate-dmg .sheet-label span span {
|
|
padding: 0px;
|
|
border: 0px;
|
|
background-color: transparent;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-simple3D .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-skill .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atk .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atkdmg .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmg .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-simple3D .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-skill .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-atk .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-atkdmg .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmg .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-simple3D .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-skill .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atk .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atkdmg .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmg .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atkdmg .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atkdmg .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-atkdmg .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmg .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmg .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmg .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcaction .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcaction .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcaction .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcfullatk .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcfullatk .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcfullatk .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcdmg .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcdmg .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcdmg .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmgaction .sheet-damagetemplate .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmgaction .sheet-damagetemplate .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmgaction .sheet-damagetemplate .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmg .sheet-desc .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmg .sheet-desc .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmg .sheet-desc .inlinerollresult.fullfail .sheet-rolltemplate-atk .sheet-desc .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-atk .sheet-desc .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-atk .sheet-desc .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-mancerroll .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-mancerroll .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-mancerroll .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-mancerhproll .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-mancerhproll .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-mancerhproll .inlinerollresult.fullfail {
|
|
color: black;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save .sheet-savedc,
|
|
.sheet-rolltemplate-dmg .sheet-save .sheet-savedc,
|
|
.sheet-rolltemplate-atkdmg .sheet-save .sheet-savedc {
|
|
padding-bottom: 5px;
|
|
padding-top: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save .sheet-savedc span,
|
|
.sheet-rolltemplate-dmg .sheet-save .sheet-savedc span,
|
|
.sheet-rolltemplate-atkdmg .sheet-save .sheet-savedc span {
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save .sheet-label span,
|
|
.sheet-rolltemplate-dmg .sheet-save .sheet-label span,
|
|
.sheet-rolltemplate-atkdmg .sheet-save .sheet-label span {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-atk .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-mancerroll .inlinerollresult,
|
|
.sheet-rolltemplate-mancerhproll .inlinerollresult,
|
|
.sheet-rolltemplate-atk .sheet-save .inlinerollresult,
|
|
.sheet-rolltemplate-dmg .sheet-save .inlinerollresult,
|
|
.sheet-rolltemplate-atkdmg .sheet-save .inlinerollresult {
|
|
background-color: transparent;
|
|
border: 0px;
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save .inlinerollresult,
|
|
.sheet-rolltemplate-dmg .sheet-save .inlinerollresult,
|
|
.sheet-rolltemplate-atkdmg .sheet-save .inlinerollresult {
|
|
padding: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-atk .sheet-desc .inlinerollresult,
|
|
.sheet-rolltemplate-mancerroll .inlinerollresult,
|
|
.sheet-rolltemplate-mancerhproll .inlinerollresult {
|
|
font-size: 20px;
|
|
padding-bottom: 6px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-desc .sheet-label span,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .sheet-label span {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save span,
|
|
.sheet-rolltemplate-dmg .sheet-save span,
|
|
.sheet-rolltemplate-atkdmg .sheet-save span {
|
|
font-weight: normal;
|
|
line-height: 12px;
|
|
display: block;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-save span.sheet-bold,
|
|
.sheet-rolltemplate-dmg .sheet-save span.sheet-bold,
|
|
.sheet-rolltemplate-atkdmg .sheet-save span.sheet-bold {
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-sublabel,
|
|
.sheet-rolltemplate-atkdmg .sheet-sublabel,
|
|
.sheet-rolltemplate-dmg .sheet-sublabel {
|
|
text-align: center;
|
|
font-style: italic;
|
|
margin-top: -2px;
|
|
min-height: 17px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-desc,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc,
|
|
.sheet-rolltemplate-dmg .sheet-desc,
|
|
.sheet-rolltemplate-desc .sheet-desc {
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
color: black;
|
|
padding-bottom: 5px;
|
|
padding-top: 5px;
|
|
text-align: center;
|
|
width: 81%;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-desc {
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-desc span,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc span,
|
|
.sheet-rolltemplate-dmg .sheet-desc span,
|
|
.sheet-rolltemplate-desc .sheet-desc span {
|
|
font-weight: normal;
|
|
line-height: 12px;
|
|
display: block;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-info span,
|
|
.sheet-rolltemplate-atkdmg .sheet-info span,
|
|
.sheet-rolltemplate-dmg .sheet-info span {
|
|
text-align: left;
|
|
padding: 0px 5px 0px 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-info .inlinerollresult,
|
|
.sheet-rolltemplate-atkdmg .sheet-info .inlinerollresult,
|
|
.sheet-rolltemplate-dmg .sheet-info .inlinerollresult {
|
|
font-size: inherit;
|
|
padding: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atkdmg .sheet-damagetemplate .sheet-sublabel,
|
|
.sheet-rolltemplate-dmg .sheet-damagetemplate .sheet-sublabel,
|
|
.sheet-rolltemplate-atkdmg .sheet-desc .sheet-sublabel,
|
|
.sheet-rolltemplate-dmg .sheet-desc .sheet-sublabel {
|
|
color: #A0A0A0;
|
|
display: block;
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-sublabel span,
|
|
.sheet-rolltemplate-atkdmg .sheet-sublabel span,
|
|
.sheet-rolltemplate-dmg .sheet-sublabel span {
|
|
font-weight: normal;
|
|
color: black;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-spacer,
|
|
.sheet-rolltemplate-atkdmg .sheet-spacer,
|
|
.sheet-rolltemplate-dmg .sheet-spacer {
|
|
height: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk a[href^="~"] {
|
|
background-color: transparent;
|
|
padding: 0px;
|
|
color: black;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk a:hover {
|
|
color: #EC2127;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk a[href^="~"]:visited {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-container,
|
|
.sheet-rolltemplate-spelloutput .sheet-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/spellbg.jpg") center center;
|
|
background-repeat: repeat;
|
|
background-size: auto;
|
|
border: 1px solid black;
|
|
color: black;
|
|
font-family: "Times New Roman", Times, serif;
|
|
margin-left: -3em;
|
|
padding: 0.5em;
|
|
width: 19em;
|
|
}
|
|
|
|
.withoutavatars .sheet-rolltemplate-spell .sheet-container,
|
|
.withoutavatars .sheet-rolltemplate-spelloutput .sheet-container {
|
|
margin-left: -15px;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-row,
|
|
.sheet-rolltemplate-spelloutput .sheet-row {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-title,
|
|
.sheet-rolltemplate-spelloutput .sheet-title {
|
|
color: #7e2d40;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-italics,
|
|
.sheet-rolltemplate-spelloutput .sheet-italics,
|
|
.sheet-npc .sheet-italics {
|
|
font-style: italic;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-bold,
|
|
.sheet-rolltemplate-spelloutput .sheet-bold,
|
|
.sheet-actions .sheet-bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-spell .sheet-spacer,
|
|
.sheet-rolltemplate-spelloutput .sheet-spacer {
|
|
height: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-container,
|
|
.sheet-rolltemplate-mancerhproll .sheet-container {
|
|
width: 200px;
|
|
color: black;
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-row,
|
|
.sheet-rolltemplate-mancerhproll .sheet-row {
|
|
border-bottom: 1px dotted black;
|
|
padding: 4px;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-row.sheet-header,
|
|
.sheet-rolltemplate-mancerhproll .sheet-row.sheet-header {
|
|
border-bottom: 1px solid black;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-row.sheet-header span span,
|
|
.sheet-rolltemplate-mancerhproll .sheet-row.sheet-header span span {
|
|
float: right;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-row.sheet-header .inlinerollresult,
|
|
.sheet-rolltemplate-mancerhproll .sheet-row.sheet-header .inlinerollresult {
|
|
padding: 0;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-desc,
|
|
.sheet-rolltemplate-mancerhproll .sheet-desc {
|
|
font-size: 1.2em;
|
|
font-style: italic;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerhproll .sheet-desc {
|
|
display: inline-block;
|
|
margin-left: 5%;
|
|
width: 50%;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-result {
|
|
margin-left: 80px;
|
|
}
|
|
|
|
.sheet-rolltemplate-mancerroll .sheet-result .inlinerollresult,
|
|
.sheet-rolltemplate-mancerhproll .sheet-result .inlinerollresult {
|
|
width: 50px;
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc,
|
|
.sheet-rolltemplate-npcaction .sheet-container,
|
|
.sheet-rolltemplate-npcfullatk .sheet-container,
|
|
.sheet-rolltemplate-npcatk,
|
|
.sheet-rolltemplate-npcdmg,
|
|
.sheet-rolltemplate-dmgaction,
|
|
.sheet-rolltemplate-traits {
|
|
width: 188px;
|
|
border: 1px solid;
|
|
background-color: #ffffff;
|
|
padding: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npcaction .sheet-container.sheet-dmgcontainer,
|
|
.sheet-rolltemplate-npcfullatk .sheet-container.sheet-dmgcontainer {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npcdmg {
|
|
margin-top: -8px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-header,
|
|
.sheet-rolltemplate-npcaction .sheet-header,
|
|
.sheet-rolltemplate-npcfullatk .sheet-header,
|
|
.sheet-rolltemplate-npcatk .sheet-header,
|
|
.sheet-rolltemplate-npcdmg .sheet-header,
|
|
.sheet-rolltemplate-dmgaction .sheet-header {
|
|
color: #7e2d40;
|
|
font-size: 18px;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.sheet-rolltemplate-traits .sheet-header {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-italics,
|
|
.sheet-rolltemplate-npcaction .sheet-italics,
|
|
.sheet-rolltemplate-npcfullatk .sheet-italics,
|
|
.sheet-rolltemplate-npcatk .sheet-italics,
|
|
.sheet-rolltemplate-npcdmg .sheet-italics,
|
|
.sheet-rolltemplate-dmgaction .sheet-italics,
|
|
.sheet-rolltemplate-traits .sheet-italics {
|
|
font-style: italic;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-subheader,
|
|
.sheet-rolltemplate-npcaction .sheet-subheader,
|
|
.sheet-rolltemplate-npcfullatk .sheet-subheader,
|
|
.sheet-rolltemplate-npcatk .sheet-subheader,
|
|
.sheet-rolltemplate-npcdmg .sheet-subheader,
|
|
.sheet-rolltemplate-dmgaction .sheet-subheader {
|
|
line-height: 13px;
|
|
margin-top: -3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-traits .sheet-subheader {
|
|
font-style: italic;
|
|
color: #A0A0A0;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-subheader span,
|
|
.sheet-rolltemplate-npcaction .sheet-subheader span,
|
|
.sheet-rolltemplate-npcfullatk .sheet-subheader span,
|
|
.sheet-rolltemplate-npcatk .sheet-subheader span,
|
|
.sheet-rolltemplate-npcdmg .sheet-subheader span,
|
|
.sheet-rolltemplate-dmgaction .sheet-subheader span {
|
|
font-size: 11px;
|
|
line-height: 11px;
|
|
}
|
|
|
|
.sheet-rolltemplate-traits .sheet-subheader span {
|
|
font-weight: normal;
|
|
font-size: 10px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.sheet-rolltemplate-traits .sheet-desc {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-arrow-rightold,
|
|
.sheet-rolltemplate-npcaction .sheet-arrow-rightold,
|
|
.sheet-rolltemplate-npcfullatk .sheet-arrow-rightold,
|
|
.sheet-rolltemplate-npcatk .sheet-arrow-rightold,
|
|
.sheet-rolltemplate-npcdmg .sheet-arrow-rightold,
|
|
.sheet-rolltemplate-dmgaction .sheet-arrow-rightold {
|
|
border-top: 3px solid transparent;
|
|
border-bottom: 3px solid transparent;
|
|
border-left: 195px solid #7e2d40;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-arrow-right,
|
|
.sheet-rolltemplate-npcaction .sheet-arrow-right,
|
|
.sheet-rolltemplate-npcfullatk .sheet-arrow-right,
|
|
.sheet-rolltemplate-npcatk .sheet-arrow-right,
|
|
.sheet-rolltemplate-npcdmg .sheet-arrow-right,
|
|
.sheet-rolltemplate-dmgaction .sheet-arrow-right {
|
|
border: 1px solid #7e2d40;
|
|
margin-bottom: 2px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .inlinerollresult,
|
|
.sheet-rolltemplate-npcaction .inlinerollresult,
|
|
.sheet-rolltemplate-npcfullatk .inlinerollresult,
|
|
.sheet-rolltemplate-npcatk .inlinerollresult,
|
|
.sheet-rolltemplate-npcdmg .inlinerollresult,
|
|
.sheet-rolltemplate-dmgaction .inlinerollresult,
|
|
.sheet-rolltemplate-traits .inlinerollresult {
|
|
background-color: #ffffff;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcaction .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcfullatk .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcatk .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-npcdmg .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dmgaction .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcaction .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcfullatk .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcatk .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-npcdmg .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dmgaction .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcaction .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcfullatk .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcatk .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-npcdmg .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dmgaction .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-npcatk a[href^="~"] {
|
|
background-color: transparent;
|
|
padding: 0px;
|
|
color: black;
|
|
border: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npcatk .sheet-header a[href^="~"] {
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.sheet-rolltemplate-npcatk a[href^="~"]:hover {
|
|
color: #EC2127;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-charname,
|
|
.sheet-rolltemplate-simple3D .sheet-charname,
|
|
.sheet-rolltemplate-skill .sheet-charname,
|
|
.sheet-rolltemplate-atk .sheet-charname,
|
|
.sheet-rolltemplate-dmg .sheet-charname,
|
|
.sheet-rolltemplate-atkdmg .sheet-charname {
|
|
text-align: center;
|
|
margin-top: -10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple .sheet-charname span,
|
|
.sheet-rolltemplate-simple3D .sheet-charname span,
|
|
.sheet-rolltemplate-skill .sheet-charname span,
|
|
.sheet-rolltemplate-atk .sheet-charname span,
|
|
.sheet-rolltemplate-dmg .sheet-charname span,
|
|
.sheet-rolltemplate-atkdmg .sheet-charname span {
|
|
font-size: 11px;
|
|
font-weight: normal;
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg .sheet-label .sheet-rolltemplate-inline,
|
|
.sheet-rolltemplate-dmg .sheet-savedc .sheet-rolltemplate-inline,
|
|
.sheet-rolltemplate-atkdmg .sheet-savedc .sheet-rolltemplate-inline,
|
|
.sheet-rolltemplate-atkdmg .sheet-label .sheet-rolltemplate-inline {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ROLL TEMPLATE */
|
|
.sheet-rolltemplate-simple,
|
|
.sheet-rolltemplate-simple3D,
|
|
.sheet-rolltemplate-skill,
|
|
.sheet-rolltemplate-atk,
|
|
.sheet-rolltemplate-atkdmg,
|
|
.sheet-rolltemplate-dmg,
|
|
.sheet-rolltemplate-desc {
|
|
image-rendering: -webkit-optimize-contrast;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple div.sheet-container,
|
|
.sheet-rolltemplate-simple3D div.sheet-container,
|
|
.sheet-rolltemplate-skill div.sheet-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Simple.png") top left;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-container,
|
|
.sheet-rolltemplate-atkdmg div.sheet-container.sheet-atk,
|
|
.sheet-rolltemplate-dmg div.sheet-atk {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Attack.png") top left;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.sheet-rolltemplate-dmg div.sheet-container,
|
|
.sheet-rolltemplate-atkdmg div.sheet-container.sheet-damagetemplate {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Damage.png") top left;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc,
|
|
.sheet-rolltemplate-dmg div.sheet-desc,
|
|
.sheet-rolltemplate-desc div.sheet-desc {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Desc.png") top left;
|
|
background-color: inherit;
|
|
padding-bottom: 0.35em;
|
|
padding-top: 0.35em;
|
|
}
|
|
|
|
.sheet-rolltemplate-simple div.sheet-container,
|
|
.sheet-rolltemplate-simple3D div.sheet-container,
|
|
.sheet-rolltemplate-skill div.sheet-container,
|
|
.sheet-rolltemplate-atk div.sheet-container,
|
|
.sheet-rolltemplate-atkdmg div.sheet-container.sheet-atk,
|
|
.sheet-rolltemplate-dmg div.sheet-atk,
|
|
.sheet-rolltemplate-dmg div.sheet-container,
|
|
.sheet-rolltemplate-atkdmg div.sheet-container.sheet-damagetemplate,
|
|
.sheet-rolltemplate-atk div.sheet-desc,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc,
|
|
.sheet-rolltemplate-dmg div.sheet-desc,
|
|
.sheet-rolltemplate-desc div.sheet-desc {
|
|
background-repeat: no-repeat;
|
|
background-size: 13.8em 100%;
|
|
border: none;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc.sheet-info,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc.sheet-info,
|
|
.sheet-rolltemplate-dmg div.sheet-desc.sheet-info,
|
|
.sheet-rolltemplate-desc div.sheet-desc.sheet-info {
|
|
background: none;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc.sheet-info > span,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc.sheet-info > span,
|
|
.sheet-rolltemplate-dmg div.sheet-desc.sheet-info > span,
|
|
.sheet-rolltemplate-desc div.sheet-desc.sheet-info > span {
|
|
padding: 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc.sheet-info .sheet-bottom,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc.sheet-info .sheet-bottom,
|
|
.sheet-rolltemplate-dmg div.sheet-desc.sheet-info .sheet-bottom,
|
|
.sheet-rolltemplate-desc div.sheet-desc.sheet-info .sheet-bottom {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Info-Bottom.png") top left;
|
|
height: 1.1em;
|
|
background-size: 100% 100%;
|
|
margin-bottom: -0.3em;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc.sheet-info .sheet-top,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc.sheet-info .sheet-top,
|
|
.sheet-rolltemplate-dmg div.sheet-desc.sheet-info .sheet-top,
|
|
.sheet-rolltemplate-desc div.sheet-desc.sheet-info .sheet-top {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Info-Top.png") top left;
|
|
height: 1.1em;
|
|
background-size: 100% 100%;
|
|
margin-top: -0.3em;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-desc.sheet-info .sheet-middle,
|
|
.sheet-rolltemplate-atkdmg div.sheet-desc.sheet-info .sheet-middle,
|
|
.sheet-rolltemplate-dmg div.sheet-desc.sheet-info .sheet-middle,
|
|
.sheet-rolltemplate-desc div.sheet-desc.sheet-info .sheet-middle {
|
|
background: url("https://app.roll20.net/images/dndstyling/D&D-Rolltemplate-Info-Middle.png") top left;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc div.sheet-arrow-right,
|
|
.sheet-rolltemplate-npcaction div.sheet-arrow-right,
|
|
.sheet-rolltemplate-npcfullatk div.sheet-arrow-right,
|
|
.sheet-rolltemplate-npcatk div.sheet-arrow-right,
|
|
.sheet-rolltemplate-npcdmg div.sheet-arrow-right,
|
|
.sheet-rolltemplate-dmgaction div.sheet-arrow-right {
|
|
border: none;
|
|
border-top: 0.25em solid transparent;
|
|
border-bottom: 0.25em solid transparent;
|
|
border-left: 14em solid #7e2d40;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk div.sheet-advspacer,
|
|
.sheet-rolltemplate-dmg div.sheet-advspacer,
|
|
.sheet-rolltemplate-atkdmg div.sheet-advspacer {
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-translated,
|
|
.sheet-rolltemplate-npcaction .sheet-translated,
|
|
.sheet-rolltemplate-npcfullatk .sheet-translated,
|
|
.sheet-rolltemplate-npcatk .sheet-translated,
|
|
.sheet-rolltemplate-npcdmg .sheet-translated,
|
|
.sheet-rolltemplate-dmgaction .sheet-translated,
|
|
.sheet-rolltemplate-npc .sheet-translated a,
|
|
.sheet-rolltemplate-npcaction .sheet-translated a,
|
|
.sheet-rolltemplate-npcfullatk .sheet-translated a,
|
|
.sheet-rolltemplate-npcatk .sheet-translated a,
|
|
.sheet-rolltemplate-npcdmg .sheet-translated a,
|
|
.sheet-rolltemplate-dmgaction .sheet-translated a {
|
|
text-transform: lowercase;
|
|
display: inline-block;
|
|
}
|
|
|
|
.sheet-rolltemplate-npc .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-npcaction .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-npcfullatk .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-npcatk .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-npcdmg .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-dmgaction .sheet-translated:first-letter,
|
|
.sheet-rolltemplate-npc .sheet-translated a:first-letter,
|
|
.sheet-rolltemplate-npcaction .sheet-translated a:first-letter,
|
|
.sheet-rolltemplate-npcfullatk .sheet-translated a:first-letter,
|
|
.sheet-rolltemplate-npcatk .sheet-translated a:first-letter,
|
|
.sheet-rolltemplate-npcdmg .sheet-translated a:first-letter,
|
|
.sheet-rolltemplate-dmgaction .sheet-translated a:first-letter {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.sheet-rolltemplate-spelloutput .sheet-container {
|
|
border: 1px dashed black;
|
|
background: #fffef2;
|
|
}
|
|
.sheet-rolltemplate-spelloutput .sheet-container .sheet-desconly span {
|
|
width: 100%;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
display: inline-block;
|
|
background: #c43c35;
|
|
padding: 5px;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-bottom: 5px;
|
|
color: white;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 10px;
|
|
line-height: normal;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.sheet-rolltemplate-spelloutput .sheet-level,
|
|
.sheet-rolltemplate-spell .sheet-level {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.sheet-rolltemplate-spelloutput .sheet-spellsavedc,
|
|
.sheet-rolltemplate-spell .sheet-spellsavedc {
|
|
text-align: center;
|
|
text-align: center;
|
|
padding-top: 5px;
|
|
border-top: 1px dotted black;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-atk .sheet-spelldesc-link,
|
|
.sheet-rolltemplate-dmg .sheet-spelldesc-link,
|
|
.sheet-rolltemplate-atkdmg .sheet-spelldesc-link {
|
|
text-align: center;
|
|
padding-bottom: 7px;
|
|
}
|
|
.sheet-rolltemplate-atk .sheet-spelldesc-link span a,
|
|
.sheet-rolltemplate-dmg .sheet-spelldesc-link span a,
|
|
.sheet-rolltemplate-atkdmg .sheet-spelldesc-link span a {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
color: #A0A0A0;
|
|
border: 0;
|
|
}
|
|
.sheet-rolltemplate-atk .sheet-spelldesc-link span a:hover,
|
|
.sheet-rolltemplate-dmg .sheet-spelldesc-link span a:hover,
|
|
.sheet-rolltemplate-atkdmg .sheet-spelldesc-link span a:hover {
|
|
color: #EC2127;
|
|
}
|
|
|
|
.triangleold {
|
|
border-top: 3px solid transparent;
|
|
border-bottom: 3px solid transparent;
|
|
border-left: 360px solid #7e2d40;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.triangle {
|
|
border: 1px solid #7e2d40;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.red,
|
|
.npc .display .red input,
|
|
.npc .display .red span {
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.npc .npc_options input {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
width: 200px;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.npc > .npc_options .mythic-rules {
|
|
display: none;
|
|
width: 385px;
|
|
font-size: 12px;
|
|
padding: 0px;
|
|
height: 72px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[name=attr_npc_mythic_actions]:checked ~ .mythic-rules {
|
|
display: block;
|
|
}
|
|
|
|
.npc .npc_options span {
|
|
display: inline-block;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
text-align: left;
|
|
font-weight: bold;
|
|
width: auto;
|
|
}
|
|
|
|
.npc .npc_options .title span {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
display: block;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.npc .npc_options {
|
|
border-bottom: 2px dashed gold;
|
|
}
|
|
|
|
.npc input[type=text].num {
|
|
width: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.npc .col {
|
|
width: calc(33% - 5px);
|
|
}
|
|
|
|
.npc .spacer {
|
|
height: 5px;
|
|
}
|
|
|
|
.npc select {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.npc .display .title span {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 24px;
|
|
width: 100%;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
display: block;
|
|
text-align: left;
|
|
line-height: 27px;
|
|
}
|
|
|
|
.npc .display .subtitle span {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.npc .display .num3 {
|
|
width: 27px;
|
|
text-align: center;
|
|
}
|
|
|
|
.npc .display .actype + .parens {
|
|
display: none;
|
|
}
|
|
|
|
.npc .display .actype:not([value=""]) + .parens {
|
|
display: inline;
|
|
}
|
|
|
|
.npc .display .parens {
|
|
margin-left: -2px;
|
|
}
|
|
|
|
.npc .display .parens:before {
|
|
content: "(";
|
|
}
|
|
|
|
.npc .display .parens:after {
|
|
content: ")";
|
|
}
|
|
|
|
.npc .display .parens.xp:after {
|
|
content: " XP)";
|
|
}
|
|
|
|
.npc .display span.npc-init-die {
|
|
font-family: "dicefontd20";
|
|
font-size: 16px;
|
|
display: block;
|
|
}
|
|
|
|
.npc .attr-container {
|
|
width: 55px;
|
|
border: 0px;
|
|
border-radius: 0px;
|
|
position: relative;
|
|
padding: 5px 0px 5px 0px;
|
|
margin: 0px;
|
|
height: inherit;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.npc .attr-container span {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
display: inline;
|
|
margin-bottom: 2px;
|
|
display: block;
|
|
}
|
|
|
|
.npc .attr-container span.bold {
|
|
display: block;
|
|
}
|
|
|
|
.npc span.bold,
|
|
.npc .trait button span.bold,
|
|
.npc .action button span.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.npc .red span.bold ~ span.info,
|
|
.npc span.bold ~ span.num {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.npc .attr-container input {
|
|
width: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.npc .attr-container input:nth-child(3) {
|
|
width: 30px;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
.npc .display .flag[value="0"] + button,
|
|
.npc .display .flag[value="0"] + div,
|
|
.npc .display .flag[value=""] + button,
|
|
.npc .display .flag[value=""] + div,
|
|
.npc .display .status {
|
|
display: none;
|
|
}
|
|
|
|
.npc .display .flag[value]:not([value=""]) + div {
|
|
display: block;
|
|
}
|
|
|
|
.npc button[type=roll] input {
|
|
border: none;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
margin: 0px;
|
|
pointer-events: none;
|
|
padding: 0px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.npc button[type=roll] {
|
|
width: auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.npc .saving button[type=roll] span,
|
|
.npc .skills button[type=roll] span {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
width: auto;
|
|
display: inline-block;
|
|
line-height: 16px;
|
|
height: 16px;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.npc .display .flag[value="1"] + button .spacer,
|
|
.npc .display .flag[value="2"] + button .spacer {
|
|
display: none;
|
|
}
|
|
|
|
.npc .display button input {
|
|
width: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
.npc .display .flag[value="1"] + button .stat::before,
|
|
.npc .display .flag[value="2"] + button .stat::before {
|
|
content: "+";
|
|
}
|
|
|
|
.npc .display .flag[value="1"] + button .stat::after,
|
|
.npc .display .flag[value="3"] + button .stat::after {
|
|
content: ", ";
|
|
}
|
|
|
|
.negativeflag[value="1"] + .npcattr::before {
|
|
content: "(";
|
|
}
|
|
|
|
.negativeflag[value="0"] + .npcattr::before {
|
|
content: "(+";
|
|
}
|
|
|
|
.npcattr::after {
|
|
content: ")";
|
|
}
|
|
|
|
.traits {
|
|
min-height: 20px;
|
|
}
|
|
|
|
.npc .display .traits .trait,
|
|
.npc .reaction .trait {
|
|
position: relative;
|
|
}
|
|
|
|
.npc .display .traits input.npc_options-flag,
|
|
.npc .reaction input.npc_options-flag {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.npc .display .traits textarea,
|
|
.npc .reaction textarea,
|
|
.attack textarea {
|
|
resize: vertical;
|
|
height: 36px;
|
|
min-height: 36px;
|
|
border: none;
|
|
padding: 0px;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.npc .actiontitle {
|
|
border-bottom: 1px solid #7e2d40;
|
|
width: 100%;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.npc .actions .title {
|
|
font-size: 18px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
line-height: inherit;
|
|
height: inherit;
|
|
margin: 0px;
|
|
}
|
|
|
|
.npc .actions {
|
|
min-height: 40px;
|
|
}
|
|
|
|
.npc .description_flag[value="0"] + textarea,
|
|
.npc .description_flag[value=""] + textarea {
|
|
display: none;
|
|
height: 36px;
|
|
min-height: 36px;
|
|
}
|
|
|
|
.npc .attack_option {
|
|
display: none;
|
|
}
|
|
|
|
.npc .attack_options[value=on] ~ .attack_option,
|
|
.npc .attack_options[value="{{attack=1}}"] ~ .attack_option {
|
|
display: block;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="3"] + textarea {
|
|
height: 54px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="4"] + textarea {
|
|
height: 72px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="5"] + textarea {
|
|
height: 90px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="6"] + textarea {
|
|
height: 108px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="7"] + textarea {
|
|
height: 126px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="8"] + textarea {
|
|
height: 144px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="9"] + textarea {
|
|
height: 162px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="10"] + textarea {
|
|
height: 180px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="11"] + textarea {
|
|
height: 196px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="12"] + textarea {
|
|
height: 216px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="13"] + textarea {
|
|
height: 234px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="14"] + textarea {
|
|
height: 252px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="15"] + textarea {
|
|
height: 270px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="16"] + textarea {
|
|
height: 288px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="17"] + textarea {
|
|
height: 306px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="18"] + textarea {
|
|
height: 324px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="19"] + textarea {
|
|
height: 342px;
|
|
}
|
|
|
|
.npc .action .display .description_flag[value="20"] + textarea {
|
|
height: 360px;
|
|
}
|
|
|
|
.npc .actions select {
|
|
width: auto;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
height: 13px;
|
|
line-height: 13px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.npc .trait button[type=roll],
|
|
.npc .action button[type=roll],
|
|
.npc .reaction button[type=roll] {
|
|
width: 100%;
|
|
text-align: left;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.npc .traits .repitem:not(:first-child),
|
|
.npc .actions .repitem:not(:first-child) {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.npc .trait button span,
|
|
.npc .action button span {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.charsheet .npc .traits .wide,
|
|
.charsheet .npc .actions .wide {
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.npc .traits button span.wide,
|
|
.npc .actions button span.wide {
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
height: 1.2em;
|
|
}
|
|
|
|
.npc .actions .wide span:after {
|
|
content: ".";
|
|
}
|
|
|
|
.npc .trait .display .description,
|
|
.npc .reaction .display .description,
|
|
.npc .action .display .description {
|
|
white-space: pre-line;
|
|
color: #555555;
|
|
line-height: 13px;
|
|
display: block;
|
|
}
|
|
|
|
.npc .trait .display textarea,
|
|
.npc .action .display textarea,
|
|
.legendaryactions {
|
|
border: none;
|
|
margin-bottom: 0px;
|
|
padding: 0px;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
height: 36px;
|
|
min-height: 36px;
|
|
resize: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.legendaryactions {
|
|
height: 90px;
|
|
pointer-events: none;
|
|
margin-bottom: 15px;
|
|
color: #555555;
|
|
}
|
|
|
|
.npcspelloptions {
|
|
display: inline-block;
|
|
margin-left: 17px;
|
|
}
|
|
|
|
.container.npc .legendary,
|
|
.container.npc .mythic,
|
|
.container.npc .bonusactions,
|
|
.container.npc .reaction,
|
|
.npcspell_flag[value="0"] ~ .npcspell,
|
|
.npcspellcastingflag:not(:checked) ~ .npcspelloptions {
|
|
display: none;
|
|
}
|
|
|
|
.legendary_flag:not([value="0"]) ~ .legendary,
|
|
.mythic_flag[value="1"] ~ .mythic,
|
|
.bonusaction_flag[value="1"] ~ .bonusactions,
|
|
.reaction_flag[value="1"] ~ .reaction {
|
|
display: block;
|
|
}
|
|
|
|
.npc .action textarea,
|
|
.pc .globalattack textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
.equipment .complex,
|
|
.equipment .simple,
|
|
.proficiencies .complex,
|
|
.proficiencies .simple,
|
|
.traits .complex,
|
|
.traits .simple {
|
|
display: none;
|
|
}
|
|
|
|
.equipment .inventoryflag[value=complex] ~ .complex,
|
|
.equipment .inventoryflag[value=simple] ~ .simple,
|
|
.proficiencies .inventoryflag[value=complex] ~ .complex,
|
|
.proficiencies .inventoryflag[value=simple] ~ .simple,
|
|
.traits .inventoryflag[value=complex] ~ .complex,
|
|
.traits .inventoryflag[value=simple] ~ .simple {
|
|
display: inline-block;
|
|
}
|
|
|
|
.equipment .inventorysubflag {
|
|
height: 10px;
|
|
width: 10px;
|
|
top: 10px;
|
|
right: 0px;
|
|
}
|
|
|
|
.charsheet .equipment .inventorysubflag + span {
|
|
height: 10px;
|
|
width: 10px;
|
|
top: 10px;
|
|
right: 0px;
|
|
font-size: 10px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.equipment .complex {
|
|
width: 160px;
|
|
vertical-align: top;
|
|
padding-top: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.proficiencies .complex,
|
|
.traits .complex {
|
|
width: 240px;
|
|
vertical-align: top;
|
|
padding-top: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.pictos {
|
|
font-family: pictos;
|
|
}
|
|
|
|
.equipment .header span {
|
|
display: inline-block;
|
|
}
|
|
|
|
.item {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.item .name {
|
|
width: 100px;
|
|
}
|
|
|
|
.item input[type=text].weight {
|
|
width: 25px;
|
|
text-align: center;
|
|
}
|
|
|
|
.item .subitem .subfield {
|
|
font-weight: normal;
|
|
background-color: transparent;
|
|
padding: 0px;
|
|
width: 112px;
|
|
}
|
|
|
|
.item .subitem .subtextarea {
|
|
width: calc(100% - 20px);
|
|
font-size: 9px;
|
|
padding: 0px 5px 0px 15px;
|
|
min-height: 32px;
|
|
height: 32px;
|
|
margin: 0px;
|
|
}
|
|
|
|
.equipment .weighttotal {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 160px;
|
|
width: 70px;
|
|
}
|
|
|
|
.equipment .weighttotal input {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.item .subitem span {
|
|
width: 32px;
|
|
padding: 0px 0px 0px 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.equipment .warning,
|
|
.charactermancer_options .warning {
|
|
display: none;
|
|
padding: 6px;
|
|
border: 1px solid gray;
|
|
position: relative;
|
|
}
|
|
|
|
.equipment .warning label,
|
|
.charactermancer_options .warning label {
|
|
font-family: pictos;
|
|
border: 1px solid gray;
|
|
font-size: 8px;
|
|
width: auto;
|
|
padding: 2px;
|
|
line-height: 1em;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.equipment .warning label input,
|
|
.charactermancer_options .warning label input {
|
|
display: none;
|
|
}
|
|
|
|
.equipment .warningflag[value=show] + .warning,
|
|
.charactermancer_options .warningflag[value=show] + .warning {
|
|
display: block;
|
|
}
|
|
|
|
.equipment .warning span,
|
|
.charactermancer_options .warning span,
|
|
.equipment .encumb {
|
|
color: red;
|
|
}
|
|
|
|
.equipment .encumb {
|
|
display: none;
|
|
font-size: 9px;
|
|
}
|
|
|
|
.npc .warning {
|
|
color: red;
|
|
font-size: 9px;
|
|
}
|
|
|
|
.equipment .encumberance[value=IMMOBILE] ~ .immobile,
|
|
.equipment .encumberance[value="HEAVILY ENCUMBERED"] ~ .heavily,
|
|
.equipment .encumberance[value=ENCUMBERED] ~ .encumbered,
|
|
.equipment .encumberance[value="OVER CARRYING CAPACITY"] ~ .over {
|
|
display: block;
|
|
}
|
|
|
|
.equipment .warning input[type=checkbox],
|
|
.charactermancer_options .warning input[type=checkbox] {
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
width: auto;
|
|
}
|
|
|
|
.equipment .item .subitem .equipped {
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
width: initial;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.equipment .item .subitem .equippedlabel {
|
|
width: calc(100% - 50px);
|
|
text-align: left;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.equipment .equippedflag[value="0"] ~ .item > .name {
|
|
color: #999;
|
|
}
|
|
|
|
.version {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 5px;
|
|
pointer-events: none;
|
|
font-size: 0.25em;
|
|
}
|
|
|
|
.charsheet .options .body .version input[type=text] {
|
|
border-bottom: none;
|
|
width: 20px;
|
|
}
|
|
|
|
.spellattackinfo {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .spells .spellattackinfoflag[value=ATTACK] ~ .spellattackinfo,
|
|
.charsheet .npc .spellattackinfoflag[value=ATTACK] ~ .spellattackinfo {
|
|
display: block;
|
|
}
|
|
|
|
.attack input[type=text].flat {
|
|
display: none;
|
|
}
|
|
|
|
.attack .flatflag[value*=saveflat] ~ input[type=text].flat {
|
|
display: inline-block;
|
|
}
|
|
|
|
.npc .display .info {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.attacks .ammo {
|
|
display: none;
|
|
}
|
|
|
|
.ammoflag[value=on] + .attacks .ammo {
|
|
display: block;
|
|
}
|
|
|
|
.hlabel-container [name=attr_race_display] {
|
|
width: 200px;
|
|
}
|
|
|
|
.hlabel-container [name=attr_alignment] {
|
|
width: 180px;
|
|
}
|
|
|
|
.hlabel-container [name=attr_experience] {
|
|
width: 100px;
|
|
}
|
|
|
|
.class {
|
|
width: 64px;
|
|
}
|
|
|
|
.charsheet .hlabel-container .multiclass-display {
|
|
width: 57px;
|
|
font-size: 13px;
|
|
border-bottom: 1px solid #D3D3D3;
|
|
line-height: 35px;
|
|
height: 27px;
|
|
margin-right: -4px;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.charsheet .hlabel-container .multiclass-display-level {
|
|
width: 31px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
border-bottom: 1px solid #D3D3D3;
|
|
line-height: 35px;
|
|
height: 27px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.charsheet .hlabel-container input.class-level {
|
|
margin-left: -6px;
|
|
width: 34px;
|
|
}
|
|
|
|
.options .body input[type=text].pb_custom {
|
|
display: none;
|
|
}
|
|
|
|
.options .body input[value=custom] + input[type=text].pb_custom {
|
|
display: inline-block;
|
|
}
|
|
|
|
.attr-mod .baseattr {
|
|
/*display: none;*/
|
|
opacity: 0;
|
|
height: 0px;
|
|
width: 0px;
|
|
pointer-events: none;
|
|
display: inline;
|
|
position: absolute;
|
|
}
|
|
|
|
.finalattr {
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.attr-mod:hover .baseattr,
|
|
.attr-mod .baseattr:focus {
|
|
/*display: inline;*/
|
|
opacity: 1;
|
|
height: 20px;
|
|
width: 40px;
|
|
pointer-events: auto;
|
|
position: static;
|
|
}
|
|
|
|
.attr-mod:hover .finalattr,
|
|
.attr-mod .baseattr:focus ~ .finalattr {
|
|
display: none;
|
|
}
|
|
|
|
.attr-mod .attr-flag[value="1"] + .finalattr {
|
|
color: #3e99e8;
|
|
}
|
|
|
|
.attr-mod .attr-flag[value="1"] + .finalattr:after {
|
|
content: "*";
|
|
font-size: 15px;
|
|
position: absolute;
|
|
}
|
|
|
|
.spell_slot_mods .column {
|
|
width: 32%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.spell_slot_mods .num_plus {
|
|
margin-left: 2px;
|
|
}
|
|
|
|
.licensecontainer.active-drop-target.dropping,
|
|
input[name*=monster_confirm_flag][value="1"] ~ .licensecontainer,
|
|
input[name*=mancer_confirm_flag][value="1"] ~ .licensecontainer {
|
|
opacity: 0.5;
|
|
-o-transition: opacity 0.15s ease-in-out;
|
|
transition: opacity 0.15s ease-in-out;
|
|
-moz-transition: opacity 0.15s ease-in-out;
|
|
-webkit-transition: opacity 0.15s ease-in-out;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.compendium_warning,
|
|
.monster_confirm,
|
|
.mancer_confirm {
|
|
display: none;
|
|
}
|
|
|
|
.licensecontainer.active-drop-target.dropping ~ .compendium_warning,
|
|
input[name*=monster_confirm_flag][value="1"] ~ .monster_confirm,
|
|
input[name*=mancer_confirm_flag][value="1"] ~ .mancer_confirm {
|
|
display: block;
|
|
position: fixed;
|
|
top: 50%;
|
|
background: white;
|
|
left: 50%;
|
|
z-index: 100;
|
|
border: 2px solid black;
|
|
width: 300px;
|
|
height: 100px;
|
|
text-align: center;
|
|
margin: -70px 0 0 -170px;
|
|
}
|
|
|
|
.monster_confirm input[type=checkbox],
|
|
.mancer_confirm input[type=checkbox] {
|
|
height: 34px;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
.monster_confirm div div,
|
|
.mancer_confirm div div {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
.monster_confirm input[type=checkbox] + span,
|
|
.mancer_confirm input[type=checkbox] + span {
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
line-height: 34px;
|
|
position: absolute;
|
|
left: 0px;
|
|
border-radius: 5px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
input[name*=mancer_confirm_flag][value="1"] ~ .mancer_confirm {
|
|
width: 350px;
|
|
margin: -70px 0 0 -195px;
|
|
}
|
|
|
|
.mancer_confirm input[type=checkbox] {
|
|
height: 40px;
|
|
}
|
|
|
|
.mancer_confirm input[type=checkbox] + span {
|
|
font-size: 15px;
|
|
line-height: 1.2em;
|
|
height: 40px;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.monster_confirm .yes,
|
|
.mancer_confirm .yes {
|
|
width: 44px;
|
|
}
|
|
|
|
.monster_confirm .cancel,
|
|
.mancer_confirm .cancel {
|
|
width: 75px;
|
|
}
|
|
|
|
.licensecontainer.active-drop-target.dropping ~ .compendium_warning span {
|
|
line-height: 100px;
|
|
}
|
|
|
|
.init {
|
|
text-align: center;
|
|
}
|
|
|
|
.init span {
|
|
font-size: 20px;
|
|
line-height: 31px;
|
|
}
|
|
|
|
.class_options .subclass {
|
|
margin-left: 19px;
|
|
}
|
|
|
|
.header .display .class-display {
|
|
width: 298px;
|
|
text-transform: capitalize;
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
white-space: nowrap;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.no_events {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* TRANSITION SCRIPT */
|
|
.class_options,
|
|
.skill_options,
|
|
.attribute_options,
|
|
.save_options,
|
|
.general_options,
|
|
.transition_options {
|
|
border: 1px solid #666;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.transition_options {
|
|
display: none;
|
|
}
|
|
|
|
.already_transitioned[value="0"] ~ .transition_options {
|
|
display: block;
|
|
}
|
|
|
|
.sheet_select img {
|
|
padding: 5px;
|
|
border: 1px solid #BBB;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sheet_select img:hover {
|
|
background-color: #DDD;
|
|
cursor: pointer !important;
|
|
}
|
|
|
|
.charsheet .options .row span.transition_text {
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.charsheet .options .row span.transition_text_highlight {
|
|
color: #F00;
|
|
}
|
|
|
|
.globalattack input[type=checkbox] {
|
|
display: inline;
|
|
height: 12px;
|
|
width: 12px;
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
margin-left: 5px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.globalattack textarea {
|
|
width: 95%;
|
|
display: inline;
|
|
height: 25px;
|
|
margin: 1px;
|
|
}
|
|
|
|
.globalattack .label {
|
|
margin-bottom: 5px;
|
|
padding-top: 5px;
|
|
color: #A0A0A0;
|
|
border-top: 1px dotted #A0A0A0;
|
|
}
|
|
|
|
.missing-info {
|
|
margin-bottom: 100px;
|
|
display: none;
|
|
}
|
|
|
|
.missing-info-flag[value="1"] + .missing-info,
|
|
.missing-info:hover .missing-info-desc,
|
|
.missing-info-desc:hover {
|
|
display: block;
|
|
}
|
|
|
|
.actions.npcspell.spells,
|
|
.missing-info-desc {
|
|
display: none;
|
|
}
|
|
|
|
.npcspell_flag[value="1"] + .actions.npcspell.spells {
|
|
display: block;
|
|
}
|
|
|
|
.spells .innate {
|
|
color: #A0A0A0;
|
|
display: none;
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.innate:before {
|
|
content: ", ";
|
|
}
|
|
|
|
.spellcard .innate:not(:empty) {
|
|
display: inline;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.levelerbutton {
|
|
display: none;
|
|
}
|
|
|
|
.showleveler[value="1"] + .levelerbutton {
|
|
display: block;
|
|
}
|
|
|
|
/* Translation Overrides */
|
|
/* Spanish */
|
|
.lang-es .spell-container input[name=attr_spellcastingtime] {
|
|
width: 115px;
|
|
}
|
|
|
|
.lang-es .spell-container input[name=attr_spellrange] {
|
|
width: 200px;
|
|
}
|
|
|
|
.lang-es .spell-container input[name=attr_spelltarget] {
|
|
width: 188px;
|
|
}
|
|
|
|
.lang-es .spell-container input[name=attr_spellduration] {
|
|
width: 184px;
|
|
}
|
|
|
|
.lang-es .ac-init-speed-container div {
|
|
position: relative;
|
|
height: 56px;
|
|
}
|
|
|
|
.lang-es .ac-init-speed-container button,
|
|
.lang-es .ac-init-speed-container .label {
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
.lang-es .hdice-dsaves-container div.subcontainer {
|
|
position: relative;
|
|
height: 71px;
|
|
}
|
|
|
|
.lang-es .hdice-dsaves-container button {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.lang-es .hp .top input[name=attr_hp_max] {
|
|
width: 121px;
|
|
}
|
|
|
|
.lang-es .hlabel-container input[name=attr_race] {
|
|
width: 190px;
|
|
}
|
|
|
|
.lang-es .hlabel-container input[name=attr_alignment] {
|
|
width: 170px;
|
|
}
|
|
|
|
.lang-es .hlabel-container input[name=attr_experience] {
|
|
width: 120px;
|
|
}
|
|
|
|
.lang-es .npc .npc_options input[name=attr_npc_actype] {
|
|
width: 175px;
|
|
}
|
|
|
|
.lang-es .npc .npc_options input[name=attr_npc_hpformula] {
|
|
width: 175px;
|
|
}
|
|
|
|
.lang-es .advantagetoggle input.toggle-left,
|
|
.lang-es .advantagetoggle input.toggle-left + span {
|
|
right: 214px;
|
|
width: 67px;
|
|
}
|
|
|
|
.lang-es .advantagetoggle input.toggle-center,
|
|
.lang-es .advantagetoggle input.toggle-center + span {
|
|
right: 145px;
|
|
width: 65px;
|
|
}
|
|
|
|
.lang-es .advantagetoggle input.toggle-right,
|
|
.lang-es .advantagetoggle input.toggle-right + span {
|
|
right: 50px;
|
|
width: 91px;
|
|
}
|
|
|
|
.lang-es input[type=radio].tab-button.core,
|
|
.lang-es input[type=radio].tab-button.core + span {
|
|
right: 137px;
|
|
width: 76px;
|
|
}
|
|
|
|
.lang-es input[type=radio].tab-button.bio,
|
|
.lang-es input[type=radio].tab-button.bio + span {
|
|
right: 103px;
|
|
width: 30px;
|
|
}
|
|
|
|
.lang-es input[type=radio].tab-button.spells,
|
|
.lang-es input[type=radio].tab-button.spells + span {
|
|
right: 21px;
|
|
width: 78px;
|
|
}
|
|
|
|
/* Czech */
|
|
.charsheet.lang-cs input[type=radio].tab-button.core,
|
|
.charsheet.lang-cs input[type=radio].tab-button.core + span {
|
|
width: 53px;
|
|
}
|
|
|
|
.charsheet.lang-cs select[name=attr_cust_spellslots] {
|
|
font-size: 9px;
|
|
}
|
|
|
|
.charsheet.lang-cs .spell .options span[data-i18n="at-higher-lvl-dmg:-u"],
|
|
.charsheet.lang-cs .spell .options span[data-i18n=add-ability-mod-u],
|
|
.charsheet.lang-cs .spell .options span[data-i18n="saving-throw:-u"],
|
|
.charsheet.lang-cs .spell .options span[data-i18n="effect:-u"],
|
|
.charsheet.lang-cs .ac-init-speed-container .ac > span {
|
|
font-size: 8px;
|
|
}
|
|
|
|
.charsheet.lang-cs .subcontainer .top span[data-i18n=total] + input {
|
|
width: 75px;
|
|
}
|
|
|
|
.charsheet.lang-cs .row span[data-i18n=senses-u] + input,
|
|
.charsheet.lang-cs .row span[data-i18n=npc-type-u] + input {
|
|
width: 220px;
|
|
}
|
|
|
|
.charsheet.lang-cs .class {
|
|
width: 79px;
|
|
}
|
|
|
|
.charsheet.lang-cs .hlabel-container .multiclass-display {
|
|
width: 62px;
|
|
}
|
|
|
|
.charsheet.lang-cs .hlabel-container .multiclass-display-level {
|
|
width: 23px;
|
|
}
|
|
|
|
.charsheet.lang-cs .hlabel-container input.class-level {
|
|
width: 28px;
|
|
}
|
|
|
|
/* Italian */
|
|
.charsheet.lang-it input[type=radio].tab-button.core,
|
|
.charsheet.lang-it input[type=radio].tab-button.core + span {
|
|
right: 146px;
|
|
width: 60px;
|
|
}
|
|
|
|
.charsheet.lang-it input[type=radio].tab-button.bio,
|
|
.charsheet.lang-it input[type=radio].tab-button.bio + span {
|
|
right: 113px;
|
|
width: 30px;
|
|
}
|
|
|
|
.charsheet.lang-it input[type=radio].tab-button.spells,
|
|
.charsheet.lang-it input[type=radio].tab-button.spells + span {
|
|
right: 20px;
|
|
width: 90px;
|
|
}
|
|
|
|
.charsheet.lang-it div.licensecontainer .container.pc .spells .header .header-info .part {
|
|
width: 23%;
|
|
}
|
|
|
|
.charsheet.lang-it div.licensecontainer .container:not(.npc) div.page div.header div.name-container span {
|
|
margin-top: 19px;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.charsheet.lang-it .header .part input[type=text],
|
|
.charsheet.lang-it .header .part select {
|
|
height: 46px;
|
|
}
|
|
|
|
.charsheet.lang-it .header .part span.display {
|
|
height: 46px;
|
|
}
|
|
|
|
/*******************
|
|
* CHARACTERMANCER *
|
|
*******************/
|
|
.charmancer.container {
|
|
width: 100%;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-flow: row wrap;
|
|
flex-flow: row wrap;
|
|
-ms-flex-preferred-size: 1 1 100%;
|
|
flex-basis: 1 1 100%;
|
|
position: relative;
|
|
contain: paint;
|
|
}
|
|
|
|
.charmancer .choices {
|
|
-webkit-box-flex: 40%;
|
|
-ms-flex: 40%;
|
|
flex: 40%;
|
|
max-width: 40%;
|
|
padding-right: 1em;
|
|
}
|
|
|
|
.charmancer .info {
|
|
-webkit-box-flex: 60%;
|
|
-ms-flex: 60%;
|
|
flex: 60%;
|
|
position: relative;
|
|
max-width: calc(60% - 2em);
|
|
}
|
|
|
|
.charmancer .choices,
|
|
.charmancer .info {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.charmancer .compendium-page {
|
|
height: 100%;
|
|
}
|
|
|
|
.charmancer iframe {
|
|
height: 100%;
|
|
min-height: 50vh;
|
|
contain: paint;
|
|
}
|
|
|
|
.charmancer select option:disabled {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.charmancer select span.initials {
|
|
font-size: 6px;
|
|
}
|
|
|
|
.charmancer .topbar-holder {
|
|
width: 100%;
|
|
}
|
|
|
|
.charmancer .topbar,
|
|
.charmancer .leveler-topbar {
|
|
-webkit-box-flex: 100%;
|
|
-ms-flex: 100%;
|
|
flex: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.charmancer .topbar div div,
|
|
.charmancer .leveler-topbar div div {
|
|
display: inline-block;
|
|
width: 16%;
|
|
border: 1px solid gray;
|
|
text-align: center;
|
|
}
|
|
|
|
.charmancer .topbar div span,
|
|
.charmancer .leveler-topbar div span {
|
|
font-size: 3em;
|
|
line-height: 1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charmancer .leveler-topbar div span {
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
.charmancer .topbar div.meta-info-container,
|
|
.charmancer .leveler-topbar div.meta-info-container {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
border: 0;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.charmancer .topbar div.meta-info-container span,
|
|
.charmancer .leveler-topbar div.meta-info-container span {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.charmancer .topbar div.meta-info-container span.choice,
|
|
.charmancer .leveler-topbar div.meta-info-container span.choice {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .steps {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
padding: 0.5em 0;
|
|
background: #fff;
|
|
z-index: 1011;
|
|
top: 0;
|
|
border-bottom: 1px dashed #ddd;
|
|
list-style: none;
|
|
list-style-position: inside;
|
|
-webkit-box-flex: 100%;
|
|
-ms-flex: 100%;
|
|
flex: 100%;
|
|
margin: 0 0 1em;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-flow: row;
|
|
flex-flow: row;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
.charmancer .lp-steps {
|
|
width: 100%;
|
|
display: block;
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: none;
|
|
flex: none;
|
|
}
|
|
|
|
.charmancer .lp-steps li {
|
|
display: inline;
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.charmancer .lp-steps li:last-of-type {
|
|
float: right;
|
|
}
|
|
|
|
.charmancer button,
|
|
.charmancer button[type=roll] {
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charmancer button[type=roll] {
|
|
padding: 1px 6px;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
|
|
.charmancer button[type=roll]:before {
|
|
content: "";
|
|
}
|
|
|
|
.charmancer button.step {
|
|
border-color: black;
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
.charmancer button.step.next,
|
|
.charmancer button.step.prev,
|
|
.charmancer button.step.done,
|
|
.charmancer button.step:not(.here) {
|
|
border-color: black;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
}
|
|
|
|
.charmancer button:hover,
|
|
.charmancer button:hover.step,
|
|
.charmancer button:hover.step.done,
|
|
.charmancer button.step.here,
|
|
.charmancer button[type=roll]:hover,
|
|
.charmancer button[type=roll]:hover * {
|
|
color: #fff;
|
|
background-color: #EC2127;
|
|
}
|
|
|
|
.charmancer button.exit {
|
|
text-transform: uppercase;
|
|
color: #EC2127;
|
|
background-color: #fff;
|
|
border-color: #EC2127;
|
|
}
|
|
|
|
.charmancer button[type=back]:disabled:not(.here) {
|
|
color: #ddd;
|
|
background-color: white;
|
|
border-color: #ddd;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.charmancer .bottombar,
|
|
.charmancer .controls {
|
|
-webkit-box-flex: 100%;
|
|
-ms-flex: 100%;
|
|
flex: 100%;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.charmancer .bottombar {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
bottom: -1px;
|
|
border-top: 1px dashed #ddd;
|
|
padding: 0.5em 0;
|
|
background: white;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
-webkit-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
.charmancer .bottombar button {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.charmancer .jump {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.charmancer .prev {
|
|
left: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
.charmancer .next {
|
|
right: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
.charmancer .row {
|
|
border: 1px solid #ddd;
|
|
border-radius: 0.5em 0 0 0;
|
|
border-width: 1px 4px 0 1px;
|
|
margin: 0 -1em 0 0;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.charmancer .row .row {
|
|
border-left-width: 0;
|
|
margin-left: -0.5em;
|
|
}
|
|
|
|
.charmancer .row .row:first-of-type {
|
|
border-top-width: 0;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.charmancer .race_traits b {
|
|
display: block;
|
|
}
|
|
|
|
.charmancer .race_traits b + b {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.charmancer label * {
|
|
margin-top: 9px;
|
|
}
|
|
|
|
.charmancer label span:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.charmancer select {
|
|
margin-bottom: 0;
|
|
width: calc(100% - 2.25em);
|
|
}
|
|
|
|
.charmancer select:not([required]) {
|
|
width: calc(100% - 3em);
|
|
}
|
|
|
|
.charmancer label p {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.charmancer label,
|
|
.charmancer .label {
|
|
font-size: 1.55rem;
|
|
}
|
|
|
|
.charmancer .label {
|
|
display: block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charmancer select + select,
|
|
.charmancer [class^=race_level0_choice] + [class^=race_level0_choice],
|
|
.charmancer [class^=race_level1_choice] + [class^=race_level1_choice],
|
|
.charmancer [class^=class_level0_choice] + [class^=class_level0_choice],
|
|
.charmancer [class^=class_level1_choice] + [class^=class_level1_choice] {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.charmancer label.compendium-opt,
|
|
.charmancer label.compendium-opt > *,
|
|
.charmancer label.abilities_attribute {
|
|
display: inline;
|
|
vertical-align: unset;
|
|
}
|
|
|
|
.charmancer .cancel-prompt {
|
|
position: fixed;
|
|
background: white;
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
padding: 40px 20px 40px 20px;
|
|
top: 195px;
|
|
width: 650px;
|
|
text-align: center;
|
|
}
|
|
|
|
.charmancer.container .cancel-prompt {
|
|
top: 35px;
|
|
z-index: 1012;
|
|
}
|
|
|
|
.charmancer *[required]:not(.choice) {
|
|
display: inline-block;
|
|
}
|
|
|
|
.charmancer .hilite::after {
|
|
content: "* required";
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
display: block;
|
|
font-size: 14px;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.charmancer .warning {
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.charmancer button.warning {
|
|
color: #fff;
|
|
background-color: #7e2d40;
|
|
border-color: #7e2d40;
|
|
}
|
|
|
|
.charmancer button:hover.warning {
|
|
color: #7e2d40;
|
|
background-color: #fff;
|
|
border-color: #7e2d40;
|
|
}
|
|
|
|
.charmancer .needed::before {
|
|
font-family: pictos;
|
|
content: "D";
|
|
}
|
|
|
|
.charmancer .hilite {
|
|
color: #7e2d40;
|
|
background: #EFEFEF;
|
|
border-radius: 0.5em;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.charmancer .hilite div + div {
|
|
margin: 1em 0 0;
|
|
}
|
|
|
|
.charmancer .gold_option input[type=number] {
|
|
width: 4.5em;
|
|
}
|
|
|
|
.manver .yes_spells {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.charmancer button.mancer_info,
|
|
.charmancer [data-repeating] button.action.choice-showing {
|
|
font-size: 1.25em;
|
|
width: 1.25em;
|
|
height: 1.25em;
|
|
padding: 0;
|
|
font-style: italic;
|
|
text-align: center;
|
|
color: white;
|
|
background: black;
|
|
font-weight: bold;
|
|
font-family: serif;
|
|
border-radius: 100%;
|
|
display: inline-block;
|
|
border: none;
|
|
}
|
|
|
|
.charmancer [data-repeating] p button.mancer_info {
|
|
font-size: 0.8em;
|
|
line-height: 1em;
|
|
vertical-align: super;
|
|
}
|
|
|
|
.charmancer button.mancer_info:hover,
|
|
.charmancer [data-repeating] button.action:hover {
|
|
background: #EC2127;
|
|
}
|
|
|
|
.charmancer [class^=abilities_radio]:not(.choice) {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.charmancer span label.compendium-opt {
|
|
position: relative;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.charmancer span label.compendium-opt > span {
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
min-width: 1.618em;
|
|
background-color: #E8E8E8;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.charmancer span label.compendium-opt > input[type=radio]:disabled + span {
|
|
color: #ddd;
|
|
background-color: white;
|
|
border-color: #ddd;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.charmancer span label.compendium-opt > input[type=radio]:checked + span {
|
|
color: white;
|
|
background-color: #EC2127;
|
|
}
|
|
|
|
.charmancer span .compendium-opt > input[type=radio] {
|
|
opacity: 0;
|
|
width: 0;
|
|
cursor: none;
|
|
}
|
|
|
|
.charmancer .summary .returnblock {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.equipment_choice_title {
|
|
font-weight: bold;
|
|
margin-bottom: 0px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.backgrounds_options label select,
|
|
.backgrounds_options label span,
|
|
.backgrounds_options label button {
|
|
display: inline-block;
|
|
}
|
|
|
|
.backgrounds_options label button[type=roll] {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.backgrounds_options label br {
|
|
margin-top: 0.1em;
|
|
}
|
|
|
|
.backgrounds_options label select:not([required]),
|
|
.randomize-traits .row select.randomized-trait-choice {
|
|
width: calc(100% - 4em);
|
|
}
|
|
|
|
.charmancer button.bg_info {
|
|
font-size: 1.25em;
|
|
width: 1.25em;
|
|
height: 1.25em;
|
|
padding: 0;
|
|
font-style: italic;
|
|
text-align: center;
|
|
color: white;
|
|
background: black;
|
|
font-weight: bold;
|
|
font-family: serif;
|
|
border-radius: 100%;
|
|
display: inline-block;
|
|
border: none;
|
|
}
|
|
|
|
.charmancer button.bg_info:hover {
|
|
background: #EC2127;
|
|
}
|
|
|
|
.charmancer .custom_class label input[type=checkbox] {
|
|
display: inline-block;
|
|
margin-top: inherit;
|
|
margin: 5px;
|
|
}
|
|
|
|
.charmancer .mancer_progress {
|
|
border: 2px solid black;
|
|
height: 10px;
|
|
margin-top: 1.5em;
|
|
width: 100%;
|
|
}
|
|
|
|
.charmancer .mancer_progress div {
|
|
background-color: red;
|
|
height: 100%;
|
|
}
|
|
|
|
.charmancer .bottombar button[type=finish].choice {
|
|
display: inline-block;
|
|
opacity: 0.4;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.charmancer .custom_type {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.charmancer .custom_type select {
|
|
display: inline-block;
|
|
width: 65%;
|
|
}
|
|
|
|
.charmancer .custom_type + span:empty + select,
|
|
.charmancer .custom_type + span:empty ~ button,
|
|
.charmancer .custom_trait + span:empty ~ button {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.charmancer .custom_add_action {
|
|
float: right;
|
|
margin-right: 4em;
|
|
}
|
|
|
|
.charmancer .custom_trait textarea {
|
|
width: calc(100% - 3em);
|
|
resize: vertical;
|
|
height: 7em;
|
|
}
|
|
|
|
.custom-proficiency button,
|
|
.custom-trait button {
|
|
display: none;
|
|
}
|
|
|
|
.custom-proficiency:last-of-type button,
|
|
.custom-trait:last-of-type button {
|
|
display: block;
|
|
}
|
|
|
|
.charmancer .choices.spellslide {
|
|
-webkit-box-flex: 45%;
|
|
-ms-flex: 45%;
|
|
flex: 45%;
|
|
max-width: 45%;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.charmancer .info.spellslide {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
-webkit-box-flex: 55%;
|
|
-ms-flex: 55%;
|
|
flex: 55%;
|
|
top: 4em;
|
|
min-height: 50%;
|
|
height: 100%;
|
|
}
|
|
|
|
.spells-summary div div {
|
|
display: inline-block;
|
|
}
|
|
|
|
.spells-summary .title {
|
|
width: 15%;
|
|
text-align: right;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.spells-summary .list {
|
|
width: 85%;
|
|
padding-left: 0.5em;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.spells-summary .list span:not(:last-of-type)::after {
|
|
content: ",";
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.spells-summary .list span::before {
|
|
content: " ";
|
|
}
|
|
|
|
.spells-summary .new {
|
|
/*color: #447877;*/
|
|
color: green;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.spells-summary .removed {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.spellslide .cantripinfo {
|
|
margin-bottom: -1em;
|
|
}
|
|
|
|
.spellslide .cantripinfo p {
|
|
margin: 0;
|
|
}
|
|
|
|
.charmancer .spellslide .row {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.charmancer .spellslide .instructions {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charmancer .spellslide .spell-summary {
|
|
margin: 0;
|
|
}
|
|
|
|
.charmancer label.nostyle * {
|
|
display: inline;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.charmancer .spell-holder {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.charmancer .spell-holder label {
|
|
border: 1px solid black;
|
|
background-color: #efefef;
|
|
margin: 0;
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.charmancer .spell-holder label .title {
|
|
display: inline;
|
|
padding: 1em;
|
|
line-height: 2em;
|
|
}
|
|
|
|
.charmancer .spell-holder label .title span.choice-showing {
|
|
font-family: pictos;
|
|
color: red;
|
|
display: inline;
|
|
font-size: 0.8em;
|
|
line-height: 0.1em;
|
|
padding-left: 0.5em;
|
|
position: relative;
|
|
bottom: 0.3em;
|
|
}
|
|
|
|
.charmancer .spell-holder label .number {
|
|
float: right;
|
|
font-weight: normal;
|
|
margin-right: 0.7em;
|
|
line-height: 0.8em;
|
|
}
|
|
|
|
.charmancer .spell-holder .spellheader input {
|
|
display: inline;
|
|
float: right;
|
|
opacity: 0;
|
|
}
|
|
|
|
.charmancer .spell-holder label .number::after {
|
|
content: "9";
|
|
font-family: pictos;
|
|
position: absolute;
|
|
margin-left: 0.3em;
|
|
font-size: 1.3em;
|
|
display: inline-block;
|
|
-webkit-transform: rotate(-90deg);
|
|
-ms-transform: rotate(-90deg);
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.charmancer .spell-holder label input:checked ~ .number::after {
|
|
-webkit-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
margin-left: 0.4em;
|
|
}
|
|
|
|
.charmancer .spell-holder .container {
|
|
width: 100%;
|
|
border: 1px solid black;
|
|
border-top: 0;
|
|
padding: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.charmancer .spell-item {
|
|
padding: 0 0.5em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.charmancer .spell-item label {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
background-color: unset;
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
display: inline;
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
.charmancer .spell-item .mancer_info {
|
|
font-size: 1em;
|
|
margin-top: 0.25em;
|
|
background-color: #777;
|
|
line-height: 1em;
|
|
position: absolute;
|
|
left: 93%;
|
|
}
|
|
|
|
.charmancer .spell-item .classes {
|
|
font-size: 0.6em;
|
|
float: right;
|
|
margin-right: 7%;
|
|
}
|
|
|
|
.charmancer .spell-item .classes span:not(:last-child)::after {
|
|
content: ", ";
|
|
color: #000;
|
|
}
|
|
|
|
.charmancer .spell-item .known {
|
|
color: #000;
|
|
font-style: italic;
|
|
}
|
|
|
|
.charmancer .spell-item .class0 {
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.charmancer .spell-item .class1 {
|
|
color: #000;
|
|
}
|
|
|
|
.charmancer .spell-item .class2 {
|
|
color: #ec2127;
|
|
}
|
|
|
|
.charmancer .spell-item .class3 {
|
|
color: #447877;
|
|
}
|
|
|
|
.charmancer .container .spell-item .spellcheck {
|
|
margin-bottom: 0.3em;
|
|
margin-right: 0.3em;
|
|
}
|
|
|
|
.charmancer .spell-item .lock:not(:empty) ~ label,
|
|
.charmancer .spell-item .hardlock:not(:empty) ~ label {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.charmancer .spell-item .existing[value="1"] ~ label .name {
|
|
font-style: italic;
|
|
}
|
|
|
|
.charmancer .spell-item .existing[value="1"] ~ label input:not(:checked) ~ .name::before {
|
|
content: "r";
|
|
font-family: pictos;
|
|
color: red;
|
|
font-style: normal;
|
|
padding-right: 0.3em;
|
|
line-height: 1em;
|
|
}
|
|
|
|
.charmancer .spell-item .lock:not(:empty) ~ label *,
|
|
.charmancer .spell-item .hardlock:not(:empty) ~ label * {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.charmancer .container .spell-item:nth-child(even) {
|
|
background-color: #efefef;
|
|
}
|
|
|
|
.charmancer .spell-holder .controller:not(:empty) + .container {
|
|
height: 0;
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .spell-holder .spellinfo:not(:empty) {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.charmancer .spell-holder .spellinfo div {
|
|
width: 49%;
|
|
}
|
|
|
|
.charmancer .spell-holder .spellinfo div div {
|
|
width: 100%;
|
|
padding-bottom: 0.3em;
|
|
}
|
|
|
|
.charmancer .spell-holder .spellinfo p {
|
|
margin: 0;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.charmancer .pagelock:empty + .spellslide * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.charmancer .replace-info span {
|
|
font-family: pictos;
|
|
color: red;
|
|
}
|
|
|
|
.charmancer .asi-row .asi,
|
|
.charmancer .asi-row .feat {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .asi-row .switch-container {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.charmancer .asi-row .switch-tab {
|
|
width: 50%;
|
|
border-color: #888;
|
|
border-style: solid;
|
|
border-radius: 4px 4px 0 0;
|
|
border-width: 1px;
|
|
background-color: #aaa;
|
|
padding: 0.25em 0.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
.charmancer .asi-row .switch-tab input {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .asi-row .switch ~ .switch-container .feat-tab {
|
|
background-color: #bbb;
|
|
color: #666;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div {
|
|
width: 33%;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div:nth-child(1),
|
|
.charmancer .asi-row .asi .abilities-holder div:nth-child(2),
|
|
.charmancer .asi-row .asi .abilities-holder div:nth-child(3) {
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div div {
|
|
position: relative;
|
|
width: 1.2em;
|
|
display: inline-block;
|
|
top: -0.3em;
|
|
left: -0.5em;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div h5 {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div input {
|
|
font-weight: bold;
|
|
border: none;
|
|
width: 30%;
|
|
font-size: 2em;
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder div span {
|
|
font-size: 2em;
|
|
margin-left: 20%;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder .spinner {
|
|
position: absolute;
|
|
left: 0;
|
|
height: 12px;
|
|
padding: 0;
|
|
font-size: 12px;
|
|
line-height: 0;
|
|
width: 100%;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder .up-spinner {
|
|
bottom: 0;
|
|
border-bottom-width: 0;
|
|
border-radius: 2px 2px 0 0;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder .down-spinner {
|
|
top: 0;
|
|
border-radius: 0 0 2px 2px;
|
|
}
|
|
|
|
.charsheet .charmancer .choices h2 span {
|
|
display: block;
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
line-height: normal;
|
|
color: #888;
|
|
margin: -8px 0 8px;
|
|
}
|
|
|
|
.charsheet .charmancer .choices .row p {
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.charmancer .asi-row .asi .abilities-holder .lock-down:not(:empty) ~ div .down-spinner,
|
|
.charmancer .asi-row .asi .abilities-holder .lock-up:not(:empty) ~ div .up-spinner {
|
|
pointer-events: none;
|
|
color: rgba(0, 0, 0, 0.3);
|
|
background-color: rgba(232, 232, 232, 0.3);
|
|
}
|
|
|
|
.charmancer .lp-summary {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 200px;
|
|
border: 1px solid black;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.charmancer .lp-summary div {
|
|
width: 50%;
|
|
}
|
|
|
|
.charmancer .lp-summary div div {
|
|
width: 100%;
|
|
padding-top: 0.5em;
|
|
}
|
|
|
|
.charmancer .lp-summary .before {
|
|
border-right: 1px solid black;
|
|
}
|
|
|
|
.charmancer .lp-summary div h2 {
|
|
width: 100%;
|
|
color: white;
|
|
border-bottom: 1px solid black;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding-left: 0.5em;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.charmancer .lp-summary .before h2 {
|
|
background-color: black;
|
|
}
|
|
|
|
.charmancer .lp-summary .after h2 {
|
|
background-color: #999;
|
|
}
|
|
|
|
.charmancer .lp-summary .row {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.charmancer .lp-summary .row::before {
|
|
margin: 0.5em;
|
|
}
|
|
|
|
.charmancer .lp-summary .ability-row {
|
|
width: 100%;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
padding: 0;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.charmancer .lp-summary .ability-row div {
|
|
width: 16.6%;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.charmancer .lp-summary .ability-row h5 {
|
|
font-size: 1.1em;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
.charmancer .lp-summary p {
|
|
font-weight: bold;
|
|
margin: 0;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
.charmancer .lp-summary p span {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.charmancer .lp-summary .highlight {
|
|
background-color: #e6d6b8;
|
|
}
|
|
|
|
.charmancer .lp-summary span.highlight {
|
|
color: red;
|
|
}
|
|
|
|
.charmancer .lp-summary ~ div.summary {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Firefox 3.5+ */
|
|
body:not(:-moz-handler-blocked) .charmancer .steps {
|
|
top: -0.8em;
|
|
}
|
|
|
|
body:not(:-moz-handler-blocked) .charmancer .bottombar {
|
|
bottom: -0.8em;
|
|
}
|
|
|
|
.pc .globalattack {
|
|
border: none;
|
|
}
|
|
|
|
/* Customizations for the PC's global damage area */
|
|
.pc div.sheet.global-dmg div.global-mod div.rows {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.pc div.sheet.global-dmg div.global-mod div.rows span {
|
|
display: inline;
|
|
margin-left: 25px;
|
|
}
|
|
|
|
.pc div.global-dmg div.display {
|
|
margin-bottom: 2px;
|
|
width: 90% !important;
|
|
}
|
|
|
|
.pc div.global-dmg div.display span.title {
|
|
padding-right: 0px;
|
|
width: 40%;
|
|
}
|
|
|
|
.pc div.global-dmg div.display span.subheader {
|
|
display: inline;
|
|
padding-right: 0px;
|
|
width: 50%;
|
|
}
|
|
|
|
.pc div.global-dmg div.display span.subheader span {
|
|
display: inline;
|
|
padding: 4px 0px;
|
|
}
|
|
|
|
div.globaldisplay {
|
|
width: 80%;
|
|
background-color: #EFEFEF;
|
|
border-bottom-right-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
display: inline-block;
|
|
font-size: 9px;
|
|
font-weight: bold;
|
|
line-height: 16px;
|
|
padding-bottom: 3px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
padding-top: 3px;
|
|
text-align: left;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
div.globaldisplay span {
|
|
display: inline;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:not(:checked) ~ .display .title {
|
|
background-color: #EFEFEF;
|
|
border-bottom-right-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
display: inline-block;
|
|
font-size: 9px;
|
|
font-weight: bold;
|
|
line-height: 16px;
|
|
height: 16px;
|
|
padding-bottom: 3px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
padding-top: 3px;
|
|
text-align: left;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:not(:checked) ~ .display .subheader {
|
|
background-color: #EFEFEF;
|
|
border-bottom-right-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
display: inline-block;
|
|
font-size: 9px;
|
|
font-weight: bold;
|
|
height: 16px;
|
|
padding-bottom: 3px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
padding-top: 3px;
|
|
text-align: left;
|
|
}
|
|
|
|
.pc .global-mod .active-flag {
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:checked ~ .active-flag {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.pc .global-mod .options-flag:checked ~ .display {
|
|
display: none;
|
|
}
|
|
|
|
/* Level HP Bar */
|
|
.charmancer .levels-hp-row {
|
|
background: #eee;
|
|
border-radius: 0.25em;
|
|
border: 1px solid #aaa;
|
|
margin: 0.5em 0;
|
|
padding: 0.25em;
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
.charmancer .levels-hp-row h2 {
|
|
line-height: normal;
|
|
height: 1em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle,
|
|
.charmancer .levels-hp-row .class1_rollhp,
|
|
.charmancer .levels-hp-row .class2_rollhp,
|
|
.charmancer .levels-hp-row .class3_rollhp,
|
|
.charmancer .levels-hp-row .class4_rollhp,
|
|
.charmancer .levels-hp-row input[name=comp_class1_addhp],
|
|
.charmancer .levels-hp-row input[name=comp_class2_addhp],
|
|
.charmancer .levels-hp-row input[name=comp_class3_addhp],
|
|
.charmancer .levels-hp-row input[name=comp_class4_addhp],
|
|
.charmancer .levels-hp-row button[name=act_class1_addhpAverage],
|
|
.charmancer .levels-hp-row button[name=act_class2_addhpAverage],
|
|
.charmancer .levels-hp-row button[name=act_class3_addhpAverage],
|
|
.charmancer .levels-hp-row button[name=act_class4_addhpAverage] {
|
|
vertical-align: middle;
|
|
text-align: left;
|
|
}
|
|
|
|
/* Level HP expanded */
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class1_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class2_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class3_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class4_by-levels {
|
|
border-top: 1px solid #aaa;
|
|
margin: -0.25em !important;
|
|
margin-top: 0.25em !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div {
|
|
background: #fff;
|
|
display: inline-block;
|
|
border-radius: 0 0 0.25em 0.25em;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > label,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div > label {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div > div {
|
|
padding: 0.25em;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div > div:nth-child(odd) {
|
|
background: #eee;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div > div label {
|
|
font-size: 24px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div > div > div button {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* DEV 1378 */
|
|
/* levels-multiclass is the div encompassing the overall class section of the levels slide */
|
|
.charmancer .levels-multiclass .hide-multiclass[value="0"] ~ .row:nth-of-type(1n+2),
|
|
.charmancer .levels-multiclass .hide-multiclass[value="1"] ~ .row:nth-of-type(1n+3),
|
|
.charmancer .levels-multiclass .hide-multiclass[value="2"] ~ .row:nth-of-type(1n+4),
|
|
.charmancer .levels-multiclass .hide-multiclass[value="3"] ~ .row:nth-of-type(1n+5) {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .class1_selector,
|
|
.charmancer .levels-multiclass .class2_selector,
|
|
.charmancer .levels-multiclass .class3_selector,
|
|
.charmancer .levels-multiclass .class4_selector {
|
|
display: inline-block;
|
|
width: 45%;
|
|
}
|
|
|
|
.charmancer .levels-multiclass button {
|
|
margin: 0% 1%;
|
|
font-weight: 500;
|
|
line-height: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.charmancer .levels-multiclass h2 {
|
|
display: inline-block;
|
|
margin-right: 2%;
|
|
width: auto;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .row h2 + input {
|
|
margin-right: 2%;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .multiclass_message {
|
|
display: inline-block;
|
|
width: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .levels-message {
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* These are the two buttons to add or remove a multiclass */
|
|
.charmancer .levels-multiclass .levels-multiclass-buttons div {
|
|
display: inline-block;
|
|
margin-left: 5%;
|
|
width: auto;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .add_multiclass {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .add_multiclass button[type=action]:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.charmancer .levels-multiclass .hp-flag[value=roll] ~ div > button[name*=rollhp],
|
|
.charmancer .levels-multiclass .hp-flag[value=average] ~ div > button[name*=averagehp],
|
|
.charmancer .levels-multiclass .hp-flag[value=roll] ~ button[name*=rollhp],
|
|
.charmancer .levels-multiclass .hp-flag[value=average] ~ button[name*=averagehp] {
|
|
background-color: #EC2127;
|
|
color: #fff;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .row div > label {
|
|
display: inline;
|
|
}
|
|
|
|
.charmancer .compendium-class-name {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 28px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container {
|
|
pointer-events: none;
|
|
background-color: #E8E8E8;
|
|
}
|
|
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container input,
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container select,
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container button {
|
|
background-color: #f5f5f5 !important;
|
|
color: #888888 !important;
|
|
cursor: not-allowed !important;
|
|
}
|
|
|
|
.charmancer .custom_warning,
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container .class_features_container,
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container .subclass_features_container {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .lock-custom-class[value="1"] ~ .class1_container .custom_warning {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* The hidden checkbox to expanded or collapse the by level */
|
|
.charmancer .levels-hp-row input.hpbylevel-toggle {
|
|
opacity: 0;
|
|
display: inline-block !important;
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
position: absolute;
|
|
right: 0.25em;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Icon for the collpase & expand toggle */
|
|
.charmancer .levels-hp-row .hpbylevel-toggle ~ .collapse {
|
|
display: inline-block;
|
|
font-family: pictos;
|
|
font-size: 1.5em;
|
|
-webkit-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
position: absolute;
|
|
right: 0.25em;
|
|
top: 9px;
|
|
z-index: 0;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse {
|
|
-webkit-transform: rotate(-90deg);
|
|
-ms-transform: rotate(-90deg);
|
|
transform: rotate(-90deg);
|
|
margin-left: 0.4em;
|
|
}
|
|
|
|
/* Toggles to expand & collapse the HP by levels */
|
|
.charmancer .levels-hp-row .class1_by-levels,
|
|
.charmancer .levels-hp-row .class2_by-levels,
|
|
.charmancer .levels-hp-row .class3_by-levels,
|
|
.charmancer .levels-hp-row .class4_by-levels,
|
|
.charmancer .levels-hp-row span.collapse + div {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class1_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class2_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class3_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ .class4_by-levels,
|
|
.charmancer .levels-hp-row .hpbylevel-toggle:checked ~ span.collapse + div {
|
|
display: block;
|
|
}
|
|
|
|
.charmancer button.step.disabled {
|
|
pointer-events: none;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.utilityrow label span span {
|
|
display: inline;
|
|
}
|
|
|
|
/* cleaning up level slide class feature display */
|
|
.charmancer .choices .class1_features,
|
|
.charmancer .choices .class2_features,
|
|
.charmancer .choices .class3_features,
|
|
.charmancer .choices .class4_features,
|
|
.charmancer .choices .subclass1_features,
|
|
.charmancer .choices .subclass2_features,
|
|
.charmancer .choices .subclass3_features,
|
|
.charmancer .choices .subclass4_features {
|
|
font-size: 14px;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.charmancer .choices .subclass1_features_title,
|
|
.charmancer .choices .subclass2_features_title,
|
|
.charmancer .choices .subclass3_features_title,
|
|
.charmancer .choices .subclass4_features_title {
|
|
margin-top: 0.5em;
|
|
display: inline-block !important;
|
|
}
|
|
|
|
/* styling the featured slide's spell selection */
|
|
.charmancer .choices .utilityrow {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.charmancer .choices .utilityrow .result {
|
|
font-weight: normal;
|
|
margin-bottom: -0.25em;
|
|
display: block;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.charmancer p.prereq span {
|
|
display: inline;
|
|
padding-right: 0.2em;
|
|
}
|
|
|
|
.charmancer p.prereq {
|
|
color: red;
|
|
margin-top: -0.5em;
|
|
}
|
|
|
|
.charsheet .subcontainer .roll-hitdie {
|
|
text-align: center;
|
|
}
|
|
.charsheet .subcontainer .roll-hitdie button[type=roll] {
|
|
width: auto;
|
|
}
|
|
.charsheet .subcontainer .roll-hitdie select {
|
|
border-bottom: 1px solid #D3D3D3;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0px;
|
|
color: black;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
width: 15px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
line-height: 18px;
|
|
height: 18px;
|
|
}
|
|
.charsheet .subcontainer .roll-hitdie input[value="12"] + select, .charsheet .subcontainer .roll-hitdie input[value="10"] + select {
|
|
width: initial;
|
|
}
|
|
|
|
/* DnD5E OFFICIAL CONTENT CSS */
|
|
/* LICENSED SHEET */
|
|
.licensecontainer {
|
|
/* NPC & MONSTER TEMPLATE */
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page > div.header {
|
|
margin-left: -50px;
|
|
width: 850px;
|
|
height: 140px;
|
|
}
|
|
.licensecontainer .advantagetoggle {
|
|
top: 140px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page.core > div.header,
|
|
.licensecontainer .container:not(.npc) div.page.options > div.header {
|
|
background: url("https://app.roll20.net/images/dndstyling/CharScroll.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: 2px center;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page.bio > div.header {
|
|
background: url("https://app.roll20.net/images/dndstyling/BioScroll.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: 2px center;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page.spells > div.header {
|
|
background: url("https://app.roll20.net/images/dndstyling/SpellScroll.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: 2px center;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page > div.header::after {
|
|
content: "";
|
|
width: 30px;
|
|
height: 162px;
|
|
position: absolute;
|
|
right: -60px;
|
|
background: url("https://app.roll20.net/images/dndstyling/ScrollRight.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: right center;
|
|
background-size: 100% 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page div.header div.name-container {
|
|
width: 250px;
|
|
display: inline-block;
|
|
margin-left: 60px;
|
|
margin-top: 72px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page div.header div.name-container img {
|
|
display: none;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.page div.header div.name-container span {
|
|
margin-top: 16px;
|
|
margin-left: 35px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info {
|
|
border: none;
|
|
margin-left: 54px;
|
|
width: 440px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_background] {
|
|
width: 138px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_race] {
|
|
width: 180px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_alignment] {
|
|
width: 140px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_experience] {
|
|
width: 98px !important;
|
|
margin-bottom: 0;
|
|
text-align: left;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_age] {
|
|
width: 100px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_height] {
|
|
width: 100px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_weight] {
|
|
width: 100px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_eyes] {
|
|
width: 140px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_skin] {
|
|
width: 140px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header-info div.hlabel-container input[name=attr_hair] {
|
|
width: 140px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.spells div.header-info div.part {
|
|
width: 144px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.spells div.header-info div.part select,
|
|
.licensecontainer .container:not(.npc) div.spells div.header-info div.part input {
|
|
border: none;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.spells div.header-info div.part select[name=attr_spellcasting_ability] {
|
|
-moz-text-align-last: center;
|
|
text-align-last: center;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.header div.part span.display {
|
|
border: none;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.footer {
|
|
display: none;
|
|
}
|
|
.licensecontainer .container:not(.npc) input[type=radio].tab-button,
|
|
.licensecontainer .container:not(.npc) input[type=radio].tab-button + span {
|
|
top: 140px;
|
|
}
|
|
.licensecontainer .container:not(.npc) div.advantagetoggle {
|
|
top: 140px;
|
|
}
|
|
.licensecontainer div.npc div.triangle,
|
|
.licensecontainer div.triangle {
|
|
border: none;
|
|
border-top: 3px solid transparent;
|
|
border-bottom: 3px solid transparent;
|
|
border-left: 360px solid #7e2d40;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
.licensecontainer .container.pc .header .options-flag {
|
|
top: 45px;
|
|
right: -15px;
|
|
}
|
|
.licensecontainer .container.pc .header .options-flag + span {
|
|
top: 45px;
|
|
right: -15px;
|
|
}
|
|
.licensecontainer .container.pc .header .header-info {
|
|
margin-top: 30px;
|
|
margin-left: 51px;
|
|
background: url("https://app.roll20.net/images/dndstyling/CharBox.svg");
|
|
background-position: 0;
|
|
padding: 14px;
|
|
background-size: cover;
|
|
}
|
|
.licensecontainer .container.pc .spells .header .header-info {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/SpellBox.svg");
|
|
display: -webkit-inline-box;
|
|
display: -ms-inline-flexbox;
|
|
display: inline-flex;
|
|
-ms-flex-pack: distribute;
|
|
justify-content: space-around;
|
|
}
|
|
.licensecontainer .container.pc .spells .header .header-info .part {
|
|
background: url("https://app.roll20.net/images/dndstyling/SpellHeadBlock.svg");
|
|
background-position: top center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
width: 30%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attributes-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-back.svg");
|
|
margin: 0 !important;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container {
|
|
width: auto;
|
|
border: 0;
|
|
margin: 0 !important;
|
|
margin-top: 20px !important;
|
|
background-position: top center !important;
|
|
background-repeat: no-repeat !important;
|
|
background-size: contain !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-STR.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container ~ .attr-container {
|
|
margin-top: 8px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container + .attr-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-DEX.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container + .attr-container + .attr-container {
|
|
/* constitution is abbrivated CNS instead of CON
|
|
because windows has that term reserved */
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-CNS.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container + .attr-container + .attr-container + .attr-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-INT.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container + .attr-container + .attr-container + .attr-container + .attr-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-WIS.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container + .attr-container + .attr-container + .attr-container + .attr-container + .attr-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/ability-CHA.svg");
|
|
margin-bottom: 20px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container button {
|
|
font-size: 6.5px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container .attr {
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container .attr-mod {
|
|
border: none;
|
|
background: transparent;
|
|
margin-top: -10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attr-container .attr-mod .baseattr,
|
|
.licensecontainer .container:not(.npc) .attr-container .attr-mod .attr-flag,
|
|
.licensecontainer .container:not(.npc) .attr-container .attr-mod .finalattr {
|
|
font-size: 18px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/inspiration.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
height: 40px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container + .insp-prof-container {
|
|
background: url("https://app.roll20.net/images/dndstyling/proficency-bonus.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
height: 50px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container .value,
|
|
.licensecontainer .container:not(.npc) .insp-prof-container .label {
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container .value {
|
|
margin-top: 2px;
|
|
margin-left: 3px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container .label {
|
|
width: calc(100% - 42px);
|
|
margin-left: 0;
|
|
margin-top: 5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container + .insp-prof-container .value {
|
|
margin-top: 8px;
|
|
margin-left: 6px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .insp-prof-container + .insp-prof-container .label {
|
|
width: calc(100% - 42px);
|
|
margin-left: -3px;
|
|
margin-top: 10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .saving-throw-container,
|
|
.licensecontainer .container:not(.npc) .skills-container {
|
|
position: relative;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding: 5px 5px 15px;
|
|
border: 10px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/saves.svg");
|
|
border-image-slice: 65 10;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
}
|
|
.licensecontainer .container:not(.npc) .saving-throw-container .label,
|
|
.licensecontainer .container:not(.npc) .skills-container .label {
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: -5px;
|
|
margin: 0 calc(-5px);
|
|
}
|
|
.licensecontainer .container:not(.npc) .core .col2 .vitals {
|
|
position: relative;
|
|
z-index: 9999;
|
|
}
|
|
.licensecontainer .container:not(.npc) .core .col2 .vitals .vitals-stats {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.licensecontainer .container:not(.npc) .core .col2 .vitals:after {
|
|
content: "";
|
|
border: 10px solid;
|
|
border-image-source: url(https://app.roll20.net/images/dndstyling/vitals.svg);
|
|
border-image-slice: 10 fill;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container,
|
|
.licensecontainer .container:not(.npc) .hdice-dsaves-container {
|
|
width: 100% !important;
|
|
margin: 0;
|
|
padding: 10px 8px 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hdice-dsaves-container {
|
|
padding: 0 8px 10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .resources .hdice-dsaves-container {
|
|
padding: 0 0 10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .ac {
|
|
background: url("https://app.roll20.net/images/dndstyling/AC.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
min-height: 75px !important;
|
|
border: 0 !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .ac input {
|
|
margin-top: 10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .ac .pc-ac {
|
|
width: 50% !important;
|
|
margin: 0 auto;
|
|
line-height: 8px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .init,
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .speed {
|
|
background: url("https://app.roll20.net/images/dndstyling/vital-box.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
border: 0 !important;
|
|
min-height: 75px !important;
|
|
position: relative;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .init button,
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .speed .label,
|
|
.licensecontainer .container:not(.npc) .hp .label {
|
|
position: absolute;
|
|
bottom: 5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .init span,
|
|
.licensecontainer .container:not(.npc) .ac-init-speed-container .speed input {
|
|
display: inline-block;
|
|
margin-top: 15px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hp {
|
|
position: relative;
|
|
background: url("https://app.roll20.net/images/dndstyling/vital-top.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
border: 0 !important;
|
|
width: calc(100% - 16px);
|
|
height: 95px;
|
|
margin: 5px 8px 0;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hp .top {
|
|
padding-top: 3px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hp .top span {
|
|
margin-left: 10px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hp .top input {
|
|
width: 132px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .hp + .hp {
|
|
background: url("https://app.roll20.net/images/dndstyling/vital-bottom.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
min-height: 70px;
|
|
margin: 0 8px 5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .subcontainer {
|
|
--topNotchSize: 7px;
|
|
--bottomNotchSize: 6px;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
width: 49%;
|
|
background: #fff;
|
|
border: 5px solid black;
|
|
border-top-width: 2px;
|
|
border-bottom-width: 2px;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/vital-box.svg");
|
|
border-image-slice: 15 15;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
-webkit-clip-path: polygon(0% var(--topNotchSize), var(--topNotchSize) 0%, calc(100% - var(--topNotchSize)) 0%, 100% var(--topNotchSize), 100% calc(100% - var(--bottomNotchSize)), calc(100% - var(--bottomNotchSize)) 100%, var(--bottomNotchSize) 100%, 0% calc(100% - var(--bottomNotchSize)));
|
|
clip-path: polygon(0% var(--topNotchSize), var(--topNotchSize) 0%, calc(100% - var(--topNotchSize)) 0%, 100% var(--topNotchSize), 100% calc(100% - var(--bottomNotchSize)), calc(100% - var(--bottomNotchSize)) 100%, var(--bottomNotchSize) 100%, 0% calc(100% - var(--bottomNotchSize)));
|
|
}
|
|
.licensecontainer .container:not(.npc) .subcontainer .row-container input[type=checkbox] {
|
|
margin: 0px -2px;
|
|
border-radius: 50%;
|
|
border: 2px solid #000 !important;
|
|
width: 1em;
|
|
height: 1em;
|
|
background-color: white;
|
|
vertical-align: middle;
|
|
-webkit-appearance: none;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
.licensecontainer .container:not(.npc) .subcontainer .row-container input[type=checkbox]:checked {
|
|
background-color: #EC2127;
|
|
}
|
|
.licensecontainer .container:not(.npc) .subcontainer .top input {
|
|
width: 60px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .attacks,
|
|
.licensecontainer .container:not(.npc) .proficiencies,
|
|
.licensecontainer .container:not(.npc) .traits,
|
|
.licensecontainer .container:not(.npc) .equipment,
|
|
.licensecontainer .container:not(.npc) .exhaustion {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
border: 5px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/5eBorder.svg");
|
|
border-image-slice: 6% 8% 12% 8%;
|
|
border-image-width: 16px 19px 35px 19px;
|
|
border-image-repeat: round;
|
|
}
|
|
.licensecontainer .container:not(.npc) .display button * {
|
|
min-width: 15%;
|
|
max-width: 33%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .col1 > .insp-prof-container {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/perception.svg");
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
.licensecontainer .container:not(.npc) .col1 > .insp-prof-container .value {
|
|
margin-top: 3px;
|
|
margin-left: 5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .col1 > .insp-prof-container .label {
|
|
position: absolute;
|
|
width: calc(33% - 42px) !important;
|
|
margin-left: 0;
|
|
margin-top: 5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .tool_proficiencies {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
border: 5px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/proficiency-block.svg");
|
|
border-image-slice: 5 10;
|
|
border-image-width: 15px;
|
|
border-image-repeat: round;
|
|
}
|
|
.licensecontainer .container:not(.npc) .proficiencies .display button * {
|
|
min-width: 33%;
|
|
max-width: 50%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf {
|
|
position: relative;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
min-height: 6em;
|
|
margin-top: 5px;
|
|
border: 15px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/vital-top.svg");
|
|
border-image-slice: 35 15;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf + .pibf {
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/vital-mid.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf + .pibf + .pibf + .pibf {
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/vital-bottom.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf .display {
|
|
padding: 0;
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf .options-flag,
|
|
.licensecontainer .container:not(.npc) .pibf .options-flag ~ span {
|
|
top: -5px;
|
|
right: -10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .pibf .label {
|
|
position: absolute;
|
|
top: unset !important;
|
|
right: unset !important;
|
|
bottom: -10px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/copper.svg");
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
border: none;
|
|
border-radius: 0;
|
|
margin: 5px 0;
|
|
background-color: transparent;
|
|
position: relative;
|
|
left: -9px;
|
|
height: 30px;
|
|
width: 75px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin .label {
|
|
position: relative;
|
|
margin: 0;
|
|
top: 5px;
|
|
left: 22px;
|
|
width: 15px;
|
|
height: 20px;
|
|
text-indent: -40px;
|
|
font-size: 6px;
|
|
line-height: 20px;
|
|
vertical-align: middle;
|
|
background-image: url("https://app.roll20.net/images/dndstyling/copper.png");
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin input {
|
|
position: relative;
|
|
top: 5px;
|
|
left: 17px;
|
|
width: 35px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/silver.svg");
|
|
margin-top: 0;
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin .label {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/silver.png");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/electrum.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin .label {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/electrum.png");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin + .coin {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/gold.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin + .coin .label {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/gold.png");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin + .coin + .coin {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/platnum.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .coin + .coin + .coin + .coin + .coin .label {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/platnum.png");
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .weighttotal {
|
|
left: 4px;
|
|
top: 185px;
|
|
width: 68px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .bio .textbox {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
border: 5px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/5eBorder.svg");
|
|
border-image-slice: 32 25;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
text-align: center;
|
|
}
|
|
.licensecontainer .container:not(.npc) .bio .col1 .textbox + .textbox textarea {
|
|
min-height: 640px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .bio .textbox textarea {
|
|
margin: 0 auto;
|
|
text-align: left;
|
|
width: calc(100% - 20px);
|
|
background: transparent;
|
|
}
|
|
.licensecontainer .container:not(.npc) .spell-level {
|
|
background: url("https://app.roll20.net/images/dndstyling/SpellLevel.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
height: 50px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .col1 .spell-level:nth-child(1) {
|
|
background-image: url("https://app.roll20.net/images/dndstyling/Cantrip.svg");
|
|
}
|
|
.licensecontainer .container:not(.npc) .spell-level .level,
|
|
.licensecontainer .container:not(.npc) .spell-level .level::before,
|
|
.licensecontainer .container:not(.npc) .spell-level .level::after,
|
|
.licensecontainer .container:not(.npc) .spell-level .total,
|
|
.licensecontainer .container:not(.npc) .spell-level .expended,
|
|
.licensecontainer .container:not(.npc) .spell-level .cantrips {
|
|
border: 0;
|
|
background: transparent;
|
|
position: relative;
|
|
top: 11px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .spell-level .level span {
|
|
left: 7px;
|
|
}
|
|
.licensecontainer .container:not(.npc) textarea[name=attr_global_save_rollstring] {
|
|
width: 100px !important;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc .npc_options-flag:checked ~ .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .container {
|
|
width: unset;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc {
|
|
-webkit-box-align: start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
display: -webkit-inline-box;
|
|
display: -ms-inline-flexbox;
|
|
display: inline-flex;
|
|
-ms-flex-flow: wrap;
|
|
flex-flow: wrap;
|
|
margin-bottom: 2%;
|
|
min-width: 100%;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .spell-labels [data-i18n=slots_total-u],
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .spell-labels [data-i18n=slots_remaining-u],
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .header {
|
|
display: none;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc {
|
|
top: unset;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .body {
|
|
display: -webkit-inline-box;
|
|
display: -ms-inline-flexbox;
|
|
display: inline-flex;
|
|
-ms-flex-flow: wrap;
|
|
flex-flow: wrap;
|
|
margin-top: 0px;
|
|
max-width: 95%;
|
|
width: -webkit-fit-content;
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] + .npcspellcastingflag[value="1"] ~ .pc .page.spells .body .col {
|
|
background: #fff;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
margin-right: 0.5em;
|
|
max-width: 32%;
|
|
min-width: 250px;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc .actions,
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc .stat-block {
|
|
background: #fff;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-right: 2em;
|
|
max-width: 30%;
|
|
min-width: 385px;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc .actions button[type=roll] {
|
|
white-space: normal;
|
|
}
|
|
.licensecontainer .npc_toggle[value="1"] ~ .npc .actions {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
/* CHARACTERMANCER */
|
|
div.charmancer .logos {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
text-align: center;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-flow: column;
|
|
flex-flow: column;
|
|
margin-bottom: 1em;
|
|
}
|
|
div.charmancer .charmancer-logo {
|
|
margin: 0 auto;
|
|
background: url("https://s3.amazonaws.com/files.d20.io/images/175804954/NpVwmiRV0kYn9jOSipyXyA/med.png?1604618290");
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 70%;
|
|
height: 5em;
|
|
}
|
|
div.charmancer .compendium-logo {
|
|
margin: 0 auto;
|
|
background: url("https://app.roll20.net/images/dndstyling/DnDlogored.png");
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 50%;
|
|
height: 3em;
|
|
}
|
|
div.charmancer .expansions {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
margin: 1em 0;
|
|
padding: 1em;
|
|
background: #eee;
|
|
border-radius: 0.5em;
|
|
}
|
|
div.charmancer .expansions p {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
div.charmancer .meta-info-container,
|
|
div.charmancer .summary-container {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100% !important;
|
|
padding: 0.5em;
|
|
border: 10px solid black !important;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/D&D-border.png") !important;
|
|
border-image-slice: 20 32 !important;
|
|
border-image-width: auto !important;
|
|
border-image-repeat: round !important;
|
|
}
|
|
div.charmancer .info .compendium-page {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 10px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/D&D-border.png");
|
|
border-image-slice: 20 32;
|
|
border-image-width: auto;
|
|
border-image-repeat: round;
|
|
}
|
|
div.charmancer .row {
|
|
border: 0 !important;
|
|
}
|
|
div.charmancer .row + .row::before,
|
|
div.charmancer .holder .row::before,
|
|
div.charmancer .randomize-trait .row::before,
|
|
div.charmancer .randomize-traits .randomize-trait:last-child .row::after {
|
|
content: "";
|
|
margin-bottom: 1em;
|
|
display: block;
|
|
border: none;
|
|
border-top: 3px solid transparent;
|
|
border-bottom: 3px solid transparent;
|
|
border-left: 300px solid #7e2d40;
|
|
}
|
|
div.charmancer .randomize-traits .randomize-trait:last-child .row::after {
|
|
margin-bottom: 0;
|
|
margin-top: 1em;
|
|
}
|
|
div.charmancer .row .row::before {
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
div.charmancer .row div.row {
|
|
padding: 0.1em 1.5em 0.1em 0;
|
|
margin-left: 0;
|
|
}
|
|
div.charmancer .topbar {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-flow: column;
|
|
flex-flow: column;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
div.charmancer .topbar .topbar-container {
|
|
width: 100%;
|
|
border: 0;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
div.charmancer .attr-container {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
-ms-flex-flow: column-reverse;
|
|
flex-flow: column-reverse;
|
|
min-width: 15%;
|
|
display: -webkit-inline-box !important;
|
|
display: -ms-inline-flexbox !important;
|
|
display: inline-flex !important;
|
|
-ms-flex-line-pack: space-evenly;
|
|
align-content: space-evenly;
|
|
}
|
|
div.charmancer .summary:nth-child(even) {
|
|
background: #eee;
|
|
margin: 0 -0.8em 0.8em;
|
|
padding: 0.5em 0.8em;
|
|
}
|
|
|
|
/* DIALOGUE PROMPT */
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm span:not(.yes),
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm span:not(.yes) {
|
|
font-size: 1.68em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.charsheet input.licensedsheet[value="1"] ~ .compendium_warning,
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm,
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm {
|
|
position: absolute !important;
|
|
padding: 2em 0 !important;
|
|
min-height: -webkit-max-content;
|
|
min-height: -moz-max-content;
|
|
min-height: max-content;
|
|
-webkit-box-shadow: 0 0 50px #000;
|
|
box-shadow: 0 0 50px #000;
|
|
border: 2px solid #000 !important;
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm span:not(.yes),
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm span:not(.yes) {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm .yes,
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm .yes {
|
|
color: #000;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm .yes:hover + .yes,
|
|
.charsheet input.licensedsheet[value="1"] ~ .monster_confirm .yes:hover,
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm .yes:hover + .yes,
|
|
.charsheet input.licensedsheet[value="1"] ~ .mancer_confirm .yes:hover {
|
|
color: #fff;
|
|
background-color: #EC2127;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_0_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(1) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_1_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(2) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_2_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(3) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_3_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(4) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_4_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(5) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_5_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(6) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_6_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(7) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_7_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(8) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_8_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(9) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_9_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(10) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_10_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(11) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_11_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(12) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_12_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(13) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_13_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(14) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_14_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(15) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_15_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(16) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_16_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(17) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_17_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(18) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_18_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(19) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_19_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(20) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_20_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(21) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_21_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(22) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_22_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(23) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_23_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(24) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_24_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(25) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_25_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(26) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_26_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(27) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_27_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(28) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_28_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(29) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_29_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(30) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_30_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(31) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_31_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(32) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_32_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(33) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_33_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(34) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_34_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(35) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_35_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(36) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_36_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(37) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_37_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(38) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_38_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(39) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_39_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(40) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_40_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(41) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_41_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(42) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_42_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(43) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_43_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(44) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_44_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(45) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_45_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(46) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_46_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(47) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_47_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(48) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_48_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(49) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_49_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(50) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_50_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(51) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_51_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(52) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_52_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(53) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_53_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(54) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_54_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(55) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_55_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(56) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_56_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(57) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_57_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(58) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_58_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(59) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_59_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(60) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_60_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(61) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_61_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(62) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_62_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(63) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_63_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(64) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_64_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(65) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_65_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(66) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_66_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(67) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_67_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(68) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_68_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(69) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_69_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(70) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_70_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(71) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_71_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(72) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_72_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(73) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_73_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(74) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_74_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(75) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_75_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(76) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_76_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(77) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_77_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(78) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_78_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(79) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_79_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(80) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_80_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(81) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_81_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(82) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_82_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(83) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_83_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(84) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_84_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(85) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_85_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(86) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_86_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(87) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_87_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(88) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_88_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(89) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_89_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(90) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_90_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(91) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_91_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(92) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_92_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(93) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_93_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(94) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_94_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(95) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_95_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(96) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_96_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(97) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_97_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(98) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_98_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(99) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_99_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(100) .toggle_repeating_npcaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_0_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_1_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_2_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_3_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_4_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_5_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_6_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_7_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_8_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_9_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_10_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_11_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_12_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_13_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_14_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_15_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_16_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_17_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_18_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_19_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_20_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_21_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_22_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_23_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_24_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_25_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_26_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_27_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_28_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_29_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_30_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_31_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_32_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_33_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_34_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_35_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_36_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_37_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_38_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_39_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_40_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_41_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_42_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_43_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_44_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_45_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_46_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_47_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_48_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_49_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_50_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_51_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_52_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_53_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_54_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_55_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_56_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_57_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_58_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_59_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_60_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_61_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_62_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_63_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_64_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_65_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_66_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_67_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_68_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_69_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_70_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_71_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_72_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_73_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_74_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_75_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_76_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_77_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_78_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_79_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_80_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_81_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_82_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_83_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_84_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_85_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_86_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_87_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_88_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_89_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_90_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_91_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_92_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_93_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_94_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_95_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_96_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_97_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_98_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction_edit_99_] ~ .actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_0_] ~ .bonusactions .repcontainer > .repitem:nth-child(1) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_1_] ~ .bonusactions .repcontainer > .repitem:nth-child(2) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_2_] ~ .bonusactions .repcontainer > .repitem:nth-child(3) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_3_] ~ .bonusactions .repcontainer > .repitem:nth-child(4) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_4_] ~ .bonusactions .repcontainer > .repitem:nth-child(5) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_5_] ~ .bonusactions .repcontainer > .repitem:nth-child(6) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_6_] ~ .bonusactions .repcontainer > .repitem:nth-child(7) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_7_] ~ .bonusactions .repcontainer > .repitem:nth-child(8) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_8_] ~ .bonusactions .repcontainer > .repitem:nth-child(9) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_9_] ~ .bonusactions .repcontainer > .repitem:nth-child(10) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_10_] ~ .bonusactions .repcontainer > .repitem:nth-child(11) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_11_] ~ .bonusactions .repcontainer > .repitem:nth-child(12) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_12_] ~ .bonusactions .repcontainer > .repitem:nth-child(13) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_13_] ~ .bonusactions .repcontainer > .repitem:nth-child(14) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_14_] ~ .bonusactions .repcontainer > .repitem:nth-child(15) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_15_] ~ .bonusactions .repcontainer > .repitem:nth-child(16) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_16_] ~ .bonusactions .repcontainer > .repitem:nth-child(17) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_17_] ~ .bonusactions .repcontainer > .repitem:nth-child(18) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_18_] ~ .bonusactions .repcontainer > .repitem:nth-child(19) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_19_] ~ .bonusactions .repcontainer > .repitem:nth-child(20) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_20_] ~ .bonusactions .repcontainer > .repitem:nth-child(21) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_21_] ~ .bonusactions .repcontainer > .repitem:nth-child(22) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_22_] ~ .bonusactions .repcontainer > .repitem:nth-child(23) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_23_] ~ .bonusactions .repcontainer > .repitem:nth-child(24) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_24_] ~ .bonusactions .repcontainer > .repitem:nth-child(25) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_25_] ~ .bonusactions .repcontainer > .repitem:nth-child(26) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_26_] ~ .bonusactions .repcontainer > .repitem:nth-child(27) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_27_] ~ .bonusactions .repcontainer > .repitem:nth-child(28) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_28_] ~ .bonusactions .repcontainer > .repitem:nth-child(29) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_29_] ~ .bonusactions .repcontainer > .repitem:nth-child(30) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_30_] ~ .bonusactions .repcontainer > .repitem:nth-child(31) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_31_] ~ .bonusactions .repcontainer > .repitem:nth-child(32) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_32_] ~ .bonusactions .repcontainer > .repitem:nth-child(33) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_33_] ~ .bonusactions .repcontainer > .repitem:nth-child(34) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_34_] ~ .bonusactions .repcontainer > .repitem:nth-child(35) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_35_] ~ .bonusactions .repcontainer > .repitem:nth-child(36) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_36_] ~ .bonusactions .repcontainer > .repitem:nth-child(37) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_37_] ~ .bonusactions .repcontainer > .repitem:nth-child(38) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_38_] ~ .bonusactions .repcontainer > .repitem:nth-child(39) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_39_] ~ .bonusactions .repcontainer > .repitem:nth-child(40) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_40_] ~ .bonusactions .repcontainer > .repitem:nth-child(41) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_41_] ~ .bonusactions .repcontainer > .repitem:nth-child(42) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_42_] ~ .bonusactions .repcontainer > .repitem:nth-child(43) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_43_] ~ .bonusactions .repcontainer > .repitem:nth-child(44) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_44_] ~ .bonusactions .repcontainer > .repitem:nth-child(45) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_45_] ~ .bonusactions .repcontainer > .repitem:nth-child(46) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_46_] ~ .bonusactions .repcontainer > .repitem:nth-child(47) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_47_] ~ .bonusactions .repcontainer > .repitem:nth-child(48) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_48_] ~ .bonusactions .repcontainer > .repitem:nth-child(49) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_49_] ~ .bonusactions .repcontainer > .repitem:nth-child(50) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_50_] ~ .bonusactions .repcontainer > .repitem:nth-child(51) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_51_] ~ .bonusactions .repcontainer > .repitem:nth-child(52) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_52_] ~ .bonusactions .repcontainer > .repitem:nth-child(53) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_53_] ~ .bonusactions .repcontainer > .repitem:nth-child(54) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_54_] ~ .bonusactions .repcontainer > .repitem:nth-child(55) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_55_] ~ .bonusactions .repcontainer > .repitem:nth-child(56) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_56_] ~ .bonusactions .repcontainer > .repitem:nth-child(57) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_57_] ~ .bonusactions .repcontainer > .repitem:nth-child(58) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_58_] ~ .bonusactions .repcontainer > .repitem:nth-child(59) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_59_] ~ .bonusactions .repcontainer > .repitem:nth-child(60) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_60_] ~ .bonusactions .repcontainer > .repitem:nth-child(61) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_61_] ~ .bonusactions .repcontainer > .repitem:nth-child(62) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_62_] ~ .bonusactions .repcontainer > .repitem:nth-child(63) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_63_] ~ .bonusactions .repcontainer > .repitem:nth-child(64) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_64_] ~ .bonusactions .repcontainer > .repitem:nth-child(65) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_65_] ~ .bonusactions .repcontainer > .repitem:nth-child(66) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_66_] ~ .bonusactions .repcontainer > .repitem:nth-child(67) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_67_] ~ .bonusactions .repcontainer > .repitem:nth-child(68) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_68_] ~ .bonusactions .repcontainer > .repitem:nth-child(69) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_69_] ~ .bonusactions .repcontainer > .repitem:nth-child(70) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_70_] ~ .bonusactions .repcontainer > .repitem:nth-child(71) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_71_] ~ .bonusactions .repcontainer > .repitem:nth-child(72) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_72_] ~ .bonusactions .repcontainer > .repitem:nth-child(73) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_73_] ~ .bonusactions .repcontainer > .repitem:nth-child(74) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_74_] ~ .bonusactions .repcontainer > .repitem:nth-child(75) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_75_] ~ .bonusactions .repcontainer > .repitem:nth-child(76) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_76_] ~ .bonusactions .repcontainer > .repitem:nth-child(77) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_77_] ~ .bonusactions .repcontainer > .repitem:nth-child(78) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_78_] ~ .bonusactions .repcontainer > .repitem:nth-child(79) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_79_] ~ .bonusactions .repcontainer > .repitem:nth-child(80) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_80_] ~ .bonusactions .repcontainer > .repitem:nth-child(81) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_81_] ~ .bonusactions .repcontainer > .repitem:nth-child(82) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_82_] ~ .bonusactions .repcontainer > .repitem:nth-child(83) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_83_] ~ .bonusactions .repcontainer > .repitem:nth-child(84) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_84_] ~ .bonusactions .repcontainer > .repitem:nth-child(85) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_85_] ~ .bonusactions .repcontainer > .repitem:nth-child(86) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_86_] ~ .bonusactions .repcontainer > .repitem:nth-child(87) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_87_] ~ .bonusactions .repcontainer > .repitem:nth-child(88) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_88_] ~ .bonusactions .repcontainer > .repitem:nth-child(89) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_89_] ~ .bonusactions .repcontainer > .repitem:nth-child(90) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_90_] ~ .bonusactions .repcontainer > .repitem:nth-child(91) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_91_] ~ .bonusactions .repcontainer > .repitem:nth-child(92) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_92_] ~ .bonusactions .repcontainer > .repitem:nth-child(93) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_93_] ~ .bonusactions .repcontainer > .repitem:nth-child(94) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_94_] ~ .bonusactions .repcontainer > .repitem:nth-child(95) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_95_] ~ .bonusactions .repcontainer > .repitem:nth-child(96) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_96_] ~ .bonusactions .repcontainer > .repitem:nth-child(97) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_97_] ~ .bonusactions .repcontainer > .repitem:nth-child(98) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_98_] ~ .bonusactions .repcontainer > .repitem:nth-child(99) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_99_] ~ .bonusactions .repcontainer > .repitem:nth-child(100) .toggle_repeating_npcbonusaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_0_] ~ .bonusactions .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_1_] ~ .bonusactions .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_2_] ~ .bonusactions .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_3_] ~ .bonusactions .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_4_] ~ .bonusactions .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_5_] ~ .bonusactions .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_6_] ~ .bonusactions .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_7_] ~ .bonusactions .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_8_] ~ .bonusactions .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_9_] ~ .bonusactions .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_10_] ~ .bonusactions .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_11_] ~ .bonusactions .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_12_] ~ .bonusactions .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_13_] ~ .bonusactions .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_14_] ~ .bonusactions .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_15_] ~ .bonusactions .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_16_] ~ .bonusactions .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_17_] ~ .bonusactions .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_18_] ~ .bonusactions .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_19_] ~ .bonusactions .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_20_] ~ .bonusactions .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_21_] ~ .bonusactions .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_22_] ~ .bonusactions .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_23_] ~ .bonusactions .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_24_] ~ .bonusactions .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_25_] ~ .bonusactions .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_26_] ~ .bonusactions .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_27_] ~ .bonusactions .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_28_] ~ .bonusactions .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_29_] ~ .bonusactions .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_30_] ~ .bonusactions .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_31_] ~ .bonusactions .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_32_] ~ .bonusactions .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_33_] ~ .bonusactions .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_34_] ~ .bonusactions .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_35_] ~ .bonusactions .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_36_] ~ .bonusactions .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_37_] ~ .bonusactions .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_38_] ~ .bonusactions .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_39_] ~ .bonusactions .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_40_] ~ .bonusactions .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_41_] ~ .bonusactions .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_42_] ~ .bonusactions .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_43_] ~ .bonusactions .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_44_] ~ .bonusactions .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_45_] ~ .bonusactions .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_46_] ~ .bonusactions .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_47_] ~ .bonusactions .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_48_] ~ .bonusactions .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_49_] ~ .bonusactions .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_50_] ~ .bonusactions .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_51_] ~ .bonusactions .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_52_] ~ .bonusactions .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_53_] ~ .bonusactions .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_54_] ~ .bonusactions .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_55_] ~ .bonusactions .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_56_] ~ .bonusactions .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_57_] ~ .bonusactions .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_58_] ~ .bonusactions .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_59_] ~ .bonusactions .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_60_] ~ .bonusactions .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_61_] ~ .bonusactions .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_62_] ~ .bonusactions .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_63_] ~ .bonusactions .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_64_] ~ .bonusactions .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_65_] ~ .bonusactions .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_66_] ~ .bonusactions .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_67_] ~ .bonusactions .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_68_] ~ .bonusactions .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_69_] ~ .bonusactions .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_70_] ~ .bonusactions .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_71_] ~ .bonusactions .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_72_] ~ .bonusactions .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_73_] ~ .bonusactions .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_74_] ~ .bonusactions .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_75_] ~ .bonusactions .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_76_] ~ .bonusactions .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_77_] ~ .bonusactions .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_78_] ~ .bonusactions .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_79_] ~ .bonusactions .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_80_] ~ .bonusactions .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_81_] ~ .bonusactions .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_82_] ~ .bonusactions .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_83_] ~ .bonusactions .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_84_] ~ .bonusactions .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_85_] ~ .bonusactions .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_86_] ~ .bonusactions .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_87_] ~ .bonusactions .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_88_] ~ .bonusactions .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_89_] ~ .bonusactions .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_90_] ~ .bonusactions .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_91_] ~ .bonusactions .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_92_] ~ .bonusactions .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_93_] ~ .bonusactions .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_94_] ~ .bonusactions .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_95_] ~ .bonusactions .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_96_] ~ .bonusactions .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_97_] ~ .bonusactions .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_98_] ~ .bonusactions .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcbonusaction_edit_99_] ~ .bonusactions .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_0_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(1) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_1_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(2) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_2_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(3) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_3_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(4) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_4_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(5) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_5_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(6) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_6_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(7) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_7_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(8) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_8_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(9) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_9_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(10) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_10_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(11) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_11_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(12) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_12_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(13) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_13_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(14) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_14_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(15) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_15_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(16) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_16_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(17) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_17_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(18) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_18_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(19) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_19_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(20) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_20_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(21) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_21_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(22) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_22_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(23) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_23_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(24) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_24_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(25) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_25_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(26) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_26_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(27) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_27_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(28) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_28_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(29) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_29_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(30) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_30_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(31) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_31_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(32) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_32_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(33) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_33_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(34) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_34_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(35) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_35_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(36) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_36_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(37) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_37_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(38) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_38_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(39) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_39_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(40) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_40_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(41) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_41_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(42) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_42_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(43) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_43_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(44) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_44_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(45) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_45_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(46) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_46_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(47) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_47_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(48) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_48_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(49) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_49_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(50) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_50_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(51) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_51_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(52) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_52_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(53) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_53_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(54) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_54_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(55) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_55_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(56) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_56_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(57) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_57_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(58) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_58_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(59) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_59_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(60) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_60_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(61) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_61_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(62) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_62_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(63) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_63_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(64) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_64_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(65) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_65_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(66) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_66_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(67) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_67_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(68) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_68_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(69) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_69_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(70) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_70_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(71) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_71_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(72) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_72_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(73) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_73_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(74) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_74_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(75) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_75_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(76) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_76_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(77) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_77_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(78) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_78_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(79) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_79_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(80) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_80_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(81) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_81_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(82) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_82_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(83) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_83_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(84) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_84_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(85) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_85_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(86) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_86_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(87) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_87_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(88) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_88_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(89) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_89_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(90) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_90_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(91) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_91_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(92) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_92_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(93) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_93_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(94) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_94_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(95) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_95_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(96) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_96_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(97) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_97_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(98) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_98_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(99) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_99_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(100) .toggle_repeating_npctrait_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_0_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_1_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_2_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_3_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_4_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_5_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_6_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_7_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_8_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_9_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_10_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_11_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_12_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_13_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_14_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_15_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_16_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_17_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_18_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_19_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_20_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_21_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_22_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_23_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_24_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_25_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_26_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_27_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_28_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_29_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_30_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_31_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_32_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_33_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_34_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_35_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_36_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_37_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_38_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_39_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_40_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_41_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_42_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_43_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_44_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_45_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_46_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_47_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_48_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_49_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_50_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_51_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_52_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_53_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_54_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_55_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_56_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_57_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_58_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_59_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_60_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_61_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_62_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_63_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_64_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_65_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_66_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_67_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_68_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_69_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_70_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_71_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_72_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_73_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_74_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_75_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_76_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_77_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_78_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_79_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_80_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_81_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_82_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_83_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_84_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_85_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_86_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_87_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_88_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_89_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_90_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_91_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_92_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_93_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_94_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_95_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_96_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_97_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_98_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npctrait_edit_99_] ~ .stat-block .traits .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_0_] ~ .reaction .repcontainer > .repitem:nth-child(1) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_1_] ~ .reaction .repcontainer > .repitem:nth-child(2) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_2_] ~ .reaction .repcontainer > .repitem:nth-child(3) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_3_] ~ .reaction .repcontainer > .repitem:nth-child(4) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_4_] ~ .reaction .repcontainer > .repitem:nth-child(5) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_5_] ~ .reaction .repcontainer > .repitem:nth-child(6) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_6_] ~ .reaction .repcontainer > .repitem:nth-child(7) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_7_] ~ .reaction .repcontainer > .repitem:nth-child(8) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_8_] ~ .reaction .repcontainer > .repitem:nth-child(9) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_9_] ~ .reaction .repcontainer > .repitem:nth-child(10) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_10_] ~ .reaction .repcontainer > .repitem:nth-child(11) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_11_] ~ .reaction .repcontainer > .repitem:nth-child(12) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_12_] ~ .reaction .repcontainer > .repitem:nth-child(13) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_13_] ~ .reaction .repcontainer > .repitem:nth-child(14) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_14_] ~ .reaction .repcontainer > .repitem:nth-child(15) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_15_] ~ .reaction .repcontainer > .repitem:nth-child(16) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_16_] ~ .reaction .repcontainer > .repitem:nth-child(17) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_17_] ~ .reaction .repcontainer > .repitem:nth-child(18) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_18_] ~ .reaction .repcontainer > .repitem:nth-child(19) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_19_] ~ .reaction .repcontainer > .repitem:nth-child(20) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_20_] ~ .reaction .repcontainer > .repitem:nth-child(21) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_21_] ~ .reaction .repcontainer > .repitem:nth-child(22) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_22_] ~ .reaction .repcontainer > .repitem:nth-child(23) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_23_] ~ .reaction .repcontainer > .repitem:nth-child(24) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_24_] ~ .reaction .repcontainer > .repitem:nth-child(25) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_25_] ~ .reaction .repcontainer > .repitem:nth-child(26) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_26_] ~ .reaction .repcontainer > .repitem:nth-child(27) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_27_] ~ .reaction .repcontainer > .repitem:nth-child(28) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_28_] ~ .reaction .repcontainer > .repitem:nth-child(29) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_29_] ~ .reaction .repcontainer > .repitem:nth-child(30) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_30_] ~ .reaction .repcontainer > .repitem:nth-child(31) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_31_] ~ .reaction .repcontainer > .repitem:nth-child(32) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_32_] ~ .reaction .repcontainer > .repitem:nth-child(33) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_33_] ~ .reaction .repcontainer > .repitem:nth-child(34) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_34_] ~ .reaction .repcontainer > .repitem:nth-child(35) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_35_] ~ .reaction .repcontainer > .repitem:nth-child(36) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_36_] ~ .reaction .repcontainer > .repitem:nth-child(37) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_37_] ~ .reaction .repcontainer > .repitem:nth-child(38) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_38_] ~ .reaction .repcontainer > .repitem:nth-child(39) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_39_] ~ .reaction .repcontainer > .repitem:nth-child(40) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_40_] ~ .reaction .repcontainer > .repitem:nth-child(41) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_41_] ~ .reaction .repcontainer > .repitem:nth-child(42) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_42_] ~ .reaction .repcontainer > .repitem:nth-child(43) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_43_] ~ .reaction .repcontainer > .repitem:nth-child(44) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_44_] ~ .reaction .repcontainer > .repitem:nth-child(45) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_45_] ~ .reaction .repcontainer > .repitem:nth-child(46) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_46_] ~ .reaction .repcontainer > .repitem:nth-child(47) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_47_] ~ .reaction .repcontainer > .repitem:nth-child(48) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_48_] ~ .reaction .repcontainer > .repitem:nth-child(49) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_49_] ~ .reaction .repcontainer > .repitem:nth-child(50) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_50_] ~ .reaction .repcontainer > .repitem:nth-child(51) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_51_] ~ .reaction .repcontainer > .repitem:nth-child(52) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_52_] ~ .reaction .repcontainer > .repitem:nth-child(53) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_53_] ~ .reaction .repcontainer > .repitem:nth-child(54) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_54_] ~ .reaction .repcontainer > .repitem:nth-child(55) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_55_] ~ .reaction .repcontainer > .repitem:nth-child(56) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_56_] ~ .reaction .repcontainer > .repitem:nth-child(57) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_57_] ~ .reaction .repcontainer > .repitem:nth-child(58) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_58_] ~ .reaction .repcontainer > .repitem:nth-child(59) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_59_] ~ .reaction .repcontainer > .repitem:nth-child(60) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_60_] ~ .reaction .repcontainer > .repitem:nth-child(61) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_61_] ~ .reaction .repcontainer > .repitem:nth-child(62) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_62_] ~ .reaction .repcontainer > .repitem:nth-child(63) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_63_] ~ .reaction .repcontainer > .repitem:nth-child(64) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_64_] ~ .reaction .repcontainer > .repitem:nth-child(65) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_65_] ~ .reaction .repcontainer > .repitem:nth-child(66) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_66_] ~ .reaction .repcontainer > .repitem:nth-child(67) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_67_] ~ .reaction .repcontainer > .repitem:nth-child(68) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_68_] ~ .reaction .repcontainer > .repitem:nth-child(69) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_69_] ~ .reaction .repcontainer > .repitem:nth-child(70) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_70_] ~ .reaction .repcontainer > .repitem:nth-child(71) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_71_] ~ .reaction .repcontainer > .repitem:nth-child(72) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_72_] ~ .reaction .repcontainer > .repitem:nth-child(73) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_73_] ~ .reaction .repcontainer > .repitem:nth-child(74) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_74_] ~ .reaction .repcontainer > .repitem:nth-child(75) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_75_] ~ .reaction .repcontainer > .repitem:nth-child(76) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_76_] ~ .reaction .repcontainer > .repitem:nth-child(77) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_77_] ~ .reaction .repcontainer > .repitem:nth-child(78) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_78_] ~ .reaction .repcontainer > .repitem:nth-child(79) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_79_] ~ .reaction .repcontainer > .repitem:nth-child(80) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_80_] ~ .reaction .repcontainer > .repitem:nth-child(81) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_81_] ~ .reaction .repcontainer > .repitem:nth-child(82) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_82_] ~ .reaction .repcontainer > .repitem:nth-child(83) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_83_] ~ .reaction .repcontainer > .repitem:nth-child(84) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_84_] ~ .reaction .repcontainer > .repitem:nth-child(85) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_85_] ~ .reaction .repcontainer > .repitem:nth-child(86) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_86_] ~ .reaction .repcontainer > .repitem:nth-child(87) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_87_] ~ .reaction .repcontainer > .repitem:nth-child(88) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_88_] ~ .reaction .repcontainer > .repitem:nth-child(89) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_89_] ~ .reaction .repcontainer > .repitem:nth-child(90) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_90_] ~ .reaction .repcontainer > .repitem:nth-child(91) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_91_] ~ .reaction .repcontainer > .repitem:nth-child(92) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_92_] ~ .reaction .repcontainer > .repitem:nth-child(93) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_93_] ~ .reaction .repcontainer > .repitem:nth-child(94) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_94_] ~ .reaction .repcontainer > .repitem:nth-child(95) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_95_] ~ .reaction .repcontainer > .repitem:nth-child(96) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_96_] ~ .reaction .repcontainer > .repitem:nth-child(97) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_97_] ~ .reaction .repcontainer > .repitem:nth-child(98) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_98_] ~ .reaction .repcontainer > .repitem:nth-child(99) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_99_] ~ .reaction .repcontainer > .repitem:nth-child(100) .toggle_repeating_npcreaction_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_0_] ~ .reaction .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_1_] ~ .reaction .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_2_] ~ .reaction .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_3_] ~ .reaction .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_4_] ~ .reaction .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_5_] ~ .reaction .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_6_] ~ .reaction .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_7_] ~ .reaction .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_8_] ~ .reaction .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_9_] ~ .reaction .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_10_] ~ .reaction .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_11_] ~ .reaction .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_12_] ~ .reaction .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_13_] ~ .reaction .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_14_] ~ .reaction .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_15_] ~ .reaction .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_16_] ~ .reaction .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_17_] ~ .reaction .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_18_] ~ .reaction .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_19_] ~ .reaction .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_20_] ~ .reaction .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_21_] ~ .reaction .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_22_] ~ .reaction .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_23_] ~ .reaction .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_24_] ~ .reaction .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_25_] ~ .reaction .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_26_] ~ .reaction .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_27_] ~ .reaction .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_28_] ~ .reaction .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_29_] ~ .reaction .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_30_] ~ .reaction .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_31_] ~ .reaction .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_32_] ~ .reaction .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_33_] ~ .reaction .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_34_] ~ .reaction .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_35_] ~ .reaction .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_36_] ~ .reaction .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_37_] ~ .reaction .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_38_] ~ .reaction .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_39_] ~ .reaction .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_40_] ~ .reaction .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_41_] ~ .reaction .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_42_] ~ .reaction .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_43_] ~ .reaction .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_44_] ~ .reaction .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_45_] ~ .reaction .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_46_] ~ .reaction .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_47_] ~ .reaction .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_48_] ~ .reaction .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_49_] ~ .reaction .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_50_] ~ .reaction .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_51_] ~ .reaction .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_52_] ~ .reaction .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_53_] ~ .reaction .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_54_] ~ .reaction .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_55_] ~ .reaction .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_56_] ~ .reaction .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_57_] ~ .reaction .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_58_] ~ .reaction .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_59_] ~ .reaction .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_60_] ~ .reaction .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_61_] ~ .reaction .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_62_] ~ .reaction .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_63_] ~ .reaction .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_64_] ~ .reaction .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_65_] ~ .reaction .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_66_] ~ .reaction .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_67_] ~ .reaction .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_68_] ~ .reaction .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_69_] ~ .reaction .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_70_] ~ .reaction .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_71_] ~ .reaction .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_72_] ~ .reaction .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_73_] ~ .reaction .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_74_] ~ .reaction .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_75_] ~ .reaction .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_76_] ~ .reaction .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_77_] ~ .reaction .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_78_] ~ .reaction .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_79_] ~ .reaction .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_80_] ~ .reaction .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_81_] ~ .reaction .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_82_] ~ .reaction .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_83_] ~ .reaction .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_84_] ~ .reaction .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_85_] ~ .reaction .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_86_] ~ .reaction .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_87_] ~ .reaction .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_88_] ~ .reaction .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_89_] ~ .reaction .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_90_] ~ .reaction .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_91_] ~ .reaction .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_92_] ~ .reaction .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_93_] ~ .reaction .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_94_] ~ .reaction .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_95_] ~ .reaction .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_96_] ~ .reaction .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_97_] ~ .reaction .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_98_] ~ .reaction .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcreaction_edit_99_] ~ .reaction .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_0_] ~ .legendary .repcontainer > .repitem:nth-child(1) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_1_] ~ .legendary .repcontainer > .repitem:nth-child(2) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_2_] ~ .legendary .repcontainer > .repitem:nth-child(3) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_3_] ~ .legendary .repcontainer > .repitem:nth-child(4) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_4_] ~ .legendary .repcontainer > .repitem:nth-child(5) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_5_] ~ .legendary .repcontainer > .repitem:nth-child(6) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_6_] ~ .legendary .repcontainer > .repitem:nth-child(7) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_7_] ~ .legendary .repcontainer > .repitem:nth-child(8) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_8_] ~ .legendary .repcontainer > .repitem:nth-child(9) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_9_] ~ .legendary .repcontainer > .repitem:nth-child(10) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_10_] ~ .legendary .repcontainer > .repitem:nth-child(11) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_11_] ~ .legendary .repcontainer > .repitem:nth-child(12) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_12_] ~ .legendary .repcontainer > .repitem:nth-child(13) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_13_] ~ .legendary .repcontainer > .repitem:nth-child(14) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_14_] ~ .legendary .repcontainer > .repitem:nth-child(15) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_15_] ~ .legendary .repcontainer > .repitem:nth-child(16) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_16_] ~ .legendary .repcontainer > .repitem:nth-child(17) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_17_] ~ .legendary .repcontainer > .repitem:nth-child(18) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_18_] ~ .legendary .repcontainer > .repitem:nth-child(19) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_19_] ~ .legendary .repcontainer > .repitem:nth-child(20) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_20_] ~ .legendary .repcontainer > .repitem:nth-child(21) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_21_] ~ .legendary .repcontainer > .repitem:nth-child(22) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_22_] ~ .legendary .repcontainer > .repitem:nth-child(23) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_23_] ~ .legendary .repcontainer > .repitem:nth-child(24) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_24_] ~ .legendary .repcontainer > .repitem:nth-child(25) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_25_] ~ .legendary .repcontainer > .repitem:nth-child(26) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_26_] ~ .legendary .repcontainer > .repitem:nth-child(27) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_27_] ~ .legendary .repcontainer > .repitem:nth-child(28) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_28_] ~ .legendary .repcontainer > .repitem:nth-child(29) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_29_] ~ .legendary .repcontainer > .repitem:nth-child(30) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_30_] ~ .legendary .repcontainer > .repitem:nth-child(31) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_31_] ~ .legendary .repcontainer > .repitem:nth-child(32) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_32_] ~ .legendary .repcontainer > .repitem:nth-child(33) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_33_] ~ .legendary .repcontainer > .repitem:nth-child(34) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_34_] ~ .legendary .repcontainer > .repitem:nth-child(35) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_35_] ~ .legendary .repcontainer > .repitem:nth-child(36) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_36_] ~ .legendary .repcontainer > .repitem:nth-child(37) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_37_] ~ .legendary .repcontainer > .repitem:nth-child(38) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_38_] ~ .legendary .repcontainer > .repitem:nth-child(39) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_39_] ~ .legendary .repcontainer > .repitem:nth-child(40) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_40_] ~ .legendary .repcontainer > .repitem:nth-child(41) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_41_] ~ .legendary .repcontainer > .repitem:nth-child(42) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_42_] ~ .legendary .repcontainer > .repitem:nth-child(43) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_43_] ~ .legendary .repcontainer > .repitem:nth-child(44) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_44_] ~ .legendary .repcontainer > .repitem:nth-child(45) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_45_] ~ .legendary .repcontainer > .repitem:nth-child(46) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_46_] ~ .legendary .repcontainer > .repitem:nth-child(47) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_47_] ~ .legendary .repcontainer > .repitem:nth-child(48) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_48_] ~ .legendary .repcontainer > .repitem:nth-child(49) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_49_] ~ .legendary .repcontainer > .repitem:nth-child(50) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_50_] ~ .legendary .repcontainer > .repitem:nth-child(51) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_51_] ~ .legendary .repcontainer > .repitem:nth-child(52) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_52_] ~ .legendary .repcontainer > .repitem:nth-child(53) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_53_] ~ .legendary .repcontainer > .repitem:nth-child(54) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_54_] ~ .legendary .repcontainer > .repitem:nth-child(55) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_55_] ~ .legendary .repcontainer > .repitem:nth-child(56) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_56_] ~ .legendary .repcontainer > .repitem:nth-child(57) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_57_] ~ .legendary .repcontainer > .repitem:nth-child(58) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_58_] ~ .legendary .repcontainer > .repitem:nth-child(59) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_59_] ~ .legendary .repcontainer > .repitem:nth-child(60) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_60_] ~ .legendary .repcontainer > .repitem:nth-child(61) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_61_] ~ .legendary .repcontainer > .repitem:nth-child(62) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_62_] ~ .legendary .repcontainer > .repitem:nth-child(63) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_63_] ~ .legendary .repcontainer > .repitem:nth-child(64) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_64_] ~ .legendary .repcontainer > .repitem:nth-child(65) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_65_] ~ .legendary .repcontainer > .repitem:nth-child(66) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_66_] ~ .legendary .repcontainer > .repitem:nth-child(67) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_67_] ~ .legendary .repcontainer > .repitem:nth-child(68) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_68_] ~ .legendary .repcontainer > .repitem:nth-child(69) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_69_] ~ .legendary .repcontainer > .repitem:nth-child(70) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_70_] ~ .legendary .repcontainer > .repitem:nth-child(71) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_71_] ~ .legendary .repcontainer > .repitem:nth-child(72) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_72_] ~ .legendary .repcontainer > .repitem:nth-child(73) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_73_] ~ .legendary .repcontainer > .repitem:nth-child(74) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_74_] ~ .legendary .repcontainer > .repitem:nth-child(75) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_75_] ~ .legendary .repcontainer > .repitem:nth-child(76) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_76_] ~ .legendary .repcontainer > .repitem:nth-child(77) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_77_] ~ .legendary .repcontainer > .repitem:nth-child(78) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_78_] ~ .legendary .repcontainer > .repitem:nth-child(79) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_79_] ~ .legendary .repcontainer > .repitem:nth-child(80) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_80_] ~ .legendary .repcontainer > .repitem:nth-child(81) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_81_] ~ .legendary .repcontainer > .repitem:nth-child(82) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_82_] ~ .legendary .repcontainer > .repitem:nth-child(83) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_83_] ~ .legendary .repcontainer > .repitem:nth-child(84) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_84_] ~ .legendary .repcontainer > .repitem:nth-child(85) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_85_] ~ .legendary .repcontainer > .repitem:nth-child(86) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_86_] ~ .legendary .repcontainer > .repitem:nth-child(87) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_87_] ~ .legendary .repcontainer > .repitem:nth-child(88) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_88_] ~ .legendary .repcontainer > .repitem:nth-child(89) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_89_] ~ .legendary .repcontainer > .repitem:nth-child(90) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_90_] ~ .legendary .repcontainer > .repitem:nth-child(91) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_91_] ~ .legendary .repcontainer > .repitem:nth-child(92) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_92_] ~ .legendary .repcontainer > .repitem:nth-child(93) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_93_] ~ .legendary .repcontainer > .repitem:nth-child(94) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_94_] ~ .legendary .repcontainer > .repitem:nth-child(95) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_95_] ~ .legendary .repcontainer > .repitem:nth-child(96) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_96_] ~ .legendary .repcontainer > .repitem:nth-child(97) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_97_] ~ .legendary .repcontainer > .repitem:nth-child(98) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_98_] ~ .legendary .repcontainer > .repitem:nth-child(99) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_99_] ~ .legendary .repcontainer > .repitem:nth-child(100) .toggle_repeating_npcaction-l_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_0_] ~ .legendary .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_1_] ~ .legendary .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_2_] ~ .legendary .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_3_] ~ .legendary .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_4_] ~ .legendary .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_5_] ~ .legendary .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_6_] ~ .legendary .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_7_] ~ .legendary .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_8_] ~ .legendary .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_9_] ~ .legendary .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_10_] ~ .legendary .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_11_] ~ .legendary .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_12_] ~ .legendary .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_13_] ~ .legendary .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_14_] ~ .legendary .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_15_] ~ .legendary .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_16_] ~ .legendary .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_17_] ~ .legendary .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_18_] ~ .legendary .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_19_] ~ .legendary .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_20_] ~ .legendary .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_21_] ~ .legendary .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_22_] ~ .legendary .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_23_] ~ .legendary .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_24_] ~ .legendary .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_25_] ~ .legendary .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_26_] ~ .legendary .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_27_] ~ .legendary .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_28_] ~ .legendary .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_29_] ~ .legendary .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_30_] ~ .legendary .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_31_] ~ .legendary .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_32_] ~ .legendary .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_33_] ~ .legendary .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_34_] ~ .legendary .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_35_] ~ .legendary .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_36_] ~ .legendary .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_37_] ~ .legendary .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_38_] ~ .legendary .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_39_] ~ .legendary .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_40_] ~ .legendary .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_41_] ~ .legendary .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_42_] ~ .legendary .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_43_] ~ .legendary .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_44_] ~ .legendary .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_45_] ~ .legendary .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_46_] ~ .legendary .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_47_] ~ .legendary .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_48_] ~ .legendary .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_49_] ~ .legendary .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_50_] ~ .legendary .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_51_] ~ .legendary .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_52_] ~ .legendary .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_53_] ~ .legendary .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_54_] ~ .legendary .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_55_] ~ .legendary .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_56_] ~ .legendary .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_57_] ~ .legendary .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_58_] ~ .legendary .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_59_] ~ .legendary .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_60_] ~ .legendary .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_61_] ~ .legendary .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_62_] ~ .legendary .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_63_] ~ .legendary .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_64_] ~ .legendary .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_65_] ~ .legendary .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_66_] ~ .legendary .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_67_] ~ .legendary .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_68_] ~ .legendary .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_69_] ~ .legendary .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_70_] ~ .legendary .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_71_] ~ .legendary .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_72_] ~ .legendary .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_73_] ~ .legendary .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_74_] ~ .legendary .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_75_] ~ .legendary .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_76_] ~ .legendary .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_77_] ~ .legendary .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_78_] ~ .legendary .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_79_] ~ .legendary .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_80_] ~ .legendary .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_81_] ~ .legendary .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_82_] ~ .legendary .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_83_] ~ .legendary .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_84_] ~ .legendary .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_85_] ~ .legendary .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_86_] ~ .legendary .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_87_] ~ .legendary .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_88_] ~ .legendary .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_89_] ~ .legendary .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_90_] ~ .legendary .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_91_] ~ .legendary .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_92_] ~ .legendary .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_93_] ~ .legendary .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_94_] ~ .legendary .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_95_] ~ .legendary .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_96_] ~ .legendary .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_97_] ~ .legendary .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_98_] ~ .legendary .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-l_edit_99_] ~ .legendary .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_0_] ~ .mythic .repcontainer > .repitem:nth-child(1) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_1_] ~ .mythic .repcontainer > .repitem:nth-child(2) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_2_] ~ .mythic .repcontainer > .repitem:nth-child(3) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_3_] ~ .mythic .repcontainer > .repitem:nth-child(4) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_4_] ~ .mythic .repcontainer > .repitem:nth-child(5) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_5_] ~ .mythic .repcontainer > .repitem:nth-child(6) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_6_] ~ .mythic .repcontainer > .repitem:nth-child(7) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_7_] ~ .mythic .repcontainer > .repitem:nth-child(8) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_8_] ~ .mythic .repcontainer > .repitem:nth-child(9) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_9_] ~ .mythic .repcontainer > .repitem:nth-child(10) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_10_] ~ .mythic .repcontainer > .repitem:nth-child(11) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_11_] ~ .mythic .repcontainer > .repitem:nth-child(12) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_12_] ~ .mythic .repcontainer > .repitem:nth-child(13) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_13_] ~ .mythic .repcontainer > .repitem:nth-child(14) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_14_] ~ .mythic .repcontainer > .repitem:nth-child(15) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_15_] ~ .mythic .repcontainer > .repitem:nth-child(16) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_16_] ~ .mythic .repcontainer > .repitem:nth-child(17) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_17_] ~ .mythic .repcontainer > .repitem:nth-child(18) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_18_] ~ .mythic .repcontainer > .repitem:nth-child(19) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_19_] ~ .mythic .repcontainer > .repitem:nth-child(20) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_20_] ~ .mythic .repcontainer > .repitem:nth-child(21) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_21_] ~ .mythic .repcontainer > .repitem:nth-child(22) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_22_] ~ .mythic .repcontainer > .repitem:nth-child(23) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_23_] ~ .mythic .repcontainer > .repitem:nth-child(24) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_24_] ~ .mythic .repcontainer > .repitem:nth-child(25) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_25_] ~ .mythic .repcontainer > .repitem:nth-child(26) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_26_] ~ .mythic .repcontainer > .repitem:nth-child(27) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_27_] ~ .mythic .repcontainer > .repitem:nth-child(28) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_28_] ~ .mythic .repcontainer > .repitem:nth-child(29) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_29_] ~ .mythic .repcontainer > .repitem:nth-child(30) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_30_] ~ .mythic .repcontainer > .repitem:nth-child(31) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_31_] ~ .mythic .repcontainer > .repitem:nth-child(32) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_32_] ~ .mythic .repcontainer > .repitem:nth-child(33) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_33_] ~ .mythic .repcontainer > .repitem:nth-child(34) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_34_] ~ .mythic .repcontainer > .repitem:nth-child(35) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_35_] ~ .mythic .repcontainer > .repitem:nth-child(36) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_36_] ~ .mythic .repcontainer > .repitem:nth-child(37) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_37_] ~ .mythic .repcontainer > .repitem:nth-child(38) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_38_] ~ .mythic .repcontainer > .repitem:nth-child(39) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_39_] ~ .mythic .repcontainer > .repitem:nth-child(40) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_40_] ~ .mythic .repcontainer > .repitem:nth-child(41) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_41_] ~ .mythic .repcontainer > .repitem:nth-child(42) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_42_] ~ .mythic .repcontainer > .repitem:nth-child(43) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_43_] ~ .mythic .repcontainer > .repitem:nth-child(44) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_44_] ~ .mythic .repcontainer > .repitem:nth-child(45) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_45_] ~ .mythic .repcontainer > .repitem:nth-child(46) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_46_] ~ .mythic .repcontainer > .repitem:nth-child(47) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_47_] ~ .mythic .repcontainer > .repitem:nth-child(48) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_48_] ~ .mythic .repcontainer > .repitem:nth-child(49) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_49_] ~ .mythic .repcontainer > .repitem:nth-child(50) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_50_] ~ .mythic .repcontainer > .repitem:nth-child(51) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_51_] ~ .mythic .repcontainer > .repitem:nth-child(52) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_52_] ~ .mythic .repcontainer > .repitem:nth-child(53) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_53_] ~ .mythic .repcontainer > .repitem:nth-child(54) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_54_] ~ .mythic .repcontainer > .repitem:nth-child(55) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_55_] ~ .mythic .repcontainer > .repitem:nth-child(56) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_56_] ~ .mythic .repcontainer > .repitem:nth-child(57) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_57_] ~ .mythic .repcontainer > .repitem:nth-child(58) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_58_] ~ .mythic .repcontainer > .repitem:nth-child(59) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_59_] ~ .mythic .repcontainer > .repitem:nth-child(60) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_60_] ~ .mythic .repcontainer > .repitem:nth-child(61) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_61_] ~ .mythic .repcontainer > .repitem:nth-child(62) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_62_] ~ .mythic .repcontainer > .repitem:nth-child(63) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_63_] ~ .mythic .repcontainer > .repitem:nth-child(64) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_64_] ~ .mythic .repcontainer > .repitem:nth-child(65) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_65_] ~ .mythic .repcontainer > .repitem:nth-child(66) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_66_] ~ .mythic .repcontainer > .repitem:nth-child(67) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_67_] ~ .mythic .repcontainer > .repitem:nth-child(68) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_68_] ~ .mythic .repcontainer > .repitem:nth-child(69) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_69_] ~ .mythic .repcontainer > .repitem:nth-child(70) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_70_] ~ .mythic .repcontainer > .repitem:nth-child(71) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_71_] ~ .mythic .repcontainer > .repitem:nth-child(72) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_72_] ~ .mythic .repcontainer > .repitem:nth-child(73) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_73_] ~ .mythic .repcontainer > .repitem:nth-child(74) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_74_] ~ .mythic .repcontainer > .repitem:nth-child(75) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_75_] ~ .mythic .repcontainer > .repitem:nth-child(76) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_76_] ~ .mythic .repcontainer > .repitem:nth-child(77) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_77_] ~ .mythic .repcontainer > .repitem:nth-child(78) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_78_] ~ .mythic .repcontainer > .repitem:nth-child(79) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_79_] ~ .mythic .repcontainer > .repitem:nth-child(80) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_80_] ~ .mythic .repcontainer > .repitem:nth-child(81) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_81_] ~ .mythic .repcontainer > .repitem:nth-child(82) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_82_] ~ .mythic .repcontainer > .repitem:nth-child(83) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_83_] ~ .mythic .repcontainer > .repitem:nth-child(84) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_84_] ~ .mythic .repcontainer > .repitem:nth-child(85) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_85_] ~ .mythic .repcontainer > .repitem:nth-child(86) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_86_] ~ .mythic .repcontainer > .repitem:nth-child(87) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_87_] ~ .mythic .repcontainer > .repitem:nth-child(88) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_88_] ~ .mythic .repcontainer > .repitem:nth-child(89) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_89_] ~ .mythic .repcontainer > .repitem:nth-child(90) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_90_] ~ .mythic .repcontainer > .repitem:nth-child(91) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_91_] ~ .mythic .repcontainer > .repitem:nth-child(92) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_92_] ~ .mythic .repcontainer > .repitem:nth-child(93) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_93_] ~ .mythic .repcontainer > .repitem:nth-child(94) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_94_] ~ .mythic .repcontainer > .repitem:nth-child(95) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_95_] ~ .mythic .repcontainer > .repitem:nth-child(96) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_96_] ~ .mythic .repcontainer > .repitem:nth-child(97) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_97_] ~ .mythic .repcontainer > .repitem:nth-child(98) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_98_] ~ .mythic .repcontainer > .repitem:nth-child(99) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_99_] ~ .mythic .repcontainer > .repitem:nth-child(100) .toggle_repeating_npcaction-m_edit + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_0_] ~ .mythic .repcontainer > .repitem:nth-child(1) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_1_] ~ .mythic .repcontainer > .repitem:nth-child(2) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_2_] ~ .mythic .repcontainer > .repitem:nth-child(3) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_3_] ~ .mythic .repcontainer > .repitem:nth-child(4) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_4_] ~ .mythic .repcontainer > .repitem:nth-child(5) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_5_] ~ .mythic .repcontainer > .repitem:nth-child(6) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_6_] ~ .mythic .repcontainer > .repitem:nth-child(7) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_7_] ~ .mythic .repcontainer > .repitem:nth-child(8) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_8_] ~ .mythic .repcontainer > .repitem:nth-child(9) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_9_] ~ .mythic .repcontainer > .repitem:nth-child(10) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_10_] ~ .mythic .repcontainer > .repitem:nth-child(11) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_11_] ~ .mythic .repcontainer > .repitem:nth-child(12) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_12_] ~ .mythic .repcontainer > .repitem:nth-child(13) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_13_] ~ .mythic .repcontainer > .repitem:nth-child(14) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_14_] ~ .mythic .repcontainer > .repitem:nth-child(15) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_15_] ~ .mythic .repcontainer > .repitem:nth-child(16) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_16_] ~ .mythic .repcontainer > .repitem:nth-child(17) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_17_] ~ .mythic .repcontainer > .repitem:nth-child(18) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_18_] ~ .mythic .repcontainer > .repitem:nth-child(19) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_19_] ~ .mythic .repcontainer > .repitem:nth-child(20) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_20_] ~ .mythic .repcontainer > .repitem:nth-child(21) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_21_] ~ .mythic .repcontainer > .repitem:nth-child(22) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_22_] ~ .mythic .repcontainer > .repitem:nth-child(23) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_23_] ~ .mythic .repcontainer > .repitem:nth-child(24) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_24_] ~ .mythic .repcontainer > .repitem:nth-child(25) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_25_] ~ .mythic .repcontainer > .repitem:nth-child(26) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_26_] ~ .mythic .repcontainer > .repitem:nth-child(27) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_27_] ~ .mythic .repcontainer > .repitem:nth-child(28) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_28_] ~ .mythic .repcontainer > .repitem:nth-child(29) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_29_] ~ .mythic .repcontainer > .repitem:nth-child(30) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_30_] ~ .mythic .repcontainer > .repitem:nth-child(31) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_31_] ~ .mythic .repcontainer > .repitem:nth-child(32) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_32_] ~ .mythic .repcontainer > .repitem:nth-child(33) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_33_] ~ .mythic .repcontainer > .repitem:nth-child(34) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_34_] ~ .mythic .repcontainer > .repitem:nth-child(35) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_35_] ~ .mythic .repcontainer > .repitem:nth-child(36) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_36_] ~ .mythic .repcontainer > .repitem:nth-child(37) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_37_] ~ .mythic .repcontainer > .repitem:nth-child(38) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_38_] ~ .mythic .repcontainer > .repitem:nth-child(39) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_39_] ~ .mythic .repcontainer > .repitem:nth-child(40) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_40_] ~ .mythic .repcontainer > .repitem:nth-child(41) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_41_] ~ .mythic .repcontainer > .repitem:nth-child(42) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_42_] ~ .mythic .repcontainer > .repitem:nth-child(43) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_43_] ~ .mythic .repcontainer > .repitem:nth-child(44) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_44_] ~ .mythic .repcontainer > .repitem:nth-child(45) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_45_] ~ .mythic .repcontainer > .repitem:nth-child(46) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_46_] ~ .mythic .repcontainer > .repitem:nth-child(47) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_47_] ~ .mythic .repcontainer > .repitem:nth-child(48) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_48_] ~ .mythic .repcontainer > .repitem:nth-child(49) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_49_] ~ .mythic .repcontainer > .repitem:nth-child(50) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_50_] ~ .mythic .repcontainer > .repitem:nth-child(51) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_51_] ~ .mythic .repcontainer > .repitem:nth-child(52) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_52_] ~ .mythic .repcontainer > .repitem:nth-child(53) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_53_] ~ .mythic .repcontainer > .repitem:nth-child(54) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_54_] ~ .mythic .repcontainer > .repitem:nth-child(55) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_55_] ~ .mythic .repcontainer > .repitem:nth-child(56) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_56_] ~ .mythic .repcontainer > .repitem:nth-child(57) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_57_] ~ .mythic .repcontainer > .repitem:nth-child(58) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_58_] ~ .mythic .repcontainer > .repitem:nth-child(59) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_59_] ~ .mythic .repcontainer > .repitem:nth-child(60) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_60_] ~ .mythic .repcontainer > .repitem:nth-child(61) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_61_] ~ .mythic .repcontainer > .repitem:nth-child(62) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_62_] ~ .mythic .repcontainer > .repitem:nth-child(63) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_63_] ~ .mythic .repcontainer > .repitem:nth-child(64) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_64_] ~ .mythic .repcontainer > .repitem:nth-child(65) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_65_] ~ .mythic .repcontainer > .repitem:nth-child(66) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_66_] ~ .mythic .repcontainer > .repitem:nth-child(67) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_67_] ~ .mythic .repcontainer > .repitem:nth-child(68) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_68_] ~ .mythic .repcontainer > .repitem:nth-child(69) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_69_] ~ .mythic .repcontainer > .repitem:nth-child(70) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_70_] ~ .mythic .repcontainer > .repitem:nth-child(71) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_71_] ~ .mythic .repcontainer > .repitem:nth-child(72) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_72_] ~ .mythic .repcontainer > .repitem:nth-child(73) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_73_] ~ .mythic .repcontainer > .repitem:nth-child(74) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_74_] ~ .mythic .repcontainer > .repitem:nth-child(75) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_75_] ~ .mythic .repcontainer > .repitem:nth-child(76) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_76_] ~ .mythic .repcontainer > .repitem:nth-child(77) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_77_] ~ .mythic .repcontainer > .repitem:nth-child(78) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_78_] ~ .mythic .repcontainer > .repitem:nth-child(79) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_79_] ~ .mythic .repcontainer > .repitem:nth-child(80) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_80_] ~ .mythic .repcontainer > .repitem:nth-child(81) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_81_] ~ .mythic .repcontainer > .repitem:nth-child(82) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_82_] ~ .mythic .repcontainer > .repitem:nth-child(83) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_83_] ~ .mythic .repcontainer > .repitem:nth-child(84) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_84_] ~ .mythic .repcontainer > .repitem:nth-child(85) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_85_] ~ .mythic .repcontainer > .repitem:nth-child(86) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_86_] ~ .mythic .repcontainer > .repitem:nth-child(87) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_87_] ~ .mythic .repcontainer > .repitem:nth-child(88) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_88_] ~ .mythic .repcontainer > .repitem:nth-child(89) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_89_] ~ .mythic .repcontainer > .repitem:nth-child(90) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_90_] ~ .mythic .repcontainer > .repitem:nth-child(91) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_91_] ~ .mythic .repcontainer > .repitem:nth-child(92) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_92_] ~ .mythic .repcontainer > .repitem:nth-child(93) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_93_] ~ .mythic .repcontainer > .repitem:nth-child(94) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_94_] ~ .mythic .repcontainer > .repitem:nth-child(95) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_95_] ~ .mythic .repcontainer > .repitem:nth-child(96) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_96_] ~ .mythic .repcontainer > .repitem:nth-child(97) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_97_] ~ .mythic .repcontainer > .repitem:nth-child(98) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_98_] ~ .mythic .repcontainer > .repitem:nth-child(99) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .npc_ui_flags[value*=repeating_npcaction-m_edit_99_] ~ .mythic .repcontainer > .repitem:nth-child(100) .npc_options {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.npc .actions .repitem:hover .toggle_repeating_npcaction_edit + span,
|
|
.npc .bonusactions .repitem:hover .toggle_repeating_npcbonusaction_edit + span,
|
|
.npc .traits .repitem:hover .toggle_repeating_npctrait_edit + span,
|
|
.npc .reaction .repitem:hover .toggle_repeating_npctrait_edit + span,
|
|
.npc .legendary .repitem:hover .toggle_repeating_npctrait_edit + span {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.npc .reaction .trait,
|
|
.npc .legendary .action,
|
|
.npc .mythic .action {
|
|
position: unset;
|
|
}
|
|
|
|
.editing-repeating {
|
|
display: none !important;
|
|
}
|
|
|
|
.actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer .repitem:last-child .editing-repeating:empty ~ .action div.npc_options,
|
|
.actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer .repitem:last-child div.npc_options:focus-within,
|
|
.bonusactions .repcontainer .repitem:last-child .editing-repeating:empty ~ .action div.npc_options,
|
|
.bonusactions .repcontainer .repitem:last-child div.npc_options:focus-within,
|
|
.traits .repcontainer .repitem:last-child .editing-repeating:empty ~ .trait div.npc_options,
|
|
.traits .repcontainer .repitem:last-child div.npc_options:focus-within,
|
|
.reaction .repcontainer .repitem:last-child .editing-repeating:empty ~ div.npc_options,
|
|
.reaction .repcontainer .repitem:last-child div.npc_options:focus-within,
|
|
.legendary .repcontainer .repitem:last-child .editing-repeating:empty ~ div.npc_options,
|
|
.legendary .repcontainer .repitem:last-child div.npc_options:focus-within,
|
|
.mythic .repcontainer .repitem:last-child .editing-repeating:empty ~ div.npc_options,
|
|
.mythic .repcontainer .repitem:last-child div.npc_options:focus-within {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.actions:not(.bonusactions):not(.legendary):not(.mythic):not(.reaction) .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span,
|
|
.bonusactions .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.bonusactions .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span,
|
|
.traits .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.traits .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span,
|
|
.reaction .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.reaction .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span,
|
|
.legendary .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.legendary .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span,
|
|
.mythic .repcontainer .repitem:last-child .editing-repeating:empty + button.npc_options-flag + span,
|
|
.mythic .repcontainer .repitem:last-child:focus-within button.npc_options-flag + span {
|
|
color: black;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
pointer-events: none !important;
|
|
}
|
|
|
|
/* Small fixes that may need to go somewhere ellipse */
|
|
button[name=roll_rollstats] + button[name=act_clearstats] {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.levels-message .class1_tot,
|
|
.levels-message .class2_tot,
|
|
.levels-message .class3_tot,
|
|
.levels-message .class4_tot {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.charsheet .charmancer .levels-multiclass button.mancer_info {
|
|
width: 18px;
|
|
}
|
|
|
|
.charsheet .charmancer .levels-multiclass .hp-flag[value=average] ~ div > button[name*=averagehp],
|
|
.class1_averagehp button,
|
|
.class2_averagehp button,
|
|
.class3_averagehp button,
|
|
.class4_averagehp button {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.charsheet .charmancer .levels-hp-row .hpbylevel-toggle ~ .collapse {
|
|
top: 5px;
|
|
}
|
|
|
|
.charsheet .charmancer .lp-summary.summary-container .before h2 {
|
|
background-color: transparent;
|
|
color: black;
|
|
border: 0;
|
|
}
|
|
|
|
.charsheet .charmancer .lp-summary.summary-container .after h2 {
|
|
background-color: transparent;
|
|
color: #7e2d40;
|
|
border: 0;
|
|
}
|
|
|
|
.charsheet .charmancer .lp-summary.summary-container .highlight {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.charsheet .charmancer .lp-summary.summary-container span.highlight {
|
|
font-weight: 700;
|
|
color: #7e2d40;
|
|
}
|
|
|
|
.charsheet .charmancer .lp-summary.summary-container .before {
|
|
border-right: 2px solid #4a4a4a;
|
|
}
|
|
|
|
.charsheet .charmancer .topbar div div, .charsheet .charmancer .leveler-topbar div div {
|
|
-ms-flex-preferred-size: 16%;
|
|
flex-basis: 16%;
|
|
-ms-flex-negative: 1;
|
|
flex-shrink: 1;
|
|
width: auto;
|
|
min-width: 0;
|
|
-webkit-box-flex: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.charsheet .charmancer .topbar div div:first-child, .charsheet .charmancer .leveler-topbar div div:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.toggleVisibility:not([value="1"]) + [class*=toggleVisibilityBy] {
|
|
display: none !important;
|
|
}
|
|
|
|
.charsheet div.charmancer .attr-container.choice {
|
|
display: none !important;
|
|
}
|
|
|
|
.charsheet .charmancer .topbar-container {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.abilities-holder .sanity_toggle {
|
|
margin-top: 1.5em;
|
|
}
|
|
|
|
.invalidXP {
|
|
display: none;
|
|
}
|
|
.invalidXP .icon {
|
|
font-family: pictos;
|
|
color: #ff9600;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
font-size: 18px;
|
|
display: block;
|
|
}
|
|
.invalidXP .message {
|
|
display: none;
|
|
background-color: #ff9600;
|
|
position: absolute;
|
|
right: -5px;
|
|
top: 18px;
|
|
padding: 10px;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
border-radius: 5px;
|
|
white-space: nowrap;
|
|
}
|
|
.invalidXP .icon:hover + .message {
|
|
display: block;
|
|
}
|
|
|
|
input[name=attr_invalidXP][value="1"] ~ .invalidXP {
|
|
display: block;
|
|
}
|
|
|
|
.charsheet .spell .details span[data-i18n=at-higher-lvl]:after {
|
|
content: ": ";
|
|
}
|
|
|
|
.charsheet .spell .details span[name=attr_spellschool]:after {
|
|
content: " ";
|
|
}
|
|
|
|
.charsheet .npc .display .flag[name=attr_npc_skills_flag][value="0"] + .skills,
|
|
.charsheet .npc .display .flag[name=attr_npc_saving_flag][value="0"] + .saving {
|
|
display: none !important;
|
|
}
|
|
|
|
.ellipsis {
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.acmod .repcontainer {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.charsheet .charmancer .asi-row .switch ~ .switch-container .feat-tab {
|
|
pointer-events: all;
|
|
}
|
|
|
|
.charsheet .charmancer .asi-row .asi,
|
|
.charsheet .charmancer .asi-row .feat {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .charmancer .asi-row .switchval[value=asi] ~ .asi,
|
|
.charsheet .charmancer .asi-row .switchval[value=feat] ~ .feat {
|
|
display: block;
|
|
border-color: #888;
|
|
border-style: solid;
|
|
border-width: 0 1px 1px 1px;
|
|
border-radius: 0 0 4px 4px;
|
|
padding: 1em;
|
|
}
|
|
|
|
.charmancer .asi-row .switchval[value=asi] ~ .switch-container .asi-tab,
|
|
.charmancer .asi-row .switchval[value=feat] ~ .switch-container .feat-tab {
|
|
border-bottom-width: 0;
|
|
background-color: white;
|
|
}
|
|
|
|
.spinnerloader {
|
|
width: 40%;
|
|
padding-right: 13px;
|
|
height: 100px;
|
|
background-image: url("https://app.roll20.net/images/load.gif");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
display: inline-block;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
.spinner-toggle {
|
|
display: none;
|
|
}
|
|
|
|
.spinner-toggle:empty + .spinnerloader {
|
|
display: none;
|
|
}
|
|
|
|
.spinner-toggle ~ .choices {
|
|
display: none;
|
|
}
|
|
|
|
.spinner-toggle:empty ~ .choices {
|
|
display: block;
|
|
}
|
|
|
|
span[name=attr_global_damage_critical_damage]:not(:empty):after {
|
|
content: " (on critical)";
|
|
}
|
|
|
|
span[name=attr_global_damage_damage]:not(:empty) + span[name=attr_global_damage_critical_damage]:not(:empty):before {
|
|
content: ", ";
|
|
margin-left: -3px;
|
|
}
|
|
|
|
.charsheet .global-mod .options input[type=text][name=attr_global_damage_critical_damage] {
|
|
width: 93px;
|
|
}
|
|
|
|
.swap-selected {
|
|
display: none;
|
|
}
|
|
|
|
.swap-selected:empty ~ select[name*=feature_for] {
|
|
display: none;
|
|
}
|
|
|
|
.npc .actiondamage {
|
|
display: block;
|
|
margin-top: -10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.npc .attack_options[value=on] ~ .actiondamage,
|
|
.npc .attack_options[value="{{attack=1}}"] ~ .actiondamage {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet .spell .details input[type=checkbox][name=attr_spellconcentration]:checked + span:after {
|
|
content: ", ";
|
|
}
|
|
|
|
.charsheet .spell .details input[type=checkbox]:checked + span {
|
|
margin-left: -3px;
|
|
}
|
|
|
|
.charsheet .spell .details .row .bold {
|
|
padding-right: 3px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.charsheet .spell .output {
|
|
position: absolute;
|
|
font-family: pictos;
|
|
top: -2px;
|
|
right: 40px;
|
|
width: 18px;
|
|
height: 18px;
|
|
z-index: 2;
|
|
background: none;
|
|
border: none;
|
|
font-family: pictos;
|
|
font-size: 20px;
|
|
display: none;
|
|
font-size: 22px !important;
|
|
color: #A0A0A0;
|
|
}
|
|
|
|
.charsheet .spell .output:before {
|
|
content: none !important;
|
|
}
|
|
|
|
.charsheet .spell:hover .output {
|
|
display: block;
|
|
}
|
|
|
|
.charsheet .repcontrol {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.charsheet .repcontrol button.btn {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.hdice-dsaves-container .label[data-i18n=failures-u] {
|
|
max-width: 60px;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.charsheet .licensecontainer .new-hit-dice {
|
|
display: none !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .new-hit-dice {
|
|
display: block !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice {
|
|
width: 100% !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer:first-child {
|
|
display: none !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer {
|
|
width: 100%;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer > div {
|
|
width: 50%;
|
|
height: auto;
|
|
margin: 0;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer > div .label {
|
|
display: block;
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: none;
|
|
margin-top: 5px;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer > div input {
|
|
width: 20px !important;
|
|
height: 20px !important;
|
|
margin: 2px 0 0 0 !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer > div:first-child:after {
|
|
content: "";
|
|
width: 2px;
|
|
height: calc(100% - 20px);
|
|
background: #EEE;
|
|
top: 0;
|
|
right: -1px;
|
|
position: absolute;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_use_per_class_hit_dice][value="1"] ~ .old-hit-dice .subcontainer > button {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%);
|
|
-ms-transform: translate(-50%);
|
|
transform: translate(-50%);
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice {
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
border: 10px solid black;
|
|
border-image-source: url("https://app.roll20.net/images/dndstyling/vital-box.svg");
|
|
border-image-slice: 30 fill;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin: 0 8px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .hd-header {
|
|
overflow: hidden;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .hd-header span {
|
|
float: left;
|
|
width: 33.333333333%;
|
|
margin: 0;
|
|
text-align: left;
|
|
color: #A0A0A0;
|
|
font-weight: normal;
|
|
display: inline-block;
|
|
font-size: 9px;
|
|
text-transform: uppercase;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontrol {
|
|
bottom: -12px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontrol .repcontrol_add {
|
|
display: none !important;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontrol .repcontrol_edit {
|
|
padding: 0;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem {
|
|
overflow: hidden;
|
|
padding: 5px 0;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem:not(:first-of-type) {
|
|
border-top: 1px solid #CCC;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem .roll-hd {
|
|
display: inline-block;
|
|
position: relative;
|
|
background: #efefef;
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem .roll-hd span {
|
|
margin: 0;
|
|
color: black;
|
|
font-weight: 700;
|
|
font-size: 12px;
|
|
padding: 1px 2px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem .roll-hd input {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
pointer-events: all;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem .roll-hd:before {
|
|
content: none !important;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem .roll-hd:hover span {
|
|
color: #ec2127;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem input, .charsheet .licensecontainer .new-hit-dice .repcontainer .repitem button:not(.btn-danger) {
|
|
width: 33.333333333% !important;
|
|
float: left;
|
|
text-align: left;
|
|
margin: 0;
|
|
padding: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
outline: none;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
border: 0;
|
|
background: none !important;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem input span, .charsheet .licensecontainer .new-hit-dice .repcontainer .repitem button:not(.btn-danger) span {
|
|
font-size: 20px !important;
|
|
font-weight: 400 !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer .repitem input {
|
|
padding-right: 20px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="4"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="5"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="6"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="7"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="8"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="9"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="10"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="11"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_type][value="12"] ~ .roll-hd span[name=attr_type]:before {
|
|
content: "D";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="0"] ~ .roll-hd {
|
|
pointer-events: none !important;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="0"] ~ .roll-hd * {
|
|
pointer-events: none !important;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="0"] ~ .roll-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="0"] ~ input[name=attr_available],
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_size][value="0"] ~ input[name=attr_size] {
|
|
color: orange;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="1"] + input[name=attr_size][value="1"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="1"] + input[name=attr_size][value="1"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="2"] + input[name=attr_size][value="2"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="2"] + input[name=attr_size][value="2"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="3"] + input[name=attr_size][value="3"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="3"] + input[name=attr_size][value="3"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="4"] + input[name=attr_size][value="4"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="4"] + input[name=attr_size][value="4"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="5"] + input[name=attr_size][value="5"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="5"] + input[name=attr_size][value="5"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="6"] + input[name=attr_size][value="6"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="6"] + input[name=attr_size][value="6"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="7"] + input[name=attr_size][value="7"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="7"] + input[name=attr_size][value="7"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="8"] + input[name=attr_size][value="8"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="8"] + input[name=attr_size][value="8"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="9"] + input[name=attr_size][value="9"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="9"] + input[name=attr_size][value="9"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="10"] + input[name=attr_size][value="10"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="10"] + input[name=attr_size][value="10"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="11"] + input[name=attr_size][value="11"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="11"] + input[name=attr_size][value="11"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="12"] + input[name=attr_size][value="12"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="12"] + input[name=attr_size][value="12"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="13"] + input[name=attr_size][value="13"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="13"] + input[name=attr_size][value="13"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="14"] + input[name=attr_size][value="14"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="14"] + input[name=attr_size][value="14"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="15"] + input[name=attr_size][value="15"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="15"] + input[name=attr_size][value="15"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="16"] + input[name=attr_size][value="16"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="16"] + input[name=attr_size][value="16"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="17"] + input[name=attr_size][value="17"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="17"] + input[name=attr_size][value="17"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="18"] + input[name=attr_size][value="18"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="18"] + input[name=attr_size][value="18"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="19"] + input[name=attr_size][value="19"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="19"] + input[name=attr_size][value="19"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="20"] + input[name=attr_size][value="20"] ~ .increase-hd {
|
|
pointer-events: none;
|
|
opacity: 0.35;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .repcontainer input[name=attr_available][value="20"] + input[name=attr_size][value="20"] ~ .increase-hd:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .show-hit-dice {
|
|
position: relative;
|
|
z-index: 4;
|
|
margin-top: -10px;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .show-hit-dice button {
|
|
bottom: -20px;
|
|
left: 30%;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 40%;
|
|
font-size: 9px;
|
|
font-weight: 700;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
background: none;
|
|
outline: none;
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .show-hit-dice button span {
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
width: auto;
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .show-hit-dice button span[name=attr_hit_dice_max]:before {
|
|
content: " (";
|
|
}
|
|
.charsheet .licensecontainer .new-hit-dice .show-hit-dice button span[name=attr_hit_dice_max]:after {
|
|
content: ")";
|
|
}
|
|
.charsheet .licensecontainer .hd-modal {
|
|
display: none;
|
|
position: absolute;
|
|
background: white;
|
|
z-index: 9999;
|
|
padding: 20px 0 0 0;
|
|
border: 1px solid #aaaaaa;
|
|
border-radius: 5px;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-ms-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
|
|
overflow: hidden;
|
|
width: 250px;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .title {
|
|
color: #404040;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
padding: 5px;
|
|
font-size: 18px;
|
|
display: block;
|
|
padding: 0 20px;
|
|
position: relative;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .title span {
|
|
display: inline-block;
|
|
text-transform: lowercase;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .title span:first-letter {
|
|
text-transform: capitalize;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .title button {
|
|
width: 16px;
|
|
height: 16px;
|
|
background-image: url(https://imgsrv.roll20.net/?src=https%3A//d3clqjduf2gvxg.cloudfront.net/css/themes/bootstrap/images/ui-icons_222222_256x240.png);
|
|
background-position: -96px -128px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 10px;
|
|
padding: 0;
|
|
background-color: transparent;
|
|
border: none;
|
|
opacity: 0.3;
|
|
outline: none;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions {
|
|
margin: 0.5em 0 0 0;
|
|
background-color: #f5f5f5;
|
|
padding: 5px 15px 5px;
|
|
border-top: 1px solid #ddd;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff;
|
|
box-shadow: inset 0 1px 0 #fff;
|
|
padding: 20px;
|
|
text-align: right;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button {
|
|
position: relative;
|
|
background: #efefef;
|
|
border: 1px solid black;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
text-shadow: none;
|
|
padding: 3px 10px;
|
|
font-size: 13px;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button:before {
|
|
content: none;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button input {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: all;
|
|
opacity: 0;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button:hover {
|
|
color: black;
|
|
background-color: #e5e5e5;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button:hover span {
|
|
color: black;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal div:not(.actions) {
|
|
display: none;
|
|
padding: 10px 20px 0 20px;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal div:not(.actions) *:not(strong) {
|
|
font-weight: normal;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal div:not(.actions) input ~ input[value="0"] ~ span {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal div:not(.actions):not(:first-of-type) {
|
|
border-top: 1px solid #CCC;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal div:not(.actions) label span:not(:first-child) {
|
|
text-transform: lowercase;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button {
|
|
opacity: 0.35;
|
|
pointer-events: none !important;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal .actions button * {
|
|
pointer-events: none !important;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal input[name=attr_show_hit_dice_roll][value*=d] ~ .actions button,
|
|
.charsheet .licensecontainer .hd-modal input[name=attr_show_hit_dice_roll][value*=D] ~ .actions button {
|
|
opacity: 1;
|
|
pointer-events: all !important;
|
|
}
|
|
.charsheet .licensecontainer .hd-modal input[name=attr_show_hit_dice_roll][value*=d] ~ .actions button *,
|
|
.charsheet .licensecontainer .hd-modal input[name=attr_show_hit_dice_roll][value*=D] ~ .actions button * {
|
|
pointer-events: all !important;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="4"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="5"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="6"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="7"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="8"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="9"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="10"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="11"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="12"] + .hd-modal {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="4"] + .hd-modal .hitdie-d4 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="5"] + .hd-modal .hitdie-d5 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="6"] + .hd-modal .hitdie-d6 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="7"] + .hd-modal .hitdie-d7 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="8"] + .hd-modal .hitdie-d8 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="9"] + .hd-modal .hitdie-d9 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="10"] + .hd-modal .hitdie-d10 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="11"] + .hd-modal .hitdie-d11 {
|
|
display: block;
|
|
}
|
|
.charsheet .licensecontainer input[name=attr_show_hit_dice][value~="12"] + .hd-modal .hitdie-d12 {
|
|
display: block;
|
|
}
|
|
|
|
.licensecontainer .container:not(.npc) .equipment {
|
|
padding-bottom: 40px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .money {
|
|
border-bottom: 1px solid #c9c9c9;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
grid: 50px/auto auto auto auto auto;
|
|
grid-column-gap: 5px;
|
|
margin: 0 5px;
|
|
padding: 0 0 5px 0;
|
|
width: auto;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .money .coin {
|
|
background-image: none !important;
|
|
display: inline-block;
|
|
height: 30px;
|
|
left: auto;
|
|
margin: 20px 0 0 0;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .money .coin .label {
|
|
color: black;
|
|
font-size: 8px;
|
|
position: absolute;
|
|
left: 20px;
|
|
text-indent: -30px;
|
|
top: -20px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .money .coin input {
|
|
left: 0;
|
|
top: 6px;
|
|
text-align: center;
|
|
z-index: 99999;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .money .coin:after {
|
|
border-image-source: url("https://raw.githubusercontent.com/mperes/Esper-Images/main/coin-amount.png");
|
|
border-image-slice: 50% 35;
|
|
border-width: 15px 10px;
|
|
border-style: solid;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: block;
|
|
height: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
padding: 0 10px;
|
|
width: 100%;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .header {
|
|
padding-left: 16px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .header span[data-i18n=item-name-u] {
|
|
width: 142px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .header span:last-child img {
|
|
margin-bottom: 3px !important;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .item {
|
|
white-space: nowrap;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .item .equipped.main {
|
|
-webkit-appearance: checkbox;
|
|
-moz-appearance: checkbox;
|
|
appearance: checkbox;
|
|
border-color: black;
|
|
background: white;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .item .name {
|
|
width: 142px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .item .subitem {
|
|
white-space: initial;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .complex .item .subitem .subfield {
|
|
width: 142px;
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .simple {
|
|
margin: 10px 10px -24px 10px;
|
|
width: calc(100% - 20px);
|
|
}
|
|
.licensecontainer .container:not(.npc) .equipment .weighttotal {
|
|
left: 0;
|
|
top: auto;
|
|
bottom: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.charmancer .customize-origin {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding-right: 40px;
|
|
position: relative;
|
|
width: 100%;
|
|
display: none;
|
|
}
|
|
.charmancer .customize-origin label span {
|
|
display: block;
|
|
}
|
|
.charmancer .customize-origin label span:last-child {
|
|
font-weight: normal;
|
|
width: calc(100% + 40px);
|
|
}
|
|
.charmancer .customize-origin .toggle {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 40px;
|
|
height: 20px;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
border: 1px solid #CCC;
|
|
}
|
|
.charmancer .customize-origin .toggle input {
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
outline: none;
|
|
}
|
|
.charmancer .customize-origin .toggle input:checked {
|
|
background: #c43c41;
|
|
}
|
|
.charmancer .customize-origin .toggle .knob {
|
|
width: 20px;
|
|
height: 20px;
|
|
background: #CCC;
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -1px;
|
|
border-radius: 10px;
|
|
pointer-events: none;
|
|
}
|
|
.charmancer .customize-origin .toggle input:checked + .knob {
|
|
right: -1px;
|
|
left: auto;
|
|
}
|
|
.charmancer input[value="1"] + .customize-origin {
|
|
display: block;
|
|
}
|
|
.charmancer span.tasha + select {
|
|
margin-bottom: 10px;
|
|
}
|
|
.charmancer input[value="1"] + span.tasha:after {
|
|
content: " (+1):";
|
|
}
|
|
.charmancer input[value="2"] + span.tasha:after {
|
|
content: " (+2):";
|
|
}
|
|
.charmancer input[value="3"] + span.tasha:after {
|
|
content: " (+3):";
|
|
}
|
|
.charmancer input[value="4"] + span.tasha:after {
|
|
content: " (+4):";
|
|
}
|
|
.charmancer input[value="5"] + span.tasha:after {
|
|
content: " (+5):";
|
|
}
|
|
.charmancer input[value="6"] + span.tasha:after {
|
|
content: " (+6):";
|
|
}
|
|
.charmancer input[value="7"] + span.tasha:after {
|
|
content: " (+7):";
|
|
}
|
|
.charmancer input[value="8"] + span.tasha:after {
|
|
content: " (+8):";
|
|
}
|
|
.charmancer input[value="9"] + span.tasha:after {
|
|
content: " (+9):";
|
|
}
|
|
.charmancer input[value="10"] + span.tasha:after {
|
|
content: " (+10):";
|
|
}
|
|
.charmancer input[value="11"] + span.tasha:after {
|
|
content: " (+11):";
|
|
}
|
|
.charmancer input[value="12"] + span.tasha:after {
|
|
content: " (+12):";
|
|
}
|
|
.charmancer input[value="13"] + span.tasha:after {
|
|
content: " (+13):";
|
|
}
|
|
.charmancer input[value="14"] + span.tasha:after {
|
|
content: " (+14):";
|
|
}
|
|
.charmancer input[value="15"] + span.tasha:after {
|
|
content: " (+15):";
|
|
}
|
|
.charmancer input[value="16"] + span.tasha:after {
|
|
content: " (+16):";
|
|
}
|
|
.charmancer input[value="17"] + span.tasha:after {
|
|
content: " (+17):";
|
|
}
|
|
.charmancer input[value="18"] + span.tasha:after {
|
|
content: " (+18):";
|
|
}
|
|
.charmancer input[value="19"] + span.tasha:after {
|
|
content: " (+19):";
|
|
}
|
|
.charmancer input[value="20"] + span.tasha:after {
|
|
content: " (+20):";
|
|
}
|
|
|
|
.hero-points {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
height: 40px;
|
|
position: relative;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-columns: 40px 1fr;
|
|
grid-template-columns: 40px 1fr;
|
|
}
|
|
.hero-points > div {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.hero-points .value input {
|
|
font-size: 20px;
|
|
border: 0;
|
|
outline: none;
|
|
background: transparent;
|
|
width: 40px;
|
|
height: 40px;
|
|
text-align: center;
|
|
}
|
|
.hero-points .label button {
|
|
background-color: transparent;
|
|
color: black;
|
|
border: none;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
position: relative;
|
|
}
|
|
.hero-points .label button:before {
|
|
content: none;
|
|
}
|
|
.hero-points .label button > span {
|
|
display: inline;
|
|
font-size: 9px;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
}
|
|
.hero-points .label button > span:last-of-type {
|
|
color: orange;
|
|
display: none;
|
|
}
|
|
.hero-points .label button > span:last-of-type:before {
|
|
content: " (";
|
|
}
|
|
.hero-points .label button > span:last-of-type:after {
|
|
content: ")";
|
|
}
|
|
.hero-points .label button input {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
pointer-events: all;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
.hero-points input[name=attr_hero_points][value="0"] ~ .label button {
|
|
pointer-events: none !important;
|
|
}
|
|
.hero-points input[name=attr_hero_points][value="0"] ~ .label button * {
|
|
pointer-events: none !important;
|
|
}
|
|
.hero-points input[name=attr_hero_points][value="0"] ~ .label button > span:first-child {
|
|
opacity: 0.35;
|
|
}
|
|
.hero-points input[name=attr_hero_points][value="0"] ~ .label button > span:last-of-type {
|
|
display: inline;
|
|
}
|
|
.hero-points:after {
|
|
content: "";
|
|
border-image-source: url(https://app.roll20.net/images/dndstyling/inspiration.svg);
|
|
border-image-slice: 40% 30% 40% 30%;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border-width: 10px 50px;
|
|
border-style: solid;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
input:not([value="1"]) + .hero-points {
|
|
display: none;
|
|
}
|
|
|
|
input:not([value="1"]) + .piety {
|
|
display: none;
|
|
}
|
|
|
|
.piety {
|
|
padding: 10px 15px;
|
|
position: relative;
|
|
margin-top: 10px;
|
|
}
|
|
.piety .details-flag {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 15px;
|
|
z-index: 11;
|
|
opacity: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.piety .details-flag + span {
|
|
z-index: 10;
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 15px;
|
|
white-space: nowrap;
|
|
font-size: 20px;
|
|
font-family: pictos;
|
|
color: #A0A0A0;
|
|
cursor: pointer;
|
|
margin-top: 0px;
|
|
display: none;
|
|
line-height: 18px;
|
|
}
|
|
.piety .details-flag:not(:checked) {
|
|
display: none;
|
|
}
|
|
.piety .details-flag:checked + span {
|
|
display: block;
|
|
color: #000000;
|
|
}
|
|
.piety .details-flag:hover + span {
|
|
color: #000000 !important;
|
|
}
|
|
.piety:hover .details-flag {
|
|
display: block !important;
|
|
}
|
|
.piety:hover .details-flag + span {
|
|
display: block !important;
|
|
}
|
|
.piety .container {
|
|
position: relative;
|
|
z-index: 2;
|
|
overflow: hidden;
|
|
max-width: 100%;
|
|
}
|
|
.piety .container .header {
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-columns: 70px 10px 1fr;
|
|
grid-template-columns: 70px 1fr;
|
|
grid-gap: 10px;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.piety .container .header .score {
|
|
background: url(https://app.roll20.net/images/dndstyling/vital-box.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
position: relative;
|
|
height: 70px;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
position: relative;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.piety .container .header .score input {
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
position: relative;
|
|
color: #404040;
|
|
width: 100%;
|
|
top: auto;
|
|
margin: 0;
|
|
margin-top: 10px;
|
|
border: 0;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
.piety .container .header .score span {
|
|
position: absolute;
|
|
width: 100%;
|
|
text-align: center;
|
|
top: 7px;
|
|
left: 0;
|
|
}
|
|
.piety .container .header .deity {
|
|
text-align: left;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.piety .container .header .deity span {
|
|
color: #A0A0A0;
|
|
font-weight: normal;
|
|
font-size: 10px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
.piety .container .header .deity input {
|
|
padding: 0px;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
border: 0;
|
|
width: 100%;
|
|
}
|
|
.piety .container .earning,
|
|
.piety .container .losing {
|
|
margin-top: 10px;
|
|
}
|
|
.piety .container .earning .title,
|
|
.piety .container .losing .title {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
}
|
|
.piety .container .earning .desc,
|
|
.piety .container .losing .desc {
|
|
margin-left: 15px;
|
|
}
|
|
.piety .container .earning .desc:before,
|
|
.piety .container .losing .desc:before {
|
|
content: "";
|
|
content: "";
|
|
display: block;
|
|
width: 4px;
|
|
height: 4px;
|
|
background: black;
|
|
position: absolute;
|
|
top: 7px;
|
|
border-radius: 2px;
|
|
left: -10px;
|
|
}
|
|
.piety .container .earning .repcontrol button:first-child,
|
|
.piety .container .losing .repcontrol button:first-child {
|
|
padding-right: 0;
|
|
}
|
|
.piety .container .earning .repcontrol button:last-child,
|
|
.piety .container .losing .repcontrol button:last-child {
|
|
padding-left: 0;
|
|
}
|
|
.piety .container .none {
|
|
color: #A0A0A0;
|
|
margin-top: 10px;
|
|
}
|
|
.piety .container .devotee,
|
|
.piety .container .votary,
|
|
.piety .container .disciple,
|
|
.piety .container .champion {
|
|
margin-top: 10px;
|
|
}
|
|
.piety .container .champion .rank {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
.piety .container .toggle:not([value="0"]):not([value="1"]):not([value="2"]) ~ .none,
|
|
.piety .container .toggle:not([value]) ~ .none {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="0"] ~ .devotee {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="0"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="0"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="0"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="1"] ~ .devotee {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="1"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="1"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="1"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="2"] ~ .devotee {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="2"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="2"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="2"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="3"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="3"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="3"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="4"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="4"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="4"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="5"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="5"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="5"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="6"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="6"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="6"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="7"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="7"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="7"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="8"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="8"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="8"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="9"] ~ .votary {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="9"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="9"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="10"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="10"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="11"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="11"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="12"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="12"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="13"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="13"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="14"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="14"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="15"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="15"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="16"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="16"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="17"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="17"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="18"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="18"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="19"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="19"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="20"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="20"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="21"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="21"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="22"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="22"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="23"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="23"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="24"] ~ .disciple {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="24"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="25"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="26"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="27"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="28"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="29"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="30"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="31"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="32"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="33"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="34"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="35"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="36"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="37"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="38"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="39"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="40"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="41"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="42"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="43"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="44"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="45"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="46"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="47"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="48"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .toggle[value="49"] ~ .champion {
|
|
display: none;
|
|
}
|
|
.piety .container .subheader {
|
|
display: block;
|
|
color: #A0A0A0;
|
|
font-weight: normal;
|
|
font-size: 10px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
.piety .container .rank {
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-size: 16px;
|
|
text-transform: capitalize;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
color: #7e2d40;
|
|
}
|
|
.piety .container .rank > span:first-child:after {
|
|
content: "'s";
|
|
text-transform: lowercase;
|
|
}
|
|
.piety .container .desc {
|
|
min-height: 20px;
|
|
position: relative;
|
|
}
|
|
.piety .container .desc textarea, .piety .container .desc span {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
line-height: 16px;
|
|
}
|
|
.piety .container .desc textarea {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
min-height: 20px;
|
|
opacity: 0;
|
|
border: 0;
|
|
resize: none;
|
|
padding: 0px;
|
|
}
|
|
.piety .container .desc span {
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
.piety .container .desc input:not([value]) + textarea,
|
|
.piety .container .desc input[value=""] + textarea {
|
|
opacity: 1;
|
|
}
|
|
.piety .container .desc input:not([value]) ~ span,
|
|
.piety .container .desc input[value=""] ~ span {
|
|
opacity: 0;
|
|
}
|
|
.piety .container .desc input:not([value=""]) + textarea {
|
|
opacity: 0;
|
|
}
|
|
.piety .container .desc input:not([value=""]) ~ span {
|
|
opacity: 1;
|
|
}
|
|
.piety .container .desc textarea:focus {
|
|
opacity: 1 !important;
|
|
}
|
|
.piety .container .desc textarea:focus + span {
|
|
opacity: 0 !important;
|
|
}
|
|
.piety:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 8px solid;
|
|
border-image-source: url(https://app.roll20.net/images/dndstyling/5eBorder.svg);
|
|
border-image-slice: 4%;
|
|
z-index: 1;
|
|
}
|
|
.piety .details-flag:not(:checked) ~ .container .earning,
|
|
.piety .details-flag:not(:checked) ~ .container .losing,
|
|
.piety .details-flag:not(:checked) ~ .container .none,
|
|
.piety .details-flag:not(:checked) ~ .container .devotee,
|
|
.piety .details-flag:not(:checked) ~ .container .votary,
|
|
.piety .details-flag:not(:checked) ~ .container .disciple,
|
|
.piety .details-flag:not(:checked) ~ .container .champion {
|
|
display: none;
|
|
}
|
|
|
|
.charmancer[data-step|=utility] .steps {
|
|
display: none !important;
|
|
}
|
|
.charmancer[data-step|=utility] .previous_race_skills:empty,
|
|
.charmancer[data-step|=utility] .previous_race_other_proficiencies:empty,
|
|
.charmancer[data-step|=utility] .previous_race_traits:empty,
|
|
.charmancer[data-step|=utility] .previous_race_spells:empty {
|
|
display: none;
|
|
}
|
|
.charmancer[data-step|=utility] .lineage-label {
|
|
margin-bottom: 0;
|
|
padding-top: 30px;
|
|
margin-top: 20px;
|
|
border-top: 1px dashed #CCC;
|
|
width: calc(100% - 45px);
|
|
}
|
|
.charmancer[data-step|=utility] .lineage-name {
|
|
color: #7e2d40;
|
|
}
|
|
.charmancer[data-step|=utility] .check-label {
|
|
margin-left: 5px;
|
|
vertical-align: text-top;
|
|
}
|
|
.charmancer[data-step|=utility] .bottombar {
|
|
bottom: -1px;
|
|
height: 20px;
|
|
-webkit-box-sizing: content-box;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
span[data-i18n=imposed-disadvantage],
|
|
span[data-i18n=imposed-disadvantage] + span {
|
|
color: red;
|
|
} |