Potions et élémentaires
This commit is contained in:
@@ -806,6 +806,169 @@ li {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
.mournblade-item-card {
|
||||
font-family: CentaurMT, serif;
|
||||
color: #2a1a0a;
|
||||
background: linear-gradient(180deg, #fdf6e3 0%, #f7ead0 100%);
|
||||
border: 1px solid #8b4513;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.mournblade-item-card .item-card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background: linear-gradient(135deg, #4a0404 0%, #8b0000 50%, #6b2020 100%);
|
||||
padding: 10px 12px;
|
||||
border-bottom: 2px solid #c8860a;
|
||||
}
|
||||
.mournblade-item-card .item-card-header .item-card-img {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 4px;
|
||||
border: 2px solid #c8860a;
|
||||
object-fit: cover;
|
||||
flex-shrink: 0;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.mournblade-item-card .item-card-header .item-card-title {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.mournblade-item-card .item-card-header .item-card-title .item-card-name {
|
||||
margin: 0 0 4px 0;
|
||||
padding: 0;
|
||||
font-family: Charlemagne, CentaurMT, serif;
|
||||
font-size: 1.05rem;
|
||||
font-weight: bold;
|
||||
color: #f5deb3;
|
||||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
|
||||
white-space: normal;
|
||||
line-height: 1.2;
|
||||
border: none;
|
||||
}
|
||||
.mournblade-item-card .item-card-header .item-card-title .item-card-type-badge {
|
||||
display: inline-block;
|
||||
background: rgba(200, 134, 10, 0.3);
|
||||
border: 1px solid #c8860a;
|
||||
border-radius: 10px;
|
||||
padding: 1px 8px;
|
||||
font-size: 0.72rem;
|
||||
color: #f5deb3;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.mournblade-item-card .item-card-header .item-card-title .item-card-type-badge i {
|
||||
margin-right: 3px;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats {
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid rgba(139, 69, 19, 0.2);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
font-size: 0.85rem;
|
||||
padding: 2px 0;
|
||||
border-bottom: 1px dotted rgba(139, 69, 19, 0.12);
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row .stat-label {
|
||||
color: #6b3a1f;
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row .stat-label i {
|
||||
margin-right: 4px;
|
||||
color: #8b4513;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row .stat-value {
|
||||
color: #2a1a0a;
|
||||
text-align: right;
|
||||
font-weight: normal;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row .stat-value.stat-highlight {
|
||||
font-weight: bold;
|
||||
color: #4a0404;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row.stat-flag {
|
||||
justify-content: flex-start;
|
||||
color: #6b3a1f;
|
||||
font-style: italic;
|
||||
font-size: 0.8rem;
|
||||
border-bottom: none;
|
||||
padding: 1px 0;
|
||||
}
|
||||
.mournblade-item-card .item-card-stats .stat-row.stat-flag i {
|
||||
margin-right: 5px;
|
||||
color: #8b0000;
|
||||
}
|
||||
.mournblade-item-card .item-card-divider {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 6px 12px 0;
|
||||
gap: 8px;
|
||||
font-size: 0.72rem;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
color: #8b4513;
|
||||
font-weight: bold;
|
||||
}
|
||||
.mournblade-item-card .item-card-divider::before,
|
||||
.mournblade-item-card .item-card-divider::after {
|
||||
content: '';
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, #c8860a, transparent);
|
||||
}
|
||||
.mournblade-item-card .item-card-description {
|
||||
padding: 8px 12px 10px;
|
||||
font-size: 0.88rem;
|
||||
line-height: 1.5;
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.mournblade-item-card .item-card-description p {
|
||||
margin: 0 0 6px 0;
|
||||
}
|
||||
.mournblade-item-card .item-card-description p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.mournblade-item-card .item-card-description em,
|
||||
.mournblade-item-card .item-card-description i {
|
||||
color: #5a2a0a;
|
||||
}
|
||||
.mournblade-item-card .item-card-description strong,
|
||||
.mournblade-item-card .item-card-description b {
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.mournblade-item-card .item-card-sacrifice {
|
||||
background: rgba(100, 0, 0, 0.05);
|
||||
border-top: 1px solid rgba(139, 0, 0, 0.2);
|
||||
font-style: italic;
|
||||
color: #5a0000;
|
||||
}
|
||||
.mournblade-item-card.mournblade-item-card--compact .item-card-header {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
.mournblade-item-card.mournblade-item-card--compact .item-card-header .item-card-img {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
}
|
||||
.mournblade-item-card.mournblade-item-card--compact .item-card-header .item-card-name {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.mournblade-item-card.mournblade-item-card--compact .item-card-description {
|
||||
padding: 6px 10px 8px;
|
||||
}
|
||||
.roll-dialog-header {
|
||||
height: 52px;
|
||||
}
|
||||
@@ -1954,6 +2117,40 @@ li {
|
||||
margin-right: 6px;
|
||||
color: #ff8c00;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos {
|
||||
padding: 8px;
|
||||
background: rgba(40, 0, 60, 0.85);
|
||||
border-top: 2px solid #9400d3;
|
||||
border-left: 4px solid #ff00ff;
|
||||
color: #f0d0ff;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-header {
|
||||
font-weight: bold;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 6px;
|
||||
color: #ff88ff;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-header i {
|
||||
margin-right: 6px;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-effect {
|
||||
line-height: 1.4;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-effect i {
|
||||
margin-right: 6px;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-effect.desastre {
|
||||
color: #ff4444;
|
||||
font-weight: bold;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-effect.echec_absolu {
|
||||
color: #ffaa44;
|
||||
}
|
||||
.mournblade-chat-result .result-chaos .chaos-effect.rien {
|
||||
color: #aaaacc;
|
||||
font-style: italic;
|
||||
}
|
||||
.mournblade-chat-result .predilection-section {
|
||||
padding: 8px;
|
||||
background: rgba(220, 200, 255, 0.4);
|
||||
@@ -2079,6 +2276,11 @@ li {
|
||||
text-decoration: none;
|
||||
transition: all 0.2s;
|
||||
font-size: 0.9rem;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
font-family: inherit;
|
||||
}
|
||||
.mournblade-welcome-message .welcome-content .welcome-section .section-text .welcome-link i {
|
||||
margin-right: 4px;
|
||||
@@ -2115,6 +2317,370 @@ li {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
.sortilege-dialog,
|
||||
.potion-dialog,
|
||||
.invocation-dialog {
|
||||
font-family: CentaurMT, serif;
|
||||
color: #2a1a0a;
|
||||
padding: 10px;
|
||||
background: url("../assets/ui/pc_sheet_bg.webp") repeat left top;
|
||||
}
|
||||
.sortilege-dialog label,
|
||||
.potion-dialog label,
|
||||
.invocation-dialog label,
|
||||
.sortilege-dialog input,
|
||||
.potion-dialog input,
|
||||
.invocation-dialog input,
|
||||
.sortilege-dialog span,
|
||||
.potion-dialog span,
|
||||
.invocation-dialog span,
|
||||
.sortilege-dialog p,
|
||||
.potion-dialog p,
|
||||
.invocation-dialog p {
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.sortilege-dialog th,
|
||||
.potion-dialog th,
|
||||
.invocation-dialog th,
|
||||
.sortilege-dialog td,
|
||||
.potion-dialog td,
|
||||
.invocation-dialog td {
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.sortilege-dialog .sortilege-header,
|
||||
.potion-dialog .sortilege-header,
|
||||
.invocation-dialog .sortilege-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
padding: 6px 10px;
|
||||
background: linear-gradient(135deg, #4a0404 0%, #6d0808 100%);
|
||||
border: 1px solid #8b0000;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.sortilege-dialog .sortilege-header .sortilege-actor-info,
|
||||
.potion-dialog .sortilege-header .sortilege-actor-info,
|
||||
.invocation-dialog .sortilege-header .sortilege-actor-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
.sortilege-dialog .sortilege-header .sortilege-actor-img,
|
||||
.potion-dialog .sortilege-header .sortilege-actor-img,
|
||||
.invocation-dialog .sortilege-header .sortilege-actor-img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 4px;
|
||||
border: 2px solid #a05020;
|
||||
object-fit: cover;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.sortilege-dialog .sortilege-header .sortilege-actor-name,
|
||||
.potion-dialog .sortilege-header .sortilege-actor-name,
|
||||
.invocation-dialog .sortilege-header .sortilege-actor-name {
|
||||
font-weight: bold;
|
||||
font-size: 1.05rem;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
.sortilege-dialog .sortilege-header .sortilege-ame-info,
|
||||
.potion-dialog .sortilege-header .sortilege-ame-info,
|
||||
.invocation-dialog .sortilege-header .sortilege-ame-info {
|
||||
font-size: 0.88rem;
|
||||
color: #fde0ff;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
.sortilege-dialog .sortilege-header .sortilege-ame-info strong,
|
||||
.potion-dialog .sortilege-header .sortilege-ame-info strong,
|
||||
.invocation-dialog .sortilege-header .sortilege-ame-info strong {
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.sortilege-dialog .sortilege-mode-row,
|
||||
.potion-dialog .sortilege-mode-row,
|
||||
.invocation-dialog .sortilege-mode-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 5px 4px;
|
||||
border-bottom: 1px solid rgba(139, 69, 19, 0.4);
|
||||
}
|
||||
.sortilege-dialog .sortilege-mode-row label,
|
||||
.potion-dialog .sortilege-mode-row label,
|
||||
.invocation-dialog .sortilege-mode-row label {
|
||||
flex-shrink: 0;
|
||||
font-weight: bold;
|
||||
color: #5a1a00;
|
||||
}
|
||||
.sortilege-dialog .sortilege-mode-row select,
|
||||
.potion-dialog .sortilege-mode-row select,
|
||||
.invocation-dialog .sortilege-mode-row select {
|
||||
flex: 1;
|
||||
background: #3a1a08 !important;
|
||||
border: 1px solid #c06030 !important;
|
||||
border-radius: 3px;
|
||||
padding: 5px 8px;
|
||||
color: #ffffff !important;
|
||||
font-family: CentaurMT, serif;
|
||||
font-size: 0.95rem;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd070' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-position: right 8px center !important;
|
||||
background-size: 10px 7px !important;
|
||||
padding-right: 28px;
|
||||
}
|
||||
.sortilege-dialog .sortilege-mode-row select option,
|
||||
.potion-dialog .sortilege-mode-row select option,
|
||||
.invocation-dialog .sortilege-mode-row select option {
|
||||
background: #1a0e06;
|
||||
color: #ffffff;
|
||||
font-weight: normal;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table,
|
||||
.potion-dialog .sortilege-runes-table,
|
||||
.invocation-dialog .sortilege-runes-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 12px;
|
||||
font-size: 0.88rem;
|
||||
border: 1px solid #6b3010;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table thead tr th,
|
||||
.potion-dialog .sortilege-runes-table thead tr th,
|
||||
.invocation-dialog .sortilege-runes-table thead tr th {
|
||||
background: #3a1808;
|
||||
padding: 6px 8px;
|
||||
text-align: center;
|
||||
border-bottom: 2px solid #8b4513;
|
||||
color: #ffd070;
|
||||
font-weight: bold;
|
||||
font-size: 0.82rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row {
|
||||
border-bottom: 1px solid rgba(139, 69, 19, 0.3);
|
||||
transition: background 0.15s;
|
||||
background: rgba(255, 240, 210, 0.3);
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:last-child,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:last-child,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:nth-child(even),
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:nth-child(even),
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:nth-child(even) {
|
||||
background: rgba(200, 160, 100, 0.15);
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:hover,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:hover,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row:hover {
|
||||
background: rgba(139, 69, 19, 0.15);
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row.rune-selected,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row.rune-selected,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row.rune-selected {
|
||||
background: rgba(139, 69, 19, 0.25);
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row td,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row td,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row td {
|
||||
padding: 5px 8px;
|
||||
vertical-align: middle;
|
||||
color: #2a1a0a;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .rune-mini-img,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .rune-mini-img,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .rune-mini-img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
vertical-align: middle;
|
||||
margin-right: 4px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(139, 69, 19, 0.5);
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points {
|
||||
width: 55px;
|
||||
text-align: center;
|
||||
background: #3a1a08;
|
||||
border: 1px solid #8b4513;
|
||||
border-radius: 3px;
|
||||
color: #f0e8d8;
|
||||
padding: 2px 4px;
|
||||
font-family: CentaurMT, serif;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points option,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points option,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points option {
|
||||
background: #1a0e06;
|
||||
color: #f0e8d8;
|
||||
}
|
||||
.sortilege-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points:disabled,
|
||||
.potion-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points:disabled,
|
||||
.invocation-dialog .sortilege-runes-table tbody tr.sortilege-rune-row .sortilege-rune-points:disabled {
|
||||
opacity: 0.35;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.sortilege-dialog .sortilege-summary,
|
||||
.potion-dialog .sortilege-summary,
|
||||
.invocation-dialog .sortilege-summary {
|
||||
background: linear-gradient(135deg, #4a0404 0%, #3a1808 100%);
|
||||
border: 1px solid #8b4513;
|
||||
border-left: 4px solid #c0392b;
|
||||
border-radius: 4px;
|
||||
padding: 10px 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.sortilege-dialog .sortilege-summary .summary-row,
|
||||
.potion-dialog .sortilege-summary .summary-row,
|
||||
.invocation-dialog .sortilege-summary .summary-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 6px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.sortilege-dialog .sortilege-summary .summary-row:last-child,
|
||||
.potion-dialog .sortilege-summary .summary-row:last-child,
|
||||
.invocation-dialog .sortilege-summary .summary-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.sortilege-dialog .sortilege-summary .summary-row .summary-label,
|
||||
.potion-dialog .sortilege-summary .summary-row .summary-label,
|
||||
.invocation-dialog .sortilege-summary .summary-row .summary-label {
|
||||
font-weight: bold;
|
||||
color: #f0d8b0;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
.sortilege-dialog .sortilege-summary .summary-row .summary-value,
|
||||
.potion-dialog .sortilege-summary .summary-row .summary-value,
|
||||
.invocation-dialog .sortilege-summary .summary-row .summary-value {
|
||||
color: #ffd700;
|
||||
font-weight: bold;
|
||||
font-size: 1.05rem;
|
||||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
.sortilege-dialog .flexrow,
|
||||
.potion-dialog .flexrow,
|
||||
.invocation-dialog .flexrow {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 8px;
|
||||
padding: 3px 4px;
|
||||
}
|
||||
.sortilege-dialog .flexrow label,
|
||||
.potion-dialog .flexrow label,
|
||||
.invocation-dialog .flexrow label {
|
||||
flex: 1;
|
||||
color: #5a1a00;
|
||||
font-size: 0.9rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
.sortilege-dialog .flexrow input[type="number"],
|
||||
.potion-dialog .flexrow input[type="number"],
|
||||
.invocation-dialog .flexrow input[type="number"] {
|
||||
width: 70px;
|
||||
background: #3a1a08;
|
||||
border: 1px solid #8b4513;
|
||||
border-radius: 3px;
|
||||
padding: 3px 8px;
|
||||
color: #f0e8d8;
|
||||
text-align: center;
|
||||
font-family: CentaurMT, serif;
|
||||
}
|
||||
.sortilege-dialog .flexrow .sortilege-modificateur-select,
|
||||
.potion-dialog .flexrow .sortilege-modificateur-select,
|
||||
.invocation-dialog .flexrow .sortilege-modificateur-select {
|
||||
width: 90px;
|
||||
background: #3a1a08;
|
||||
border: 1px solid #8b4513;
|
||||
border-radius: 3px;
|
||||
padding: 4px 8px;
|
||||
color: #f0e8d8;
|
||||
font-family: CentaurMT, serif;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sortilege-dialog .flexrow .sortilege-modificateur-select option,
|
||||
.potion-dialog .flexrow .sortilege-modificateur-select option,
|
||||
.invocation-dialog .flexrow .sortilege-modificateur-select option {
|
||||
background: #1a0e06;
|
||||
color: #f0e8d8;
|
||||
}
|
||||
.sortilege-dialog .flexrow input[type="checkbox"],
|
||||
.potion-dialog .flexrow input[type="checkbox"],
|
||||
.invocation-dialog .flexrow input[type="checkbox"] {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
flex-shrink: 0;
|
||||
accent-color: #c0392b;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary {
|
||||
margin-top: 8px;
|
||||
border-top: 1px solid rgba(139, 69, 19, 0.3);
|
||||
padding-top: 6px;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .details-section-title {
|
||||
font-weight: bold;
|
||||
font-size: 0.85rem;
|
||||
color: #4a0404;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .details-section-title i {
|
||||
margin-right: 4px;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail {
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 3px 0;
|
||||
font-size: 0.82rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-mini-img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 2px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-name {
|
||||
flex: 1;
|
||||
font-weight: bold;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-formule {
|
||||
font-style: italic;
|
||||
color: #5a3a8a;
|
||||
font-size: 0.8rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-pts,
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-actions {
|
||||
color: #666;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.mournblade-chat-result .sortilege-runes-summary .sortilege-rune-detail .rune-duree {
|
||||
color: #4a2060;
|
||||
font-style: italic;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.mournblade-chat-result .rune-formule {
|
||||
font-style: italic;
|
||||
color: #5a3a8a;
|
||||
}
|
||||
/* ==================== Item Sheet Styles ==================== */
|
||||
/* Item header with image and name */
|
||||
.fvtt-mournblade.item {
|
||||
@@ -2386,6 +2952,159 @@ li {
|
||||
padding: 0.5rem;
|
||||
color: #000;
|
||||
}
|
||||
/* ============================================= */
|
||||
/* Potion Item Sheet */
|
||||
/* ============================================= */
|
||||
.potion-content .potion-header-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
padding: 0.5rem;
|
||||
background: rgba(139, 0, 0, 0.08);
|
||||
border-radius: 4px;
|
||||
border: 1px solid rgba(139, 0, 0, 0.2);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.potion-content .potion-statut-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.35rem;
|
||||
padding: 0.2rem 0.6rem;
|
||||
border-radius: 12px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
.potion-content .potion-statut-badge.statut-efficace {
|
||||
background: rgba(0, 128, 0, 0.15);
|
||||
color: #155215;
|
||||
border: 1px solid #4a904a;
|
||||
}
|
||||
.potion-content .potion-statut-badge.statut-heroique {
|
||||
background: rgba(180, 120, 0, 0.15);
|
||||
color: #7a5000;
|
||||
border: 1px solid #c89000;
|
||||
}
|
||||
.potion-content .potion-statut-badge.statut-inefficace {
|
||||
background: rgba(100, 100, 100, 0.15);
|
||||
color: #555;
|
||||
border: 1px solid #888;
|
||||
}
|
||||
.potion-content .potion-statut-badge.statut-poison {
|
||||
background: rgba(100, 0, 100, 0.15);
|
||||
color: #4a004a;
|
||||
border: 1px solid #880088;
|
||||
}
|
||||
.potion-content .potion-statut-badge.statut-inconnue {
|
||||
background: rgba(50, 50, 50, 0.1);
|
||||
color: #666;
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
/* Potion in chat */
|
||||
.potion-rune-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
padding: 0.4rem;
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
border-radius: 4px;
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
.potion-rune-info .potion-rune-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.potion-rune-info .potion-rune-seuil {
|
||||
font-size: 0.85rem;
|
||||
color: #666;
|
||||
}
|
||||
.potion-rune-info .potion-haut-parler {
|
||||
font-size: 0.85rem;
|
||||
color: #555;
|
||||
font-style: italic;
|
||||
}
|
||||
.potion-result-gm {
|
||||
border: 1px dashed rgba(139, 0, 0, 0.4);
|
||||
background: rgba(139, 0, 0, 0.05);
|
||||
border-radius: 4px;
|
||||
padding: 0.4rem;
|
||||
}
|
||||
.potion-result-gm .potion-result-title {
|
||||
font-size: 0.95rem;
|
||||
margin: 0 0 0.3rem;
|
||||
}
|
||||
.potion-result-gm .potion-heroique {
|
||||
color: #8B6900;
|
||||
}
|
||||
.potion-result-gm .potion-efficace {
|
||||
color: #155215;
|
||||
}
|
||||
.potion-result-gm .potion-inefficace {
|
||||
color: #555;
|
||||
}
|
||||
.potion-result-gm .potion-poison {
|
||||
color: #660066;
|
||||
}
|
||||
.potion-result-player {
|
||||
font-style: italic;
|
||||
color: #666;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
/* Potion dialog */
|
||||
.potion-dialog .potion-dialog-section {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.potion-dialog .potion-dialog-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
||||
padding-bottom: 0.2rem;
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
.potion-dialog .potion-runes-table {
|
||||
width: 100%;
|
||||
font-size: 0.85rem;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.potion-dialog .potion-runes-table th,
|
||||
.potion-dialog .potion-runes-table td {
|
||||
padding: 0.2rem 0.4rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.potion-dialog .potion-runes-table .potion-rune-row:hover {
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.potion-dialog .potion-runes-table .potion-rune-radio {
|
||||
cursor: pointer;
|
||||
}
|
||||
.potion-dialog .potion-runes-table .rune-mini-img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
vertical-align: middle;
|
||||
margin-right: 4px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(139, 69, 19, 0.5);
|
||||
object-fit: cover;
|
||||
}
|
||||
.potion-dialog .potion-summary {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
border-radius: 4px;
|
||||
padding: 0.4rem 0.6rem;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.potion-dialog .potion-summary .summary-row {
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
.potion-dialog .potion-summary .summary-label {
|
||||
font-weight: bold;
|
||||
min-width: 150px;
|
||||
}
|
||||
.potion-dialog .potion-info-note {
|
||||
color: #888;
|
||||
font-style: italic;
|
||||
gap: 0.4rem;
|
||||
align-items: center;
|
||||
}
|
||||
/* ==================== Actor Sheet Styles ==================== */
|
||||
.fvtt-mournblade.actor {
|
||||
background: url("../assets/ui/pc_sheet_bg.webp") repeat;
|
||||
@@ -3086,5 +3805,47 @@ li {
|
||||
.stat-group-alignment .alignment-info .info-label strong {
|
||||
color: #ffd700;
|
||||
}
|
||||
/* ==================== Sortilège Launch Button ==================== */
|
||||
.fvtt-mournblade.sheet .header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
padding: 4px 0;
|
||||
}
|
||||
.fvtt-mournblade.sheet .header-actions .chat-card-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 5px 12px;
|
||||
background: linear-gradient(135deg, #6b1a1a 0%, #8b2222 50%, #6b1a1a 100%);
|
||||
border: 1px solid #c0392b;
|
||||
border-radius: 4px;
|
||||
color: #f5e6d3;
|
||||
font-family: CentaurMT, serif;
|
||||
font-size: 0.9rem;
|
||||
cursor: pointer;
|
||||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
transition: all 0.2s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.fvtt-mournblade.sheet .header-actions .chat-card-button i {
|
||||
color: #d4af37;
|
||||
}
|
||||
.fvtt-mournblade.sheet .header-actions .chat-card-button:hover {
|
||||
background: linear-gradient(135deg, #8b2222 0%, #a52a2a 50%, #8b2222 100%);
|
||||
border-color: #d4af37;
|
||||
color: #fff;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
.fvtt-mournblade.sheet .header-actions .chat-card-button:hover i {
|
||||
color: #ffd700;
|
||||
}
|
||||
.fvtt-mournblade.sheet .header-actions .chat-card-button:active {
|
||||
background: linear-gradient(135deg, #5a1010 0%, #6b1a1a 50%, #5a1010 100%);
|
||||
transform: translateY(1px);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
/*# sourceMappingURL=mournblade.css.map */
|
||||
/*# sourceMappingURL=mournblade.css.map */
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user