Add mana+AP reset buttons and conditions
This commit is contained in:
@@ -2163,6 +2163,116 @@ i.prismrpg {
|
||||
.prismrpg .racial-ability-content input[type="checkbox"]:checked::after {
|
||||
color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.prismrpg .ability-content {
|
||||
font-family: var(--font-primary);
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
color: var(--color-dark-1);
|
||||
background-image: var(--background-image-base);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.prismrpg .ability-content nav.tabs [data-tab] {
|
||||
color: #636060;
|
||||
}
|
||||
.prismrpg .ability-content nav.tabs [data-tab].active {
|
||||
color: #252424;
|
||||
}
|
||||
.prismrpg .ability-content input:disabled,
|
||||
.prismrpg .ability-content select:disabled {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: transparent;
|
||||
color: var(--color-dark-3);
|
||||
}
|
||||
.prismrpg .ability-content input,
|
||||
.prismrpg .ability-content select {
|
||||
height: 1.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-color: var(--color-dark-6);
|
||||
color: var(--color-dark-2);
|
||||
}
|
||||
.prismrpg .ability-content input[name="name"] {
|
||||
height: 2.5rem;
|
||||
margin-right: 4px;
|
||||
font-family: var(--font-secondary);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
}
|
||||
.prismrpg .ability-content fieldset {
|
||||
margin-bottom: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.prismrpg .ability-content .form-fields input,
|
||||
.prismrpg .ability-content .form-fields select {
|
||||
text-align: center;
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
}
|
||||
.prismrpg .ability-content .form-fields select {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
}
|
||||
.prismrpg .ability-content legend {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
font-weight: bold;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.prismrpg .ability-content .form-fields {
|
||||
padding-top: 4px;
|
||||
}
|
||||
.prismrpg .ability-content .form-group {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: row;
|
||||
}
|
||||
.prismrpg .ability-content .form-group label {
|
||||
align-content: center;
|
||||
min-width: 10rem;
|
||||
max-width: 10rem;
|
||||
}
|
||||
.prismrpg .ability-content .form-group select,
|
||||
.prismrpg .ability-content .form-group input {
|
||||
text-align: left;
|
||||
min-width: 12rem;
|
||||
max-width: 12rem;
|
||||
}
|
||||
.prismrpg .ability-content .form-group input[type="checkbox"] {
|
||||
min-width: 1.2rem;
|
||||
max-width: 1.2rem;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.prismrpg .ability-content label {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
flex: 50%;
|
||||
}
|
||||
.prismrpg .ability-content .align-top {
|
||||
align-self: flex-start;
|
||||
padding: 0.1rem;
|
||||
margin-right: 0.2rem;
|
||||
}
|
||||
.prismrpg .ability-content .shift-right {
|
||||
margin-left: 2rem;
|
||||
}
|
||||
.prismrpg .ability-content .header {
|
||||
display: flex;
|
||||
}
|
||||
.prismrpg .ability-content .header img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
.prismrpg .ability-content input[type="checkbox"] {
|
||||
font-size: var(--font-size-14);
|
||||
width: 20px;
|
||||
padding-top: 0;
|
||||
}
|
||||
.prismrpg .ability-content input[type="checkbox"]:checked {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.prismrpg .ability-content input[type="checkbox"]:checked::after {
|
||||
color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.prismrpg .weapon-content {
|
||||
font-family: var(--font-primary);
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
@@ -4317,6 +4427,76 @@ i.prismrpg {
|
||||
.chat-log .message-content .prismrpg-item-chat-card.equipment-item .item-header {
|
||||
background: linear-gradient(135deg, #f39c12 0%, #b8730f 100%);
|
||||
}
|
||||
.new-round-message .chat-title .new-round-label {
|
||||
font-size: var(--font-size-11);
|
||||
font-style: italic;
|
||||
color: #8a7a5a;
|
||||
margin-top: 1px;
|
||||
}
|
||||
.new-round-message .new-round-actors {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 6px 0 2px;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-restore-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
width: calc(50% - 3px);
|
||||
padding: 4px 8px 4px 6px;
|
||||
border: 1px solid #7a6a45;
|
||||
border-radius: 4px;
|
||||
background: linear-gradient(135deg, #f5e6c8 0%, #e8d5a0 100%);
|
||||
cursor: pointer;
|
||||
font-size: var(--font-size-13);
|
||||
color: #3a2e1a;
|
||||
overflow: hidden;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-restore-btn span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
min-width: 0;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-restore-btn img {
|
||||
flex-shrink: 0;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
object-fit: cover;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-restore-btn:hover:not(:disabled) {
|
||||
background: linear-gradient(135deg, #fdf3dc 0%, #f0e0b0 100%);
|
||||
border-color: #a08040;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-restore-btn:disabled,
|
||||
.new-round-message .new-round-actors .new-round-restore-btn.restored {
|
||||
opacity: 0.45;
|
||||
cursor: default;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-all-btn {
|
||||
width: 100%;
|
||||
background: linear-gradient(135deg, #c8dff5 0%, #a0c0e8 100%);
|
||||
border-color: #4a6a8a;
|
||||
color: #1a2e3a;
|
||||
font-weight: bold;
|
||||
}
|
||||
.new-round-message .new-round-actors .new-round-all-btn:hover:not(:disabled) {
|
||||
background: linear-gradient(135deg, #dcedfc 0%, #b0d0f0 100%);
|
||||
border-color: #3a5a7a;
|
||||
}
|
||||
.palette.status-effects .status-separator {
|
||||
grid-column: 1 / -1;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
border: none;
|
||||
border-top: 2px solid rgba(255, 255, 255, 0.35);
|
||||
margin: 5px 0;
|
||||
position: relative;
|
||||
}
|
||||
.application.dialog.prismrpg {
|
||||
color: var(--color-dark-1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user