2021-02-24 12:55:30 +01:00
|
|
|
@use "../utils/mixins";
|
|
|
|
@use "../utils/variables";
|
2021-02-24 04:52:32 +01:00
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
.ds4-item-list {
|
2021-02-26 03:17:27 +01:00
|
|
|
@include mixins.mark-invalid-or-disabled-input;
|
|
|
|
|
2021-02-24 04:52:32 +01:00
|
|
|
$row-height: 1.75em;
|
2021-02-25 19:07:25 +01:00
|
|
|
|
2021-02-26 03:17:27 +01:00
|
|
|
align-items: center;
|
2021-02-24 04:52:32 +01:00
|
|
|
display: grid;
|
|
|
|
grid-column-gap: 0.5em;
|
|
|
|
grid-row-gap: 0.2em;
|
2021-02-26 02:13:18 +01:00
|
|
|
margin: 0.5em 0;
|
2021-02-25 19:07:25 +01:00
|
|
|
overflow-y: auto;
|
2021-02-26 03:17:27 +01:00
|
|
|
padding: 0;
|
2021-02-25 19:07:25 +01:00
|
|
|
|
|
|
|
&--weapon {
|
2021-02-24 04:52:32 +01:00
|
|
|
grid-template-columns: $row-height $row-height 3ch 3fr $row-height 1fr 3ch 5fr 4ch;
|
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
&--armor {
|
2021-02-24 04:52:32 +01:00
|
|
|
grid-template-columns: $row-height $row-height 3ch 3fr 1fr 1fr 3ch 5fr 4ch;
|
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
&--shield {
|
2021-02-25 22:22:05 +01:00
|
|
|
grid-template-columns: $row-height $row-height 3ch 1fr 3ch 3fr 4ch;
|
2021-02-24 04:52:32 +01:00
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
&--equipment {
|
2021-02-25 22:22:05 +01:00
|
|
|
grid-template-columns: $row-height $row-height 3ch 1fr 10ch 3fr 4ch;
|
2021-02-24 04:52:32 +01:00
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
&--loot {
|
2021-02-25 22:22:05 +01:00
|
|
|
grid-template-columns: $row-height 3ch 1fr 10ch 3fr 4ch;
|
2021-02-24 04:52:32 +01:00
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
&--spell {
|
2021-02-24 04:52:32 +01:00
|
|
|
grid-template-columns: $row-height $row-height 2fr $row-height 1fr 1fr 1fr 1fr 4ch;
|
|
|
|
}
|
2021-02-25 22:22:05 +01:00
|
|
|
&--talent {
|
|
|
|
grid-template-columns: $row-height 1fr 1fr 3fr 4ch;
|
|
|
|
}
|
|
|
|
&--racial-ability,
|
|
|
|
&--language,
|
2021-02-25 22:38:35 +01:00
|
|
|
&--alphabet,
|
|
|
|
&--special-creature-ability {
|
2021-02-25 22:22:05 +01:00
|
|
|
grid-template-columns: $row-height 1fr 3fr 4ch;
|
|
|
|
}
|
2021-02-24 04:52:32 +01:00
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
&__row {
|
2021-02-26 02:30:58 +01:00
|
|
|
display: contents; // TODO: Once chromium supports `grid-template-columns: subgrid` (https://bugs.chromium.org/p/chromium/issues/detail?id=618969), switch to `display: grid; grid: 1/-1; grid-template-columns: subgrid`
|
2021-02-24 04:52:32 +01:00
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
&--header {
|
2021-02-24 04:52:32 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
height: $row-height;
|
|
|
|
line-height: $row-height;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
}
|
2021-02-24 04:52:32 +01:00
|
|
|
|
2021-02-26 03:17:27 +01:00
|
|
|
&__image {
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 100%;
|
2021-03-04 00:14:16 +01:00
|
|
|
|
|
|
|
&--rollable:hover {
|
|
|
|
background-image: url("../../../icons/svg/d20-black.svg") !important;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-02-26 03:17:27 +01:00
|
|
|
}
|
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
&__editable {
|
2021-02-26 03:17:27 +01:00
|
|
|
background-color: transparent;
|
2021-02-25 19:07:25 +01:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
2021-02-26 03:17:27 +01:00
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
&--checkbox {
|
2021-02-24 04:52:32 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2021-02-25 19:07:25 +01:00
|
|
|
}
|
2021-02-24 04:52:32 +01:00
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
&__description {
|
2021-02-24 04:52:32 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2021-02-26 03:17:27 +01:00
|
|
|
|
2021-02-24 04:52:32 +01:00
|
|
|
:not(:first-child) {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-02-26 03:17:27 +01:00
|
|
|
|
2021-02-24 04:52:32 +01:00
|
|
|
> * {
|
|
|
|
font-size: 0.75em;
|
|
|
|
margin: 0;
|
2021-02-26 03:17:27 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2021-02-24 04:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 19:07:25 +01:00
|
|
|
.ds4-item-list-title {
|
2021-02-24 12:55:30 +01:00
|
|
|
border-bottom: variables.$border-groove;
|
2021-02-24 04:52:32 +01:00
|
|
|
font-weight: bold;
|
2021-02-26 03:17:27 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding-left: 1em;
|
2021-02-24 04:52:32 +01:00
|
|
|
}
|