2274 lines
56 KiB
CSS
2274 lines
56 KiB
CSS
/* ==================== (A) Fonts ==================== */
|
|
@font-face {
|
|
font-family: "Rivanna";
|
|
src: url('../fonts/rivanna.ttf') format("truetype");
|
|
}
|
|
:root {
|
|
/* =================== 1. ACTOR SHEET FONT STYLES =========== */
|
|
--window-header-title-font-size: 1.3rem;
|
|
--window-header-title-font-weight: normal;
|
|
--window-header-title-color: #f5f5f5;
|
|
--major-button-font-size: 1.05rem;
|
|
--major-button-font-weight: normal;
|
|
--major-button-color: #dadada;
|
|
--tab-header-font-size: 1rem;
|
|
--tab-header-font-weight: 700;
|
|
--tab-header-color: #403f3e;
|
|
--tab-header-color-active: #4a0404;
|
|
--actor-input-font-size: 0.8rem;
|
|
--actor-input-font-weight: 500;
|
|
--actor-input-color: black;
|
|
--actor-label-font-size: 0.8rem;
|
|
--actor-label-font-weight: 700;
|
|
--actor-label-color: #464331c4;
|
|
/* =================== 2. DEBUGGING HIGHLIGHTERS ============ */
|
|
--debug-background-color-red: #ff000054;
|
|
--debug-background-color-blue: #1d00ff54;
|
|
--debug-background-color-green: #54ff0054;
|
|
--debug-box-shadow-red: inset 0 0 2px red;
|
|
--debug-box-shadow-blue: inset 0 0 2px blue;
|
|
--debug-box-shadow-green: inset 0 0 2px green;
|
|
}
|
|
/*@import url("https://fonts.googleapis.com/css2?family=Martel:wght@400;800&family=Roboto:wght@300;400;500&display=swap");*/
|
|
/* Global styles & Font */
|
|
.fvtt-malefices .window-app {
|
|
text-align: justify;
|
|
font-size: 16px;
|
|
letter-spacing: 1px;
|
|
}
|
|
/* Fonts */
|
|
.sheet header.sheet-header h1 input,
|
|
.window-app .window-header,
|
|
#actors .directory-list,
|
|
#navigation #scene-list .scene.nav-item {
|
|
font-size: 1rem;
|
|
}
|
|
/* For title, sidebar character and scene */
|
|
.fvtt-malefices .sheet nav.sheet-tabs {
|
|
font-size: 0.8rem;
|
|
}
|
|
/* For nav and title */
|
|
.window-app input,
|
|
.fvtt-malefices .item-form,
|
|
.sheet header.sheet-header .flex-group-center.flex-compteurs,
|
|
.sheet header.sheet-header .flex-group-center.flex-fatigue,
|
|
select,
|
|
button,
|
|
.item-checkbox,
|
|
#sidebar,
|
|
#players,
|
|
#navigation #nav-toggle {
|
|
font-size: 0.8rem;
|
|
}
|
|
.window-header {
|
|
background: rgba(0, 0, 0, 0.75);
|
|
}
|
|
.window-app.sheet .window-content {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.strong-text {
|
|
font-weight: bold;
|
|
}
|
|
.tabs .item.active,
|
|
.blessures-list li ul li:first-child:hover,
|
|
a:hover {
|
|
text-shadow: 1px 0px 0px #ff6600;
|
|
}
|
|
.rollable:hover,
|
|
.rollable:focus {
|
|
color: #000;
|
|
text-shadow: 0 0 10px red;
|
|
cursor: pointer;
|
|
}
|
|
input:hover,
|
|
select:hover {
|
|
border-width: 4px;
|
|
border-color: #554182;
|
|
}
|
|
input:disabled {
|
|
color: #1c2058;
|
|
}
|
|
select:disabled {
|
|
color: #1c2058;
|
|
}
|
|
table {
|
|
border: 1px solid #7a7971;
|
|
}
|
|
.grid,
|
|
.grid-2col {
|
|
display: grid;
|
|
grid-column: span 2 / span 2;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin: 10px 0;
|
|
padding: 0;
|
|
}
|
|
.grid-3col {
|
|
grid-column: span 3 / span 3;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
.grid-4col {
|
|
grid-column: span 4 / span 4;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
.grid-5col {
|
|
grid-column: span 5 / span 5;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
}
|
|
.grid-6col {
|
|
grid-column: span 5 / span 5;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
}
|
|
.grid-7col {
|
|
grid-column: span 7 / span 7;
|
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
}
|
|
.grid-8col {
|
|
grid-column: span 8 / span 8;
|
|
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
}
|
|
.grid-9col {
|
|
grid-column: span 9 / span 9;
|
|
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
}
|
|
.grid-10col {
|
|
grid-column: span 10 / span 10;
|
|
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
}
|
|
.grid-11col {
|
|
grid-column: span 11 / span 11;
|
|
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
}
|
|
.grid-12col {
|
|
grid-column: span 12 / span 12;
|
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
}
|
|
.flex-group-center,
|
|
.flex-group-left,
|
|
.flex-group-right {
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 5px;
|
|
}
|
|
.flex-group-left {
|
|
-webkit-box-pack: start;
|
|
-ms-flex-pack: start;
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
}
|
|
.flex-group-right {
|
|
-webkit-box-pack: end;
|
|
-ms-flex-pack: end;
|
|
justify-content: flex-end;
|
|
text-align: right;
|
|
}
|
|
.flex-center {
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
.table-create-actor {
|
|
font-size: 0.8rem;
|
|
}
|
|
.flex-between {
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
.flex-shrink {
|
|
flex: 'flex-shrink';
|
|
}
|
|
/* Styles limited to sheets */
|
|
.fvtt-malefices .sheet-header {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0 0 210px;
|
|
flex: 0 0 210px;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-box-pack: start;
|
|
-ms-flex-pack: start;
|
|
justify-content: flex-start;
|
|
margin-bottom: 10px;
|
|
}
|
|
.fvtt-malefices .sheet-header .profile-img {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0 0 128px;
|
|
flex: 0 0 128px;
|
|
width: 128px;
|
|
height: auto;
|
|
max-height: 128px;
|
|
margin-top: 0px;
|
|
margin-right: 10px;
|
|
object-fit: cover;
|
|
object-position: 50% 0;
|
|
border-width: 0px;
|
|
}
|
|
.profile-img-container {
|
|
margin-right: 0.2rem;
|
|
max-width: 140px;
|
|
width: 140px;
|
|
}
|
|
.button-img {
|
|
vertical-align: baseline;
|
|
width: 8%;
|
|
height: 8%;
|
|
max-height: 48px;
|
|
border-width: 0px;
|
|
border: 1px solid rgba(0, 0, 0, 0);
|
|
}
|
|
.button-img:hover {
|
|
color: rgba(255, 255, 128, 0.7);
|
|
border: 1px solid rgba(255, 128, 0, 0.8);
|
|
cursor: pointer;
|
|
}
|
|
.button-effect-img {
|
|
vertical-align: baseline;
|
|
width: 16px;
|
|
max-height: 16px;
|
|
height: 16;
|
|
border-width: 0;
|
|
}
|
|
.small-button-container {
|
|
height: 16px;
|
|
width: 16px;
|
|
border: 0;
|
|
vertical-align: bottom;
|
|
}
|
|
.fvtt-malefices .sheet-header .header-fields {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
}
|
|
.fvtt-malefices .sheet-header h1.charname {
|
|
height: 50px;
|
|
padding: 0px;
|
|
margin: 5px 0;
|
|
border-bottom: 0;
|
|
}
|
|
.fvtt-malefices .sheet-header h1.charname input {
|
|
font-family: Rivanna;
|
|
font-size: 3rem;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
.fvtt-malefices .sheet-tabs {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0;
|
|
flex: 0;
|
|
font-family: Rivanna;
|
|
font-size: 2.2rem;
|
|
}
|
|
.fvtt-malefices .sheet-body,
|
|
.fvtt-malefices .sheet-body .tab,
|
|
.fvtt-malefices .sheet-body .tab .editor {
|
|
height: 100%;
|
|
font-size: 0.8rem;
|
|
}
|
|
.editor {
|
|
border: 2;
|
|
height: 100%;
|
|
padding: 0 3px;
|
|
}
|
|
.medium-editor {
|
|
border: 2;
|
|
height: 240px;
|
|
padding: 0 3px;
|
|
}
|
|
.small-editor {
|
|
border: 2;
|
|
height: 120px;
|
|
padding: 0 3px;
|
|
}
|
|
.fvtt-malefices .tox .tox-editor-container {
|
|
background: #fff;
|
|
}
|
|
.fvtt-malefices .tox .tox-edit-area {
|
|
padding: 0 8px;
|
|
}
|
|
.fvtt-malefices .resource-label {
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
.fvtt-malefices .tabs {
|
|
height: 40px;
|
|
border-top: 1px solid #AAA;
|
|
border-bottom: 1px solid #AAA;
|
|
color: #000000;
|
|
}
|
|
.fvtt-malefices .tabs .item {
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
}
|
|
.fvtt-malefices .tabs .item.active {
|
|
text-decoration: underline;
|
|
text-shadow: none;
|
|
}
|
|
.fvtt-malefices .items-list {
|
|
list-style: none;
|
|
margin: 1px 0;
|
|
padding: 0;
|
|
overflow-y: auto;
|
|
}
|
|
.fvtt-malefices .items-list .item-header {
|
|
font-weight: bold;
|
|
}
|
|
.fvtt-malefices .items-list .item {
|
|
height: 30px;
|
|
line-height: 24px;
|
|
padding: 1px 0;
|
|
border-bottom: 1px solid #BBB;
|
|
}
|
|
.fvtt-malefices .items-list .item .item-image {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0 0 24px;
|
|
flex: 0 0 24px;
|
|
margin-right: 5px;
|
|
}
|
|
.fvtt-malefices .items-list .item img {
|
|
display: block;
|
|
}
|
|
.fvtt-malefices .items-list .item-name {
|
|
margin: 0;
|
|
}
|
|
.fvtt-malefices .items-list .item-controls {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0 0 86px;
|
|
flex: 0 0 86px;
|
|
text-align: right;
|
|
}
|
|
li.folder > .folder-header h3 {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
/* ======================================== */
|
|
/* Sheet */
|
|
.fvtt-malefices .window-app.sheet .window-content .sheet-header {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
/*background: #494e6b;*/
|
|
}
|
|
input[type="text"],
|
|
select[type="text"] {
|
|
background: white;
|
|
color: #494e6b;
|
|
}
|
|
select {
|
|
background: white;
|
|
color: #494e6b;
|
|
}
|
|
/* background: #011d33 url("../images/ui/fond1.webp") repeat left top;*/
|
|
/*color: rgba(168, 139, 139, 0.5);*/
|
|
.window-app.sheet .window-content .sheet-header select[type="text"],
|
|
.window-app.sheet .window-content .sheet-header input[type="text"],
|
|
.window-app.sheet .window-content .sheet-header input[type="number"],
|
|
.window-app.sheet .window-content .sheet-body input[type="text"],
|
|
.window-app.sheet .window-content .sheet-body input[type="number"],
|
|
.window-app.sheet .window-content .sheet-body select[type="text"] {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
/*color: #494e6b;*/
|
|
}
|
|
.window-app.sheet .window-content .sheet-header input[type="password"],
|
|
.window-app.sheet .window-content .sheet-header input[type="date"],
|
|
.window-app.sheet .window-content .sheet-header input[type="time"] {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
border: 1 none;
|
|
margin-bottom: 0.25rem;
|
|
margin-left: 2px;
|
|
}
|
|
.window-app.sheet .window-content .sheet-body input[type="password"],
|
|
.window-app.sheet .window-content .sheet-body input[type="date"],
|
|
.window-app.sheet .window-content .sheet-body input[type="time"] {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
border: 1 none;
|
|
margin-bottom: 0.25rem;
|
|
margin-left: 2px;
|
|
}
|
|
.window-app.sheet .window-content .sheet-body select,
|
|
.window-app.sheet .window-content .sheet-header select {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
background: #fff;
|
|
border: 1 none;
|
|
margin-bottom: 0.25rem;
|
|
margin-left: 2px;
|
|
}
|
|
.fvtt-malefices .window-app .window-content,
|
|
.fvtt-malefices .window-app.sheet .window-content .sheet-body {
|
|
font-size: 0.8rem;
|
|
/*background: url("../images/ui/pc_sheet_bg.webp") repeat left top;*/
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
/* background: rgba(245,245,240,0.6) url("../images/ui/sheet_background.webp") left top;*/
|
|
section.sheet-body {
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
.sheet header.sheet-header .profile-img {
|
|
object-fit: cover;
|
|
object-position: 50% 0;
|
|
margin: 0.5rem 0 0.5rem 0.5rem;
|
|
padding: 0;
|
|
}
|
|
nav.sheet-tabs {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
height: 3rem;
|
|
flex: 0 0 3rem;
|
|
margin: 0;
|
|
padding: 0 0 0 0.25rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
line-height: 1.5rem;
|
|
border-top: 0 none;
|
|
border-bottom: 0 none;
|
|
background-color: #252525;
|
|
color: beige;
|
|
}
|
|
/* Dice tray specific overrides */
|
|
.dice-tray button svg * {
|
|
fill: #6d5923 !important;
|
|
}
|
|
.dice-tray input[type="text"] {
|
|
color: #6d5923 !important;
|
|
}
|
|
.dice-tray button {
|
|
color: #6d5923 !important;
|
|
}
|
|
nav.sheet-tabs .item {
|
|
position: relative;
|
|
padding: 0 0.25rem;
|
|
color: beige;
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
nav.sheet-tabs .item:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 2rem;
|
|
width: 1px;
|
|
/*border-right: 1px dashed rgba(52, 52, 52, 0.25);*/
|
|
}
|
|
.sheet .tab[data-tab] {
|
|
padding: 0;
|
|
}
|
|
section.sheet-body:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.sheet header.sheet-header .flex-compteurs {
|
|
text-align: right;
|
|
}
|
|
.sheet header.sheet-header .resource-content {
|
|
width: 2rem;
|
|
}
|
|
.select-diff {
|
|
display: inline-block;
|
|
text-align: left;
|
|
width: 50px;
|
|
}
|
|
.window-app.sheet .window-content .tooltip:hover .tooltiptext {
|
|
top: 2rem;
|
|
left: 2rem;
|
|
margin: 0;
|
|
padding: 0.25rem;
|
|
}
|
|
.window-app.sheet .window-content .carac-value,
|
|
.window-app.sheet .window-content .competence-xp {
|
|
margin: 0.05rem;
|
|
flex-basis: 3rem;
|
|
text-align: center;
|
|
}
|
|
/* ======================================== */
|
|
/* Global UI elements */
|
|
/* ======================================== */
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
font-weight: bold;
|
|
}
|
|
ul,
|
|
ol {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
ul,
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
.sheet li {
|
|
margin: 0.01rem;
|
|
padding: 0.25rem;
|
|
}
|
|
.header-fields li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.alterne-list > .list-item:hover {
|
|
background: rgba(100, 100, 50, 0.25);
|
|
}
|
|
.alterne-list > .list-item:nth-child(even) {
|
|
background: rgba(80, 60, 0, 0.1);
|
|
}
|
|
.alterne-list > .list-item:nth-child(odd) {
|
|
background: #a08264;
|
|
}
|
|
.specialisation-label {
|
|
font-size: 0.8rem;
|
|
}
|
|
.carac-label,
|
|
.attr-label {
|
|
font-weight: bold;
|
|
}
|
|
.list-item {
|
|
margin: 0.125rem;
|
|
/*box-shadow: inset 0px 0px 1px #00000096;
|
|
border-radius: 0.25rem;*/
|
|
padding: 0.125rem;
|
|
flex: 1 1 5rem;
|
|
display: flex !important;
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
.list-item-shadow {
|
|
background: rgba(87, 60, 32, 0.35);
|
|
flex-grow: 0;
|
|
flex-wrap: nowrap;
|
|
justify-content: flex-start;
|
|
}
|
|
.list-item-shadow2 {
|
|
background: rgba(87, 60, 32, 0.25);
|
|
flex-grow: 0;
|
|
flex-wrap: nowrap;
|
|
justify-content: flex-start;
|
|
}
|
|
.item-display-show {
|
|
display: block;
|
|
}
|
|
.item-display-hide {
|
|
display: none;
|
|
}
|
|
.item-quantite {
|
|
margin-left: 0.5rem;
|
|
}
|
|
.list-item-margin1 {
|
|
margin-left: 1rem;
|
|
}
|
|
.list-item-margin2 {
|
|
margin-left: 2rem;
|
|
}
|
|
.list-item-margin3 {
|
|
margin-left: 3rem;
|
|
}
|
|
.list-item-margin4 {
|
|
margin-left: 4rem;
|
|
}
|
|
.sheet-competence-img {
|
|
width: 24px;
|
|
max-width: 24px;
|
|
height: 24px;
|
|
max-height: 24px;
|
|
flex-grow: 0;
|
|
margin-right: 0.25rem;
|
|
}
|
|
.competence-column {
|
|
flex-direction: column;
|
|
align-content: flex-start;
|
|
justify-content: flex-start;
|
|
flex-grow: 0;
|
|
flex-basis: 1;
|
|
}
|
|
.competence-header {
|
|
align-content: flex-start;
|
|
justify-content: flex-start;
|
|
font-weight: bold;
|
|
flex-grow: 0;
|
|
}
|
|
.description-label {
|
|
flex-grow: 2;
|
|
margin-left: 4px;
|
|
}
|
|
.status-header-label {
|
|
margin-left: 2px;
|
|
}
|
|
.roll-dialog-label {
|
|
margin: 4px 0;
|
|
min-width: 96px;
|
|
}
|
|
.short-label {
|
|
flex-grow: 1;
|
|
}
|
|
.keyword-label {
|
|
font-size: 0.85rem;
|
|
}
|
|
.item-sheet-label {
|
|
flex-grow: 1;
|
|
}
|
|
.item-text-long-line {
|
|
flex-grow: 3;
|
|
}
|
|
.score-label {
|
|
flex-grow: 2;
|
|
align-content: center;
|
|
}
|
|
.attribut-value,
|
|
.carac-value {
|
|
flex-grow: 0;
|
|
flex-basis: 64px;
|
|
margin-right: 4px;
|
|
margin-left: 4px;
|
|
}
|
|
.sante-value,
|
|
.competence-value {
|
|
flex-grow: 0;
|
|
flex-basis: 2rem;
|
|
margin-right: 0.25rem;
|
|
margin-left: 0.25rem;
|
|
}
|
|
.description-value {
|
|
flex-grow: 0;
|
|
flex-basis: 4rem;
|
|
margin-right: 0.25rem;
|
|
margin-left: 0.25rem;
|
|
}
|
|
.small-label {
|
|
margin-top: 5px;
|
|
}
|
|
.padd-right {
|
|
margin-right: 8px;
|
|
}
|
|
.padd-left {
|
|
margin-left: 8px;
|
|
}
|
|
.stack-left {
|
|
align-items: center;
|
|
flex-shrink: 1;
|
|
flex-grow: 0;
|
|
}
|
|
.packed-left {
|
|
white-space: nowrap;
|
|
flex-grow: 0;
|
|
}
|
|
.input-numeric-short {
|
|
width: 40px;
|
|
max-width: 40px;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
flex-basis: 40px;
|
|
margin-right: 0.25rem;
|
|
margin-left: 0.25rem;
|
|
}
|
|
.abilities-table {
|
|
align-content: flex-start;
|
|
}
|
|
/* ======================================== */
|
|
.tokenhudext {
|
|
display: flex;
|
|
flex: 0 !important;
|
|
font-weight: 600;
|
|
}
|
|
.tokenhudext.left {
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 2.75rem;
|
|
right: 4rem;
|
|
}
|
|
.tokenhudext.right {
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 2.75rem;
|
|
left: 4rem;
|
|
}
|
|
.control-icon.tokenhudicon {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
min-width: 6rem;
|
|
flex-basis: auto;
|
|
padding: 0;
|
|
line-height: 1rem;
|
|
margin: 0.25rem;
|
|
}
|
|
.control-icon.tokenhudicon.right {
|
|
margin-left: 8px;
|
|
}
|
|
#token-hud .status-effects.active {
|
|
z-index: 2;
|
|
}
|
|
.token-sheet .window-content .flexcol .sheet-tabs {
|
|
font-size: 0.8rem;
|
|
}
|
|
/* ======================================== */
|
|
.item-checkbox {
|
|
height: 25px;
|
|
border: 1px solid #736953a6;
|
|
border-left: none;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
color: black;
|
|
padding-top: 5px;
|
|
margin-right: 0px;
|
|
width: 45px;
|
|
position: relative;
|
|
left: 0px;
|
|
text-align: center;
|
|
}
|
|
.skill-label {
|
|
font-size: 0.7rem;
|
|
}
|
|
.skill-good-checkbox {
|
|
max-height: 10px;
|
|
max-width: 10px;
|
|
}
|
|
.flex-actions-bar {
|
|
flex-grow: 2;
|
|
}
|
|
/* ======================================== */
|
|
/* Sidebar CSS */
|
|
#sidebar {
|
|
font-size: 1rem;
|
|
/*background-position: 100%;*/
|
|
background-color: #f5f5f5;
|
|
background-position: 0px 35px;
|
|
background-repeat: no-repeat;
|
|
background-image: url("../images/ui/background_01_clear.webp");
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
#sidebar .scene {
|
|
color: rgba(237, 240, 199, 0.95);
|
|
}
|
|
/* background: rgb(105,85,65) url("../images/ui/texture_feuille_perso_onglets.webp") no-repeat right bottom;*/
|
|
#sidebar.collapsed {
|
|
height: 470px !important;
|
|
}
|
|
#sidebar-tabs > .collapsed,
|
|
#chat-controls .chat-control-icon {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
|
|
}
|
|
.sidebar-tab .directory-list .entity {
|
|
border-top: 1px dashed rgba(0, 0, 0, 0.25);
|
|
border-bottom: 0 none;
|
|
padding: 0.25rem 0;
|
|
}
|
|
.sidebar-tab .directory-list .entity:hover {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
cursor: pointer;
|
|
}
|
|
.chat-message-header {
|
|
background: rgba(220, 220, 210, 0.5);
|
|
font-size: 1.1rem;
|
|
height: 48px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.chat-message .message-header .flavor-text,
|
|
.chat-message .message-header .whisper-to {
|
|
font-size: 0.9rem;
|
|
}
|
|
.chat-result-text,
|
|
.chat-actor-name {
|
|
font-weight: bold;
|
|
font-family: Rivanna;
|
|
font-size: 1.2rem;
|
|
padding: 4px;
|
|
}
|
|
.chat-result-success {
|
|
color: darkgreen;
|
|
}
|
|
.chat-result-failure {
|
|
color: darkred;
|
|
}
|
|
.chat-img {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
.roll-dialog-header {
|
|
height: 52px;
|
|
}
|
|
.actor-icon {
|
|
float: left;
|
|
width: 48px;
|
|
height: 48px;
|
|
padding: 2px 6px 2px 2px;
|
|
}
|
|
.padding-dice {
|
|
padding-top: 0.2rem;
|
|
padding-bottom: 0.2rem;
|
|
}
|
|
.dice-image {
|
|
box-sizing: border-box;
|
|
border: none;
|
|
border-radius: 0;
|
|
max-width: 100%;
|
|
}
|
|
.dice-image-reroll {
|
|
background-color: rgba(115, 224, 115, 0.25);
|
|
border-color: #011d33;
|
|
box-sizing: border-box;
|
|
border: 1px;
|
|
border-radius: 0%;
|
|
max-width: 100%;
|
|
}
|
|
.chat-dice {
|
|
width: 15%;
|
|
height: 15%;
|
|
font-size: 15px;
|
|
padding: 10px;
|
|
padding-bottom: 20px;
|
|
padding-top: 0.2rem;
|
|
padding-bottom: 0.2rem;
|
|
}
|
|
.div-center {
|
|
align-self: center;
|
|
}
|
|
.chat-message {
|
|
background: rgba(220, 220, 210, 0.5);
|
|
font-size: 0.9rem;
|
|
}
|
|
.chat-message.whisper {
|
|
background: rgba(220, 220, 210, 0.75);
|
|
border: 2px solid #545469;
|
|
}
|
|
.chat-message .chat-icon {
|
|
border: 0;
|
|
padding: 2px 6px 2px 2px;
|
|
float: left;
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
.ability-icon {
|
|
border: 0;
|
|
padding: 2px 2px 2px 2px;
|
|
max-width: 32px;
|
|
max-height: 32px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
.small-ability-icon {
|
|
border: 0;
|
|
padding: 2px 2px 2px 2px;
|
|
max-width: 16px;
|
|
max-height: 16px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
.combat-icon {
|
|
border: 0;
|
|
padding: 2px 2px 2px 2px;
|
|
max-width: 24px;
|
|
max-height: 24px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
#sidebar-tabs {
|
|
flex: 0 0 32px;
|
|
box-sizing: border-box;
|
|
margin: 0 0 5px;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0);
|
|
box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.5);
|
|
}
|
|
#sidebar-tabs > .item.active {
|
|
border: 1px solid #726248;
|
|
background: rgba(30, 25, 20, 0.75);
|
|
box-shadow: 0 0 6px inset #726248;
|
|
}
|
|
#sidebar #sidebar-tabs i {
|
|
display: inline-block;
|
|
background-position: center;
|
|
background-size: cover;
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
|
|
}
|
|
/*--------------------------------------------------------------------------*/
|
|
/* Control, Tool, hotbar & navigation */
|
|
#controls .scene-control,
|
|
#controls .control-tool {
|
|
box-shadow: 0 0 3px #000;
|
|
margin: 0 0 8px;
|
|
border-radius: 0;
|
|
background: #1e1914;
|
|
background-origin: padding-box;
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
}
|
|
#controls .scene-control.active,
|
|
#controls .control-tool.active,
|
|
#controls .scene-control:hover,
|
|
#controls .control-tool:hover {
|
|
background: #482e1c;
|
|
background-origin: padding-box;
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
box-shadow: 0 0 3px #ff6400;
|
|
}
|
|
#hotbar #action-bar #macro-list {
|
|
border: 1px solid #482e1c;
|
|
box-shadow: 2px 2px 5px #000000;
|
|
}
|
|
#hotbar #action-bar .macro {
|
|
border-image: url(img/ui/bg_control.jpg) 21 repeat;
|
|
border-image-slice: 6 6 6 6 fill;
|
|
border-image-width: 6px 6px 6px 6px;
|
|
border-image-outset: 0px 0px 0px 0px;
|
|
border-radius: 0px;
|
|
}
|
|
#hotbar .bar-controls {
|
|
background: #1e1914;
|
|
border: 1px solid #482e1c;
|
|
}
|
|
#players {
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
background: #1e1914;
|
|
}
|
|
#navigation #scene-list .scene.nav-item.active {
|
|
background: #482e1c;
|
|
}
|
|
#navigation #scene-list .scene.nav-item {
|
|
background: #1e1914;
|
|
background-origin: padding-box;
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
}
|
|
#navigation #scene-list .scene.view,
|
|
#navigation #scene-list .scene.context {
|
|
background: #482e1c;
|
|
background-origin: padding-box;
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
box-shadow: 0 0 3px #ff6400;
|
|
}
|
|
#navigation #nav-toggle {
|
|
background: #1e1914;
|
|
background-origin: padding-box;
|
|
border-image: url(img/ui/footer-button.png) 10 repeat;
|
|
border-image-width: 4px;
|
|
border-image-outset: 0px;
|
|
}
|
|
/* Tooltip container */
|
|
.tooltip {
|
|
position: relative;
|
|
display: inline-block;
|
|
/*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
|
|
}
|
|
/* Tooltip text */
|
|
.tooltip .tooltiptext {
|
|
text-align: left;
|
|
background: rgba(231, 229, 226, 0.9);
|
|
width: 150px;
|
|
padding: 3px 0;
|
|
font-size: 0.9rem;
|
|
/* Position the tooltip text */
|
|
top: 1px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
/* Fade in tooltip */
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
.tooltip-nobottom {
|
|
border-bottom: unset;
|
|
/* If you want dots under the hoverable text */
|
|
}
|
|
/* Show the tooltip text when you mouse over the tooltip container */
|
|
.tooltip:hover .tooltiptext {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
.chat-card-button {
|
|
box-shadow: inset 0px 1px 0px 0px #a6827e;
|
|
background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%);
|
|
background-color: #7d5d3b00;
|
|
border-radius: 3px;
|
|
border: 2px ridge #846109;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
font-size: 0.8rem;
|
|
padding: 4px 12px 0px 12px;
|
|
text-decoration: none;
|
|
text-shadow: 0px 1px 0px #4d3534;
|
|
position: relative;
|
|
margin: 2px;
|
|
}
|
|
.chat-card-button:hover {
|
|
background: linear-gradient(to bottom, #800000 5%, #3e0101 100%);
|
|
background-color: red;
|
|
}
|
|
.chat-card-button:active {
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
.plus-minus-button {
|
|
box-shadow: inset 0px 1px 0px 0px #a6827e;
|
|
background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%);
|
|
background-color: #7d5d3b00;
|
|
border-radius: 2px;
|
|
border: 1px ridge #846109;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
margin: 2px 2px 2px 2px;
|
|
padding: 2px 2px 2px 2px;
|
|
text-decoration: none;
|
|
text-shadow: 0px 1px 0px #4d3534;
|
|
position: relative;
|
|
margin: 0px;
|
|
}
|
|
.plus-minus-button:hover,
|
|
.chat-card-button:hover {
|
|
background: linear-gradient(to bottom, #800000 5%, #3e0101 100%);
|
|
background-color: red;
|
|
}
|
|
.plus-minus-button:active,
|
|
.chat-card-button:active {
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
.plus-minus {
|
|
font-size: 0.9rem;
|
|
font-weight: bold;
|
|
}
|
|
.ul-level1 {
|
|
padding-left: 2rem;
|
|
}
|
|
/*************************************************************/
|
|
#pause {
|
|
font-size: 2rem;
|
|
}
|
|
#pause > h3 {
|
|
color: #CCC;
|
|
}
|
|
#pause > img {
|
|
content: url(../images/ui/logo_pause.webp);
|
|
height: 200px;
|
|
width: 200px;
|
|
top: -100px;
|
|
left: calc(50% - 132px);
|
|
}
|
|
#logo {
|
|
content: url(../images/ui/logo_pause.webp);
|
|
width: 100px;
|
|
height: 60px;
|
|
}
|
|
.dice-cell {
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
.dice-formula,
|
|
.dice-total {
|
|
height: 54px;
|
|
position: relative;
|
|
}
|
|
.status-small-label {
|
|
font-size: 0.65rem;
|
|
}
|
|
.no-grow {
|
|
flex-grow: 1;
|
|
max-width: 32px;
|
|
}
|
|
.status-col-name {
|
|
max-width: 72px;
|
|
}
|
|
.img-no-border {
|
|
max-width: 48px;
|
|
max-height: 48px;
|
|
border: 0px;
|
|
}
|
|
.items-title-bg {
|
|
margin-top: 6px;
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
.items-title-text {
|
|
margin-left: 4px;
|
|
}
|
|
.lock-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.item-sheet-img {
|
|
width: 64px;
|
|
height: auto;
|
|
border: 0;
|
|
}
|
|
.item-name-img {
|
|
flex-grow: 1;
|
|
max-width: 2rem;
|
|
min-width: 2rem;
|
|
}
|
|
.item-name-label-header {
|
|
flex-grow: 2;
|
|
max-width: 12rem;
|
|
min-width: 12rem;
|
|
}
|
|
.item-name-label-header-long {
|
|
flex-grow: 2;
|
|
max-width: 14rem;
|
|
min-width: 14rem;
|
|
}
|
|
.item-name-label-header-long2 {
|
|
flex-grow: 2;
|
|
max-width: 24rem;
|
|
min-width: 24rem;
|
|
}
|
|
.item-name-label {
|
|
flex-grow: 2;
|
|
max-width: 10rem;
|
|
min-width: 10rem;
|
|
}
|
|
.item-name-label-long {
|
|
margin-top: 4px;
|
|
flex-grow: 2;
|
|
max-width: 10rem;
|
|
min-width: 10rem;
|
|
}
|
|
.item-name-label-short {
|
|
flex-grow: 1;
|
|
max-width: 4rem;
|
|
min-width: 4rem;
|
|
}
|
|
.item-name-label-medium {
|
|
margin-top: 4px;
|
|
flex-grow: 2;
|
|
max-width: 6rem;
|
|
min-width: 6rem;
|
|
}
|
|
.item-name-label-long2 {
|
|
margin-top: 4px;
|
|
flex-grow: 2;
|
|
max-width: 22rem;
|
|
min-width: 22rem;
|
|
}
|
|
.item-name-label-level2 {
|
|
flex-grow: 2;
|
|
max-width: 9rem;
|
|
min-width: 9rem;
|
|
}
|
|
.item-field-label-short {
|
|
flex-grow: 1;
|
|
max-width: 4rem;
|
|
min-width: 4rem;
|
|
}
|
|
.item-field-label-medium {
|
|
flex-grow: 1;
|
|
max-width: 6rem;
|
|
min-width: 6rem;
|
|
}
|
|
.item-field-skill {
|
|
flex-grow: 1;
|
|
max-width: 6.8rem;
|
|
min-width: 6.8rem;
|
|
}
|
|
.item-field-label-long {
|
|
flex-grow: 1;
|
|
max-width: 10rem;
|
|
min-width: 10rem;
|
|
}
|
|
.item-control-end {
|
|
align-self: flex-end;
|
|
}
|
|
.alternate-list {
|
|
margin-top: 4px;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.item-filler {
|
|
flex-grow: 6;
|
|
flex-shrink: 7;
|
|
}
|
|
.item-controls-fixed {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.attribute-label {
|
|
font-weight: bold;
|
|
}
|
|
.flexrow-no-expand {
|
|
flex-grow: 0;
|
|
}
|
|
.item-input-small {
|
|
max-width: 16px;
|
|
max-height: 12px;
|
|
}
|
|
.flip-tarot {
|
|
transform: scaleY(-1);
|
|
}
|
|
.tarot-fixed-width {
|
|
width: 140px;
|
|
max-width: 140px;
|
|
}
|
|
.tarot-title {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
.character-summary-rollable {
|
|
text-decoration: underline;
|
|
}
|
|
/* ===================================================================
|
|
AppV2 Dialogs — Style Belle Époque (France, ~1900)
|
|
Palette : bordeaux, or antique, sépia, fond parchemin clair
|
|
=================================================================== */
|
|
.malefices-roll-dialog .window-content {
|
|
padding: 0;
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
color: #3d2b1f;
|
|
font-size: 0.85rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog header.roll-dialog-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 0.6rem 0.75rem 0.5rem;
|
|
background: linear-gradient(to bottom, rgba(90, 10, 20, 0.12), rgba(90, 10, 20, 0.04));
|
|
border-bottom: 2px solid rgba(139, 105, 20, 0.45);
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .actor-icon {
|
|
width: 52px;
|
|
height: 52px;
|
|
object-fit: cover;
|
|
border: 2px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
|
|
flex-shrink: 0;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-roll-title {
|
|
color: #5a0a14;
|
|
font-family: Rivanna, serif;
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
flex: 1;
|
|
line-height: 1.1;
|
|
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-separator {
|
|
width: 100%;
|
|
height: 18px;
|
|
background: url("../images/ui/separator_01.webp") center / auto 100% no-repeat;
|
|
opacity: 0.7;
|
|
margin: 0.1rem 0;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
padding: 0.5rem 0.75rem 0.75rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-attribute-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
gap: 0.5rem;
|
|
padding: 0.3rem 0.5rem;
|
|
background: #c8a84b;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-attribute-row .dialog-attr-label {
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.1rem;
|
|
color: #5a0a14;
|
|
font-weight: bold;
|
|
flex: 1;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-attribute-row .dialog-attr-value {
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
color: #3d2b1f;
|
|
min-width: 2rem;
|
|
text-align: right;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-section-title {
|
|
font-family: Rivanna, serif;
|
|
font-size: 0.95rem;
|
|
color: #8b6914;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
padding-bottom: 0.15rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-bio-list {
|
|
list-style: none;
|
|
margin: 0 0 0.25rem 0;
|
|
padding: 0 0 0 0.5rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-bio-list li {
|
|
color: #3d2b1f;
|
|
font-size: 0.8rem;
|
|
padding: 0.1rem 0;
|
|
border-bottom: 1px dashed rgba(139, 105, 20, 0.2);
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-bio-list li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-bio-list li::before {
|
|
content: "✦ ";
|
|
color: #8b6914;
|
|
font-size: 0.65rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifiers {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
margin-top: 0.2rem;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.25rem 0.5rem;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.18);
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row:hover {
|
|
background: rgba(61, 43, 31, 0.06);
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row .dialog-modifier-label {
|
|
flex: 1;
|
|
color: #3d2b1f;
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
cursor: default;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row select {
|
|
flex: 0 0 140px;
|
|
width: 140px;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
background: rgba(255, 252, 245, 0.85);
|
|
color: #3d2b1f;
|
|
font-size: 0.82rem;
|
|
padding: 1px 4px;
|
|
border-radius: 2px;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row select:hover {
|
|
border-color: #8b6914;
|
|
border-width: 2px;
|
|
}
|
|
.malefices-roll-dialog .skill-roll-dialog .dialog-modifier-row select:focus {
|
|
outline: none;
|
|
border-color: #5a0a14;
|
|
box-shadow: 0 0 3px rgba(90, 10, 20, 0.3);
|
|
}
|
|
.malefices-roll-dialog footer.form-footer {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0.75rem;
|
|
background: linear-gradient(to bottom, rgba(139, 105, 20, 0.08), rgba(139, 105, 20, 0.16));
|
|
border-top: 1px solid rgba(139, 105, 20, 0.45);
|
|
}
|
|
.malefices-roll-dialog footer.form-footer button {
|
|
flex: 1;
|
|
padding: 0.4rem 0.75rem;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
background: linear-gradient(to bottom, rgba(255, 252, 240, 0.9), rgba(240, 230, 200, 0.9));
|
|
color: #3d2b1f;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
.malefices-roll-dialog footer.form-footer button:hover {
|
|
background: linear-gradient(to bottom, rgba(240, 220, 170, 0.95), rgba(220, 195, 140, 0.95));
|
|
border-color: #8b6914;
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-roll-dialog footer.form-footer button[data-action="roll"],
|
|
.malefices-roll-dialog footer.form-footer button[type="submit"] {
|
|
background: linear-gradient(to bottom, #5a0a14, #35060c);
|
|
color: rgba(255, 245, 220, 0.95);
|
|
border-color: #2c050a;
|
|
font-size: 0.95rem;
|
|
}
|
|
.malefices-roll-dialog footer.form-footer button[data-action="roll"]:hover,
|
|
.malefices-roll-dialog footer.form-footer button[type="submit"]:hover {
|
|
background: linear-gradient(to bottom, #710d19, #5a0a14);
|
|
border-color: #5a0a14;
|
|
color: #fff;
|
|
}
|
|
/* ===================================================================
|
|
Dialogs AppV2 partagés (class: MaleficesDialog)
|
|
— utilisé par Tirage Tarot et Résumé des Personnages
|
|
=================================================================== */
|
|
.MaleficesDialog .window-content {
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
padding: 0;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
.MaleficesDialog .character-summary-container {
|
|
padding: 0.5rem 0.75rem;
|
|
color: #3d2b1f;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.2rem 0.4rem;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.4);
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item.item-header {
|
|
background: linear-gradient(135deg, rgba(90, 10, 20, 0.1), rgba(139, 105, 20, 0.1));
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
margin-bottom: 0.25rem;
|
|
font-family: "Cinzel Decorative", "Cinzel", serif;
|
|
font-size: 0.65rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.04em;
|
|
color: #5a0a14;
|
|
text-transform: uppercase;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item.item-header:not(:first-child) {
|
|
margin-top: 0.5rem;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item:hover:not(.item-header) {
|
|
background: rgba(139, 105, 20, 0.08);
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item-field {
|
|
flex: 1;
|
|
text-align: center;
|
|
font-size: 0.85rem;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item-field.item-name {
|
|
flex: 3;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item-field.item-name-label-long {
|
|
flex: 3;
|
|
text-align: left;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item-field.item-name-label-short {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .item-field.right {
|
|
text-align: right;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list a.summary-roll,
|
|
.MaleficesDialog .character-summary-container .items-list a.actor-open {
|
|
cursor: pointer;
|
|
color: #3d2b1f;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list a.summary-roll:hover,
|
|
.MaleficesDialog .character-summary-container .items-list a.actor-open:hover {
|
|
color: #5a0a14;
|
|
text-decoration: underline;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .actor-delete {
|
|
color: rgba(61, 43, 31, 0.5);
|
|
font-size: 0.75rem;
|
|
cursor: pointer;
|
|
}
|
|
.MaleficesDialog .character-summary-container .items-list .actor-delete:hover {
|
|
color: #5a0a14;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog {
|
|
display: block;
|
|
padding: 0.6rem 0.75rem;
|
|
color: #3d2b1f;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-select-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 0.4rem 0.6rem;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(135deg, rgba(90, 10, 20, 0.08), rgba(139, 105, 20, 0.08));
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-select-row .tirage-select-label {
|
|
flex: 1;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: #3d2b1f;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-select-row .tirage-select {
|
|
flex: 0 0 180px;
|
|
width: 180px;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
background: rgba(255, 252, 240, 0.85);
|
|
color: #3d2b1f;
|
|
font-size: 0.85rem;
|
|
padding: 2px 4px;
|
|
border-radius: 2px;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-select-row .tirage-select:focus {
|
|
outline: none;
|
|
border-color: #5a0a14;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-attribute-row {
|
|
background: linear-gradient(135deg, rgba(20, 80, 20, 0.08), rgba(30, 100, 30, 0.05));
|
|
border-color: rgba(30, 100, 30, 0.35);
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-section {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-section .tirage-section-title {
|
|
display: block;
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 1rem;
|
|
color: #5a0a14;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
padding-bottom: 0.2rem;
|
|
margin-bottom: 0.4rem;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-section .tirage-section-title i {
|
|
margin-right: 0.35rem;
|
|
font-size: 0.85em;
|
|
opacity: 0.7;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-section .tirage-section-title .tirage-player-name {
|
|
font-size: 0.85rem;
|
|
font-style: italic;
|
|
color: #3d2b1f;
|
|
opacity: 0.8;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-section .tirage-secret-title {
|
|
color: rgba(61, 43, 31, 0.7);
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-cards-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.6rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
width: 100px;
|
|
vertical-align: top;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card:hover {
|
|
position: relative;
|
|
z-index: 100;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card:hover .tirage-card-img {
|
|
transform: scale(2.2);
|
|
transform-origin: center top;
|
|
box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card .tirage-card-img {
|
|
width: 100px;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
transform-origin: center center;
|
|
cursor: zoom-in;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card .tirage-card-name {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 0.75rem;
|
|
color: #5a0a14;
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card .tirage-card-side {
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card .tirage-card-side.tirage-positif {
|
|
color: #1a5c1a;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card .tirage-card-side.tirage-negatif {
|
|
color: #5a0a14;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card.tirage-card-secret {
|
|
opacity: 0.85;
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-card.tirage-card-secret .tirage-card-name {
|
|
color: rgba(61, 43, 31, 0.7);
|
|
}
|
|
.MaleficesDialog .tirage-tarot-dialog .tirage-separator {
|
|
display: block;
|
|
height: 18px;
|
|
background: url("../images/ui/separator_01.webp") center / auto 100% no-repeat;
|
|
opacity: 0.5;
|
|
margin: 0.25rem 0;
|
|
}
|
|
.MaleficesDialog .tirage-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 0.4rem 0.75rem;
|
|
border-top: 1px solid rgba(139, 105, 20, 0.45);
|
|
background: linear-gradient(to bottom, rgba(139, 105, 20, 0.08), rgba(139, 105, 20, 0.16));
|
|
}
|
|
.MaleficesDialog .tirage-footer .tirage-close-btn {
|
|
padding: 0.3rem 1rem;
|
|
font-size: 0.85rem;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
background: linear-gradient(to bottom, rgba(255, 252, 240, 0.9), rgba(240, 230, 200, 0.9));
|
|
color: #3d2b1f;
|
|
cursor: pointer;
|
|
}
|
|
.MaleficesDialog .tirage-footer .tirage-close-btn:hover {
|
|
background: linear-gradient(to bottom, rgba(240, 220, 170, 0.95), rgba(220, 195, 140, 0.95));
|
|
border-color: #8b6914;
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card {
|
|
font-size: 0.85rem;
|
|
color: #3d2b1f;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
background: #dadad0;
|
|
}
|
|
.malefices-chat-card .chat-card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
padding: 0.2rem 0.4rem;
|
|
background: linear-gradient(135deg, rgba(90, 10, 20, 0.12), rgba(139, 105, 20, 0.12));
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
}
|
|
.malefices-chat-card .chat-card-header .chat-actor-img {
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
object-fit: cover;
|
|
flex-shrink: 0;
|
|
}
|
|
.malefices-chat-card .chat-card-header .chat-actor-name {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 1.1rem;
|
|
font-weight: normal;
|
|
color: #5a0a14;
|
|
line-height: 1.1;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
flex: 1;
|
|
}
|
|
.malefices-chat-card .chat-card-header .chat-header-roll {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.3rem;
|
|
padding-left: 0.4rem;
|
|
border-left: 1px solid rgba(139, 105, 20, 0.45);
|
|
}
|
|
.malefices-chat-card .chat-card-header .chat-header-roll .chat-roll-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
object-fit: cover;
|
|
flex-shrink: 0;
|
|
}
|
|
.malefices-chat-card .chat-card-header .chat-header-roll .chat-roll-name {
|
|
font-size: 0.75rem;
|
|
color: rgba(61, 43, 31, 0.8);
|
|
font-style: italic;
|
|
max-width: 80px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.malefices-chat-card .chat-card-separator {
|
|
height: 14px;
|
|
margin: 0.15rem 0.4rem 0;
|
|
background: url("../images/ui/separator_01.webp") center / auto 100% no-repeat;
|
|
opacity: 0.55;
|
|
}
|
|
.malefices-chat-card .chat-roll-details {
|
|
margin: 0;
|
|
padding: 0 0.4rem 0.15rem;
|
|
}
|
|
.malefices-chat-card .chat-roll-details .chat-detail-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
padding: 0.05rem 0;
|
|
border-bottom: 1px dotted rgba(139, 105, 20, 0.2);
|
|
}
|
|
.malefices-chat-card .chat-roll-details .chat-detail-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.malefices-chat-card .chat-roll-details .chat-detail-row dt {
|
|
color: rgba(61, 43, 31, 0.75);
|
|
font-weight: normal;
|
|
font-size: 0.8rem;
|
|
}
|
|
.malefices-chat-card .chat-roll-details .chat-detail-row dd {
|
|
font-weight: 600;
|
|
color: #3d2b1f;
|
|
font-size: 0.85rem;
|
|
margin-left: 0.5rem;
|
|
}
|
|
.malefices-chat-card .chat-roll-details .chat-detail-target dd,
|
|
.malefices-chat-card .chat-roll-details .chat-detail-roll dd {
|
|
font-size: 1rem;
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card .chat-card-result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.1rem;
|
|
margin: 0.2rem 0.4rem 0.25rem;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 2px;
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 1.15rem;
|
|
text-align: center;
|
|
border: 1px solid transparent;
|
|
}
|
|
.malefices-chat-card .chat-card-result.result-success {
|
|
background: linear-gradient(135deg, rgba(20, 80, 20, 0.12), rgba(40, 100, 40, 0.08));
|
|
border-color: rgba(30, 100, 30, 0.35);
|
|
color: #1a5c1a;
|
|
}
|
|
.malefices-chat-card .chat-card-result.result-failure {
|
|
background: linear-gradient(135deg, rgba(90, 10, 20, 0.12), rgba(120, 20, 20, 0.08));
|
|
border-color: rgba(90, 10, 20, 0.35);
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card .chat-card-result i {
|
|
margin-right: 0.3rem;
|
|
}
|
|
.malefices-chat-card .chat-card-result .chat-result-damage {
|
|
font-family: sans-serif;
|
|
font-size: 0.85rem;
|
|
opacity: 0.85;
|
|
font-style: normal;
|
|
}
|
|
.malefices-chat-card .chat-card-actions {
|
|
padding: 0.15rem 0.4rem 0.25rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.malefices-chat-card .chat-card-actions .chat-card-button {
|
|
padding: 0.3rem 1rem;
|
|
font-size: 0.82rem;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
background: linear-gradient(to bottom, rgba(255, 252, 240, 0.9), rgba(240, 230, 200, 0.9));
|
|
color: #3d2b1f;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
.malefices-chat-card .chat-card-actions .chat-card-button:hover {
|
|
background: linear-gradient(to bottom, rgba(240, 220, 170, 0.95), rgba(220, 195, 140, 0.95));
|
|
border-color: #8b6914;
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card .tarot-card-display {
|
|
display: flex;
|
|
gap: 0.6rem;
|
|
align-items: flex-start;
|
|
padding: 0.3rem 0.5rem 0.4rem;
|
|
position: relative;
|
|
}
|
|
.malefices-chat-card .tarot-card-display:hover {
|
|
z-index: 100;
|
|
}
|
|
.malefices-chat-card .tarot-card-display:hover .tarot-card-img {
|
|
transform: scale(2.5);
|
|
box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-img {
|
|
width: 126px;
|
|
flex-shrink: 0;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
transform-origin: left center;
|
|
cursor: zoom-in;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
padding-top: 0.2rem;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-name {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 1rem;
|
|
color: #5a0a14;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-side {
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-side.tarot-positif {
|
|
color: #1a5c1a;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-side.tarot-negatif {
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-value {
|
|
font-size: 0.82rem;
|
|
color: #3d2b1f;
|
|
}
|
|
.malefices-chat-card .tarot-card-display .tarot-card-info .tarot-card-value strong {
|
|
color: #5a0a14;
|
|
font-size: 1rem;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .item-type-label {
|
|
font-family: "Cinzel Decorative", "Cinzel", serif;
|
|
font-size: 0.65rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: #5a0a14;
|
|
opacity: 0.8;
|
|
margin-left: auto;
|
|
align-self: center;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .item-damage {
|
|
font-weight: 700;
|
|
color: #5a0a14;
|
|
font-size: 1rem;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .item-damage.item-damage-crit {
|
|
color: #8b0000;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .chat-item-description {
|
|
margin: 0.4rem 0.5rem 0.3rem;
|
|
font-size: 0.82rem;
|
|
color: #3d2b1f;
|
|
line-height: 1.5;
|
|
border-top: 1px solid rgba(139, 105, 20, 0.5);
|
|
padding-top: 0.4rem;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .chat-item-description p {
|
|
margin: 0 0 0.3rem;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .chat-item-description p:last-child {
|
|
margin: 0;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .chat-item-description em {
|
|
color: #5a0a14;
|
|
font-style: italic;
|
|
}
|
|
.malefices-chat-card.malefices-chat-item .chat-item-description strong {
|
|
color: #3d2b1f;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-body {
|
|
padding: 0.3rem 0.6rem 0.4rem;
|
|
font-size: 0.82rem;
|
|
color: #3d2b1f;
|
|
line-height: 1.4;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-body p {
|
|
margin: 0.2rem 0;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-body .welcome-title {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 0.95rem;
|
|
color: #5a0a14;
|
|
font-weight: normal;
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-body a {
|
|
color: #8b6914;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-body a:hover {
|
|
color: #5a0a14;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-commands {
|
|
margin-top: 0.4rem;
|
|
border-top: 1px solid rgba(139, 105, 20, 0.45);
|
|
padding-top: 0.3rem;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-commands .welcome-commands-title {
|
|
font-weight: 700;
|
|
font-size: 0.8rem;
|
|
color: #3d2b1f;
|
|
margin-bottom: 0.2rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-commands .welcome-command-row {
|
|
font-size: 0.8rem;
|
|
color: #3d2b1f;
|
|
margin: 0.1rem 0;
|
|
}
|
|
.malefices-chat-card.malefices-welcome .welcome-commands .welcome-command-row code {
|
|
background: rgba(139, 105, 20, 0.12);
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
padding: 0 3px;
|
|
font-size: 0.78rem;
|
|
color: #5a0a14;
|
|
}
|
|
/* ===================================================================
|
|
AppV2 Item Sheets
|
|
Selectors use .fvtt-malefices.item (both classes on the same root
|
|
element, no space) to target only AppV2 item sheet windows.
|
|
=================================================================== */
|
|
.fvtt-malefices.item {
|
|
/* window-content: background and remove padding.
|
|
Foundry AppV2 already sets: display:flex flex-flow:column overflow:hidden */
|
|
/* All sections inside item fill their flex container */
|
|
/* Fixed header bar */
|
|
/* sheet-body: scroll container */
|
|
/* Override legacy height: 100% on tab divs; hide all tabs, show only the active one */
|
|
/* Header layout override for item sheets (smaller than actor sheet header) */
|
|
/* Tab navigation: AppV2 uses nav.tabs (not nav.sheet-tabs) */
|
|
}
|
|
.fvtt-malefices.item .window-content {
|
|
padding: 0;
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
color: rgba(19, 18, 18, 0.95);
|
|
font-size: 0.8rem;
|
|
}
|
|
.fvtt-malefices.item section {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
.fvtt-malefices.item .header {
|
|
flex: 0 0 auto;
|
|
border-bottom: 1px solid #999;
|
|
}
|
|
.fvtt-malefices.item section.sheet-body {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
.fvtt-malefices.item .tab[data-tab] {
|
|
height: auto;
|
|
display: none;
|
|
}
|
|
.fvtt-malefices.item .tab[data-tab].active {
|
|
display: block;
|
|
}
|
|
.fvtt-malefices.item .sheet-header {
|
|
flex: 0 0 auto;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
.fvtt-malefices.item .item-sheet-img {
|
|
flex: 0 0 64px;
|
|
width: 64px;
|
|
height: 64px;
|
|
object-fit: cover;
|
|
border: 1px solid #999;
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-malefices.item .item-sheet-title {
|
|
flex: 1;
|
|
}
|
|
.fvtt-malefices.item .item-sheet-title h1 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border-bottom: none;
|
|
}
|
|
.fvtt-malefices.item .item-sheet-title h1 input {
|
|
background: transparent;
|
|
border: none;
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.8rem;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.fvtt-malefices.item .header-actions {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
align-items: center;
|
|
}
|
|
.fvtt-malefices.item nav.tabs {
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
height: 3rem;
|
|
margin: 0;
|
|
padding: 0 0 0 0.25rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
line-height: 3rem;
|
|
border-top: 0 none;
|
|
border-bottom: 0 none;
|
|
background-color: #252525;
|
|
color: beige;
|
|
gap: 0.25rem;
|
|
}
|
|
.fvtt-malefices.item nav.tabs a.item {
|
|
position: relative;
|
|
padding: 0 0.5rem;
|
|
color: beige;
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.2rem;
|
|
text-decoration: none;
|
|
line-height: 3rem;
|
|
}
|
|
.fvtt-malefices.item nav.tabs a.item:hover {
|
|
text-shadow: 1px 0px 0px #ff6600;
|
|
}
|
|
.fvtt-malefices.item nav.tabs a.item.active {
|
|
text-shadow: 1px 0px 0px #ff6600;
|
|
text-decoration: underline;
|
|
}
|
|
/* ===================================================================
|
|
AppV2 Actor Sheets
|
|
=================================================================== */
|
|
/* NOTE: DocumentSheetV2 uses tag:"form" — the APPLICATION ROOT is the <form>.
|
|
The DOM is: form.application > section.window-content > section.editable > ...
|
|
There is NO <form> child inside window-content. */
|
|
.fvtt-malefices.actor {
|
|
/* window-content: background and remove Foundry's default padding.
|
|
Foundry AppV2 already sets: display:flex flex-flow:column overflow:hidden */
|
|
/* All sections inside actor fill their flex container and form a flex column.
|
|
This covers: section.editable (template root) and section.sheet-body. */
|
|
/* sheet-body: scroll container instead of clipping */
|
|
/* Override legacy fixed 210px height — shrink to fit content */
|
|
/* Override legacy "height: 100%" on .tab divs so their content
|
|
can overflow sheet-body and trigger the scrollbar;
|
|
hide all tabs, show only the active one */
|
|
/* Tab navigation */
|
|
/* Force dark text on section titles and labels inside actor sheet body
|
|
(overrides Foundry core heading/label colors from the default dark theme) */
|
|
/* ── Belle Époque aesthetic improvements ─────────────────────────── */
|
|
}
|
|
.fvtt-malefices.actor .window-content {
|
|
padding: 0;
|
|
background: url("../images/ui/background_01_clear.webp");
|
|
color: rgba(19, 18, 18, 0.95);
|
|
font-size: 0.8rem;
|
|
}
|
|
.fvtt-malefices.actor section {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
.fvtt-malefices.actor section.sheet-body {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
.fvtt-malefices.actor .sheet-header {
|
|
flex: 0 0 auto;
|
|
overflow: visible;
|
|
}
|
|
.fvtt-malefices.actor .tab[data-tab] {
|
|
height: auto;
|
|
display: none;
|
|
}
|
|
.fvtt-malefices.actor .tab[data-tab].active {
|
|
display: block;
|
|
}
|
|
.fvtt-malefices.actor nav.tabs {
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
height: 3rem;
|
|
margin: 0;
|
|
padding: 0 0 0 0.25rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
line-height: 3rem;
|
|
border-top: 0 none;
|
|
border-bottom: 0 none;
|
|
background-color: #252525;
|
|
color: beige;
|
|
gap: 0.25rem;
|
|
}
|
|
.fvtt-malefices.actor nav.tabs a.item {
|
|
position: relative;
|
|
padding: 0 0.5rem;
|
|
color: beige;
|
|
font-family: Rivanna, serif;
|
|
font-size: 1.2rem;
|
|
text-decoration: none;
|
|
line-height: 3rem;
|
|
}
|
|
.fvtt-malefices.actor nav.tabs a.item:hover {
|
|
text-shadow: 1px 0px 0px #ff6600;
|
|
}
|
|
.fvtt-malefices.actor nav.tabs a.item.active {
|
|
text-shadow: 1px 0px 0px #ff6600;
|
|
text-decoration: underline;
|
|
}
|
|
.fvtt-malefices.actor section.sheet-body h1,
|
|
.fvtt-malefices.actor section.sheet-body h2,
|
|
.fvtt-malefices.actor section.sheet-body h3,
|
|
.fvtt-malefices.actor section.sheet-body h4,
|
|
.fvtt-malefices.actor section.sheet-body label,
|
|
.fvtt-malefices.actor section.sheet-body span,
|
|
.fvtt-malefices.actor section.sheet-body a {
|
|
color: rgba(19, 18, 18, 0.95);
|
|
}
|
|
.fvtt-malefices.actor .sheet-header .profile-img {
|
|
border: 2px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
|
|
}
|
|
.fvtt-malefices.actor .sheet-header h1.charname input {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 1.3rem;
|
|
color: #5a0a14;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
background: transparent;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
}
|
|
.fvtt-malefices.actor .sheet-header input[type="text"] {
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
background: transparent;
|
|
}
|
|
.fvtt-malefices.actor .sheet-header input[type="text"]:focus {
|
|
outline: none;
|
|
border-bottom-color: #5a0a14;
|
|
box-shadow: none;
|
|
}
|
|
.fvtt-malefices.actor .items-title-bg {
|
|
background: linear-gradient(to right, rgba(90, 10, 20, 0.15), rgba(139, 105, 20, 0.1)) !important;
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-top: 1px solid rgba(139, 105, 20, 0.45);
|
|
margin-top: 6px;
|
|
}
|
|
.fvtt-malefices.actor .items-title-bg .items-title-text {
|
|
font-family: Rivanna, serif, serif;
|
|
font-size: 0.9rem;
|
|
color: #5a0a14 !important;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
.fvtt-malefices.actor a.roll-attribut,
|
|
.fvtt-malefices.actor a.roll-arme {
|
|
color: #3d2b1f !important;
|
|
font-weight: 600;
|
|
transition: color 0.12s;
|
|
}
|
|
.fvtt-malefices.actor a.roll-attribut i,
|
|
.fvtt-malefices.actor a.roll-arme i {
|
|
color: rgba(139, 105, 20, 0.8);
|
|
margin-left: 0.2rem;
|
|
font-size: 0.75em;
|
|
}
|
|
.fvtt-malefices.actor a.roll-attribut:hover,
|
|
.fvtt-malefices.actor a.roll-arme:hover {
|
|
color: #5a0a14 !important;
|
|
text-decoration: none;
|
|
}
|
|
.fvtt-malefices.actor a.roll-attribut:hover i,
|
|
.fvtt-malefices.actor a.roll-arme:hover i {
|
|
color: #5a0a14;
|
|
}
|
|
.fvtt-malefices.actor input.item-field-label-short,
|
|
.fvtt-malefices.actor input.item-field-label-medium {
|
|
text-align: center;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
color: #5a0a14;
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 2px;
|
|
background: rgba(255, 252, 240, 0.6);
|
|
}
|
|
.fvtt-malefices.actor input.item-field-label-short:focus,
|
|
.fvtt-malefices.actor input.item-field-label-medium:focus {
|
|
outline: none;
|
|
border-color: #5a0a14;
|
|
box-shadow: 0 0 3px rgba(90, 10, 20, 0.2);
|
|
}
|
|
.fvtt-malefices.actor .alternate-list .list-item:nth-child(even) {
|
|
background: rgba(139, 105, 20, 0.07);
|
|
}
|
|
.fvtt-malefices.actor .alternate-list .list-item:nth-child(odd) {
|
|
background: rgba(61, 43, 31, 0.04);
|
|
}
|
|
.fvtt-malefices.actor .alternate-list .list-item:hover {
|
|
background: rgba(139, 105, 20, 0.15) !important;
|
|
}
|
|
.fvtt-malefices.actor .sheet-competence-img {
|
|
border: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-radius: 1px;
|
|
}
|
|
.fvtt-malefices.actor .item-controls a.item-control {
|
|
color: rgba(61, 43, 31, 0.6);
|
|
}
|
|
.fvtt-malefices.actor .item-controls a.item-control:hover {
|
|
color: #5a0a14;
|
|
}
|
|
.fvtt-malefices.actor .tab.biodata input[type="text"] {
|
|
border-bottom: 1px solid rgba(139, 105, 20, 0.45);
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
background: transparent;
|
|
color: #3d2b1f;
|
|
}
|
|
.fvtt-malefices.actor .tab.biodata input[type="text"]:focus {
|
|
outline: none;
|
|
border-bottom-color: #5a0a14;
|
|
}
|
|
.fvtt-malefices.actor .tab.biodata label.item-name-label-medium {
|
|
font-weight: 600;
|
|
color: #3d2b1f !important;
|
|
}
|
|
/*# sourceMappingURL=malefices.css.map */
|
|
/*# sourceMappingURL=simple.css.map */
|