Add roll windows from actor sheet
This commit is contained in:
@@ -754,7 +754,7 @@
|
||||
}
|
||||
.oathhammer .item-list--weapon .item-list-header,
|
||||
.oathhammer .item-list--weapon .item-entry {
|
||||
grid-template-columns: 24px 1fr 4.5rem 3.5rem 2rem 1.5rem 1.8rem 3.5rem;
|
||||
grid-template-columns: 24px 1fr 4.5rem 3.5rem 2rem 1.5rem 1.8rem 5.5rem;
|
||||
}
|
||||
.oathhammer .item-list--armor .item-list-header,
|
||||
.oathhammer .item-list--armor .item-entry {
|
||||
@@ -766,11 +766,11 @@
|
||||
}
|
||||
.oathhammer .item-list--spell .item-list-header,
|
||||
.oathhammer .item-list--spell .item-entry {
|
||||
grid-template-columns: 24px 1fr 3rem 6rem 3rem 3.5rem;
|
||||
grid-template-columns: 24px 1fr 3rem 6rem 3rem 5.5rem;
|
||||
}
|
||||
.oathhammer .item-list--miracle .item-list-header,
|
||||
.oathhammer .item-list--miracle .item-entry {
|
||||
grid-template-columns: 24px 1fr 4.5rem 3.5rem;
|
||||
grid-template-columns: 24px 1fr 4.5rem 5.5rem;
|
||||
}
|
||||
.oathhammer .item-list--equipment .item-list-header,
|
||||
.oathhammer .item-list--equipment .item-entry {
|
||||
@@ -958,3 +958,610 @@
|
||||
height: auto;
|
||||
accent-color: #084a74;
|
||||
}
|
||||
.oh-roll-card {
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
border: 1px solid #535128;
|
||||
border-radius: 4px;
|
||||
padding: 6px 8px;
|
||||
background: rgba(245, 234, 208, 0.4);
|
||||
}
|
||||
.oh-roll-card .oh-roll-header {
|
||||
font-family: "BlueDragon", "Palatino Linotype", serif;
|
||||
font-size: 0.86rem;
|
||||
font-weight: bold;
|
||||
color: #2a1a0a;
|
||||
margin-bottom: 4px;
|
||||
border-bottom: 1px solid rgba(83, 81, 40, 0.2);
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
.oh-roll-card .oh-roll-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #535128;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.oh-roll-card .oh-roll-dice {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 3px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.oh-roll-card .oh-roll-dice .oh-die {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 3px;
|
||||
font-weight: bold;
|
||||
font-size: 13px;
|
||||
border: 1px solid #535128;
|
||||
}
|
||||
.oh-roll-card .oh-roll-dice .die-success {
|
||||
background: #2ecc71;
|
||||
color: #fff;
|
||||
border-color: #27ae60;
|
||||
}
|
||||
.oh-roll-card .oh-roll-dice .die-fail {
|
||||
background: #ecf0f1;
|
||||
color: #7f8c8d;
|
||||
border-color: #bdc3c7;
|
||||
}
|
||||
.oh-roll-card .oh-roll-result {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 4px 6px;
|
||||
border-radius: 3px;
|
||||
font-weight: bold;
|
||||
font-size: calc(0.86rem * 0.85);
|
||||
}
|
||||
.oh-roll-card .roll-success {
|
||||
background: rgba(46, 204, 113, 0.2);
|
||||
color: #1e8449;
|
||||
}
|
||||
.oh-roll-card .roll-failure {
|
||||
background: rgba(231, 76, 60, 0.15);
|
||||
color: #c0392b;
|
||||
}
|
||||
.oathhammer .rarity-roll-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 3px;
|
||||
cursor: pointer;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #084a74;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
.oathhammer .rarity-roll-btn:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.oathhammer .rarity-roll-btn:hover {
|
||||
color: #2a1a0a;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.oathhammer .rarity-roll-btn i {
|
||||
font-size: 0.85em;
|
||||
}
|
||||
.fvtt-oath-hammer .window-content {
|
||||
background: #f5ead0;
|
||||
padding: 6px 8px;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog {
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
min-width: 320px;
|
||||
padding: 4px 2px;
|
||||
background: #f5ead0;
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-actor-name {
|
||||
text-align: center;
|
||||
font-family: "BlueDragon", "Palatino Linotype", serif;
|
||||
font-size: calc(0.86rem * 1.2);
|
||||
color: #084a74;
|
||||
margin-bottom: 8px;
|
||||
padding-bottom: 4px;
|
||||
border-bottom: 1px solid rgba(83, 81, 40, 0.2);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog fieldset {
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 4px;
|
||||
padding: 8px 10px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog fieldset legend {
|
||||
font-family: "BlueDragon", "Palatino Linotype", serif;
|
||||
color: #535128;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
padding: 0 6px;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block {
|
||||
background: rgba(83, 81, 40, 0.06);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-skill-line {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-skill-name {
|
||||
font-weight: bold;
|
||||
font-size: calc(0.86rem * 1.1);
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-attr-info {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #535128;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-dice-preview {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-pool {
|
||||
font-size: 1.6rem;
|
||||
font-weight: bold;
|
||||
color: #084a74;
|
||||
line-height: 1;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-color-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 3px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
font-weight: bold;
|
||||
border: 1px solid;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .color-badge-white {
|
||||
background: #f0f0f0;
|
||||
color: #555;
|
||||
border-color: #ccc;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .color-badge-red {
|
||||
background: rgba(231, 76, 60, 0.12);
|
||||
color: #c0392b;
|
||||
border-color: rgba(231, 76, 60, 0.35);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .color-badge-black {
|
||||
background: rgba(44, 62, 80, 0.1);
|
||||
color: #2c3e50;
|
||||
border-color: rgba(44, 62, 80, 0.35);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-dual-attr {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin-top: 8px;
|
||||
padding-top: 6px;
|
||||
border-top: 1px dashed rgba(83, 81, 40, 0.2);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-dual-attr label {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #535128;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-info-block .roll-dual-attr select {
|
||||
flex: 1;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
padding: 2px 4px;
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 3px;
|
||||
background: rgba(255, 255, 255, 0.85);
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 4px 8px;
|
||||
padding: 5px 0;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-row:not(:last-child) {
|
||||
border-bottom: 1px solid rgba(83, 81, 40, 0.1);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-row label {
|
||||
flex: 1 1 120px;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #2a1a0a;
|
||||
white-space: nowrap;
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-row select {
|
||||
flex: 0 0 90px;
|
||||
padding: 3px 6px;
|
||||
border: 1px solid rgba(49, 47, 23, 0.2);
|
||||
border-radius: 3px;
|
||||
background: rgba(255, 255, 255, 0.85);
|
||||
color: #2a1a0a;
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-row .roll-option-hint {
|
||||
flex: 1 1 100%;
|
||||
font-size: calc(calc(0.86rem * 0.9) * 0.85);
|
||||
color: #535128;
|
||||
font-style: italic;
|
||||
padding-left: 4px;
|
||||
white-space: normal;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-luck label {
|
||||
color: #c8a84b;
|
||||
font-weight: bold;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-luck select {
|
||||
border-color: #c8a84b;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-options-block .roll-option-luck .luck-icon {
|
||||
color: #c8a84b;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.fvtt-oath-hammer .oh-roll-dialog .roll-visibility-block select {
|
||||
width: 100%;
|
||||
padding: 4px 6px;
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 3px;
|
||||
background: rgba(255, 255, 255, 0.85);
|
||||
color: #2a1a0a;
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
}
|
||||
.fvtt-oath-hammer .skills-list a.skill-name-col {
|
||||
cursor: pointer;
|
||||
color: #2a1a0a;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
.fvtt-oath-hammer .skills-list a.skill-name-col:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.fvtt-oath-hammer .skills-list a.skill-name-col .skill-roll-icon {
|
||||
font-size: 0.75em;
|
||||
color: #535128;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.fvtt-oath-hammer .skills-list a.skill-name-col:hover {
|
||||
color: #084a74;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.fvtt-oath-hammer .skills-list a.skill-name-col:hover .skill-roll-icon {
|
||||
color: #084a74;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
padding: 6px 0 8px;
|
||||
border-bottom: 1px solid rgba(83, 81, 40, 0.2);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .weapon-img-sm {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
-o-object-fit: contain;
|
||||
object-fit: contain;
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 4px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .weapon-header-info {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .weapon-name-lg {
|
||||
font-family: "BlueDragon", "Palatino Linotype", serif;
|
||||
font-size: calc(0.86rem * 1.1);
|
||||
color: #084a74;
|
||||
font-weight: bold;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .weapon-badges {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .damage-formula-badge {
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
font-weight: bold;
|
||||
color: #2a1a0a;
|
||||
background: rgba(83, 81, 40, 0.1);
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .ap-badge {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
font-weight: bold;
|
||||
color: #8b0000;
|
||||
background: rgba(139, 0, 0, 0.08);
|
||||
border: 1px solid rgba(139, 0, 0, 0.25);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .range-badge {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #535128;
|
||||
background: rgba(83, 81, 40, 0.08);
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .auto-bonus-badge {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
font-weight: bold;
|
||||
color: #987d2e;
|
||||
background: rgba(200, 168, 75, 0.12);
|
||||
border: 1px solid rgba(200, 168, 75, 0.4);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .weapon-traits-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 3px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.oh-weapon-dialog .weapon-header .trait-tag-sm {
|
||||
font-size: calc(calc(0.86rem * 0.9) * 0.85);
|
||||
color: #535128;
|
||||
background: rgba(83, 81, 40, 0.08);
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
border-radius: 3px;
|
||||
padding: 1px 5px;
|
||||
}
|
||||
.oh-weapon-dialog .pool-info-line {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #2a1a0a;
|
||||
padding: 4px 0 6px;
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
}
|
||||
.oh-weapon-dialog .pool-info-line strong {
|
||||
color: #084a74;
|
||||
font-size: calc(0.86rem * 1.1);
|
||||
}
|
||||
.oh-weapon-dialog .pool-info-line .auto-bonus {
|
||||
color: #ac8d34;
|
||||
font-weight: bold;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
}
|
||||
.oh-weapon-card .oh-roll-header,
|
||||
.oh-spell-card .oh-roll-header,
|
||||
.oh-miracle-card .oh-roll-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.oh-weapon-card .oh-card-weapon-img,
|
||||
.oh-spell-card .oh-card-weapon-img,
|
||||
.oh-miracle-card .oh-card-weapon-img {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
-o-object-fit: contain;
|
||||
object-fit: contain;
|
||||
border-radius: 3px;
|
||||
border: 1px solid rgba(83, 81, 40, 0.2);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.oh-weapon-card .oh-weapon-damage-btn-row,
|
||||
.oh-spell-card .oh-weapon-damage-btn-row,
|
||||
.oh-miracle-card .oh-weapon-damage-btn-row {
|
||||
margin-top: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
.oh-weapon-card .oh-roll-damage-btn,
|
||||
.oh-spell-card .oh-roll-damage-btn,
|
||||
.oh-miracle-card .oh-roll-damage-btn {
|
||||
background: #084a74;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
padding: 5px 14px;
|
||||
font-family: "Calibri", "Segoe UI", sans-serif;
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
.oh-weapon-card .oh-roll-damage-btn:hover,
|
||||
.oh-spell-card .oh-roll-damage-btn:hover,
|
||||
.oh-miracle-card .oh-roll-damage-btn:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.oh-weapon-card .oh-roll-damage-btn:hover,
|
||||
.oh-spell-card .oh-roll-damage-btn:hover,
|
||||
.oh-miracle-card .oh-roll-damage-btn:hover {
|
||||
background: #0b68a4;
|
||||
opacity: 1;
|
||||
}
|
||||
.oh-weapon-card .oh-ap-note,
|
||||
.oh-spell-card .oh-ap-note,
|
||||
.oh-miracle-card .oh-ap-note {
|
||||
font-size: calc(0.86rem * 0.9);
|
||||
color: #8b0000;
|
||||
font-weight: bold;
|
||||
margin-left: 8px;
|
||||
}
|
||||
.item-list--weapon .item-actions {
|
||||
gap: 8px;
|
||||
}
|
||||
.item-list--weapon .item-actions a[data-action="attackWeapon"] {
|
||||
color: #084a74;
|
||||
font-size: 1.1em;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
.item-list--weapon .item-actions a[data-action="attackWeapon"]:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.item-list--weapon .item-actions a[data-action="damageWeapon"] {
|
||||
color: #8b0000;
|
||||
font-size: 1.1em;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
.item-list--weapon .item-actions a[data-action="damageWeapon"]:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.item-list--weapon .item-actions a[data-action="edit"] {
|
||||
margin-left: 6px;
|
||||
}
|
||||
.oh-spell-dialog .dv-badge,
|
||||
.oh-miracle-dialog .dv-badge {
|
||||
background: #3a0e6b;
|
||||
color: #e8d9ff;
|
||||
border-radius: 3px;
|
||||
padding: 1px 6px;
|
||||
font-size: 0.78em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.oh-spell-dialog .tradition-badge,
|
||||
.oh-miracle-dialog .tradition-badge {
|
||||
background: #0e3a6b;
|
||||
color: #d9eeff;
|
||||
border-radius: 3px;
|
||||
padding: 1px 6px;
|
||||
font-size: 0.78em;
|
||||
}
|
||||
.oh-spell-dialog .ritual-badge,
|
||||
.oh-miracle-dialog .ritual-badge {
|
||||
background: #4a3000;
|
||||
color: #ffe8a0;
|
||||
border-radius: 3px;
|
||||
padding: 1px 6px;
|
||||
font-size: 0.78em;
|
||||
}
|
||||
.oh-spell-dialog .missile-badge,
|
||||
.oh-miracle-dialog .missile-badge {
|
||||
background: #1a4a1a;
|
||||
color: #b8ffb8;
|
||||
border-radius: 3px;
|
||||
padding: 1px 6px;
|
||||
font-size: 0.78em;
|
||||
}
|
||||
.oh-spell-dialog .range-badge,
|
||||
.oh-miracle-dialog .range-badge,
|
||||
.oh-spell-dialog .duration-badge,
|
||||
.oh-miracle-dialog .duration-badge {
|
||||
background: rgba(42, 26, 10, 0.12);
|
||||
color: #2a1a0a;
|
||||
border-radius: 3px;
|
||||
padding: 1px 6px;
|
||||
font-size: 0.75em;
|
||||
}
|
||||
.oh-spell-dialog .save-info,
|
||||
.oh-miracle-dialog .save-info {
|
||||
font-size: 0.8em;
|
||||
color: #2a1a0a;
|
||||
font-style: italic;
|
||||
margin-top: 3px;
|
||||
}
|
||||
.oh-spell-dialog .stress-tracker,
|
||||
.oh-miracle-dialog .stress-tracker {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px 10px;
|
||||
margin: 8px 0 4px;
|
||||
background: rgba(83, 81, 40, 0.1);
|
||||
border: 1px solid rgba(83, 81, 40, 0.3);
|
||||
border-radius: 4px;
|
||||
font-size: 0.88em;
|
||||
}
|
||||
.oh-spell-dialog .stress-tracker i,
|
||||
.oh-miracle-dialog .stress-tracker i {
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.oh-spell-dialog .stress-tracker .stress-warning,
|
||||
.oh-miracle-dialog .stress-tracker .stress-warning {
|
||||
margin-left: auto;
|
||||
color: #c00;
|
||||
font-weight: bold;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.oh-spell-dialog .stress-tracker.stress-danger,
|
||||
.oh-miracle-dialog .stress-tracker.stress-danger {
|
||||
background: rgba(204, 0, 0, 0.08);
|
||||
border-color: rgba(204, 0, 0, 0.4);
|
||||
}
|
||||
.oh-spell-dialog .miracle-warning,
|
||||
.oh-miracle-dialog .miracle-warning {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px 10px;
|
||||
margin: 8px 0 4px;
|
||||
background: rgba(139, 0, 0, 0.08);
|
||||
border: 1px solid rgba(139, 0, 0, 0.3);
|
||||
border-radius: 4px;
|
||||
font-size: 0.83em;
|
||||
color: #8b0000;
|
||||
font-style: italic;
|
||||
}
|
||||
.oh-spell-dialog .miracle-warning i,
|
||||
.oh-miracle-dialog .miracle-warning i {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.oh-spell-dialog select.enhancement-select,
|
||||
.oh-miracle-dialog select.enhancement-select {
|
||||
min-width: 220px;
|
||||
}
|
||||
.oh-spell-card .oh-stress-line,
|
||||
.oh-miracle-card .oh-stress-line {
|
||||
margin-top: 6px;
|
||||
padding: 4px 8px;
|
||||
background: rgba(83, 81, 40, 0.1);
|
||||
border: 1px solid rgba(83, 81, 40, 0.3);
|
||||
border-radius: 3px;
|
||||
font-size: 0.82em;
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.oh-spell-card .oh-stress-line.stress-blocked,
|
||||
.oh-miracle-card .oh-stress-line.stress-blocked {
|
||||
background: rgba(204, 0, 0, 0.08);
|
||||
border-color: rgba(204, 0, 0, 0.4);
|
||||
color: #c00;
|
||||
}
|
||||
.oh-spell-card .oh-miracle-blocked,
|
||||
.oh-miracle-card .oh-miracle-blocked {
|
||||
margin-top: 6px;
|
||||
padding: 5px 8px;
|
||||
background: rgba(139, 0, 0, 0.08);
|
||||
border: 1px solid rgba(139, 0, 0, 0.35);
|
||||
border-radius: 3px;
|
||||
font-size: 0.85em;
|
||||
color: #8b0000;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
.item-list--spell .item-actions,
|
||||
.item-list--miracle .item-actions {
|
||||
gap: 8px;
|
||||
}
|
||||
.item-list--spell .item-actions a[data-action="castSpell"] .spell-cast-icon,
|
||||
.item-list--miracle .item-actions a[data-action="castSpell"] .spell-cast-icon {
|
||||
color: #3a0e6b;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.item-list--spell .item-actions a[data-action="castMiracle"] .miracle-cast-icon,
|
||||
.item-list--miracle .item-actions a[data-action="castMiracle"] .miracle-cast-icon {
|
||||
color: #5a3000;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.item-list--spell .item-actions a[data-action="edit"],
|
||||
.item-list--miracle .item-actions a[data-action="edit"] {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user