mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-25 20:09:55 +02:00
Compare commits
2 commits
9754e945fc
...
d9aab66646
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9aab66646 | ||
|
|
9e25b7eff0 |
7 changed files with 32 additions and 15 deletions
|
|
@ -501,7 +501,7 @@
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-bottom: 1px solid @color-border;
|
border-bottom: 1px solid @color-border;
|
||||||
mask-image: linear-gradient(270deg, transparent 0%, black 50%, transparent 100%);
|
mask-image: linear-gradient(270deg, transparent 0%, black 35%,black 50%, black 65%, transparent 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
side-line-div {
|
side-line-div {
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,11 @@
|
||||||
color: @color-text-subtle;
|
color: @color-text-subtle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.window-header > .attribution-header-label {
|
||||||
|
margin-right: var(--spacer-4);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
.tab.inventory {
|
.tab.inventory {
|
||||||
.gold-section {
|
.gold-section {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding-bottom: 4px;
|
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
.with-scroll-shadows();
|
.with-scroll-shadows();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,13 @@
|
||||||
.application.sheet.daggerheart.actor.dh-style.adversary {
|
.application.sheet.daggerheart.actor.dh-style.adversary {
|
||||||
.tab.features.active {
|
.tab.features.active {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-left: 15px;
|
padding-left: 12px;
|
||||||
.feature-section {
|
.feature-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
padding: 6px 2px 4px 0;
|
padding-top: 4px;
|
||||||
|
padding-right: 2px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
.with-scroll-shadows();
|
.with-scroll-shadows();
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,21 @@
|
||||||
|
|
||||||
.application.sheet.daggerheart.actor.dh-style.adversary {
|
.application.sheet.daggerheart.actor.dh-style.adversary {
|
||||||
.adversary-header-sheet {
|
.adversary-header-sheet {
|
||||||
padding: 0 15px;
|
|
||||||
padding-top: var(--header-height);
|
padding-top: var(--header-height);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
> *:not(line-div, .tab-navigation) {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
.name-row {
|
.name-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 8px 0;
|
padding-top: var(--spacer-4);
|
||||||
|
padding-bottom: var(--spacer-4);
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
|
@ -34,8 +39,8 @@
|
||||||
|
|
||||||
.tags {
|
.tags {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 8px;
|
||||||
padding-bottom: 8px;
|
padding-bottom: var(--spacer-12);
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -44,8 +49,7 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
font-size: var(--font-size-12);
|
font: var(--font-size-12) @font-body;
|
||||||
font: @font-body;
|
|
||||||
|
|
||||||
background: light-dark(@dark-15, @beige-15);
|
background: light-dark(@dark-15, @beige-15);
|
||||||
border: 1px solid light-dark(@dark, @beige);
|
border: 1px solid light-dark(@dark, @beige);
|
||||||
|
|
@ -64,8 +68,16 @@
|
||||||
.adversary-info {
|
.adversary-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 12px;
|
gap: var(--spacer-8);
|
||||||
padding: 16px 0;
|
padding-top: var(--spacer-12);
|
||||||
|
padding-bottom: var(--spacer-12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-navigation {
|
||||||
|
margin-top: 0;
|
||||||
|
button[data-action="openSettings"] {
|
||||||
|
margin-right: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
.application.sheet.daggerheart.actor.dh-style.adversary .tab.notes.active {
|
.application.sheet.daggerheart.actor.dh-style.adversary .tab.notes.active {
|
||||||
padding: 6px 0 4px 15px;
|
padding-top: 6px;
|
||||||
.editor-content {
|
.editor-content {
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
.with-scroll-shadows();
|
.with-scroll-shadows();
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
margin-right: 2px;
|
margin-right: 1px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue