mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-24 19:39:54 +02:00
Compare commits
1 commit
d9aab66646
...
9754e945fc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9754e945fc |
7 changed files with 15 additions and 32 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 35%,black 50%, black 65%, transparent 100%);
|
mask-image: linear-gradient(270deg, transparent 0%, black 50%, transparent 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
side-line-div {
|
side-line-div {
|
||||||
|
|
|
||||||
|
|
@ -37,11 +37,6 @@
|
||||||
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,6 +8,7 @@
|
||||||
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,13 +5,12 @@
|
||||||
.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: 12px;
|
padding-left: 15px;
|
||||||
.feature-section {
|
.feature-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
padding-top: 4px;
|
padding: 6px 2px 4px 0;
|
||||||
padding-right: 2px;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
.with-scroll-shadows();
|
.with-scroll-shadows();
|
||||||
|
|
|
||||||
|
|
@ -3,21 +3,16 @@
|
||||||
|
|
||||||
.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-top: var(--spacer-4);
|
padding: 8px 0;
|
||||||
padding-bottom: var(--spacer-4);
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
|
@ -39,8 +34,8 @@
|
||||||
|
|
||||||
.tags {
|
.tags {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: 10px;
|
||||||
padding-bottom: var(--spacer-12);
|
padding-bottom: 8px;
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -49,7 +44,8 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
font: var(--font-size-12) @font-body;
|
font-size: var(--font-size-12);
|
||||||
|
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);
|
||||||
|
|
@ -68,16 +64,8 @@
|
||||||
.adversary-info {
|
.adversary-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: var(--spacer-8);
|
gap: 12px;
|
||||||
padding-top: var(--spacer-12);
|
padding: 16px 0;
|
||||||
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-top: 6px;
|
padding: 6px 0 4px 15px;
|
||||||
.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: 1px;
|
margin-right: 2px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue