Update the save changes button to be more inline with the rest of Foundry
This commit is contained in:
parent
e8bf135424
commit
7d28376cec
6 changed files with 85 additions and 6 deletions
|
|
@ -1,4 +1,25 @@
|
|||
.oft.StatusEffectIconConfig {
|
||||
> .window-content {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
> * {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
height: initial;
|
||||
padding: 8px 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.effect-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
|
|
@ -8,6 +29,10 @@
|
|||
gap: 16px;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.effect {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
|
|||
23
styles/components/icon.css
Normal file
23
styles/components/icon.css
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
:host {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: var(--size, 1rem);
|
||||
height: var(--size, 1rem);
|
||||
fill: var(--fill);
|
||||
}
|
||||
|
||||
path {
|
||||
stroke: var(--stroke);
|
||||
stroke-width: var(--stroke-width);
|
||||
stroke-linejoin: var(--stroke-linejoin);
|
||||
}
|
||||
22
styles/components/svg-loader.css
Normal file
22
styles/components/svg-loader.css
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
:host {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
svg {
|
||||
fill: var(--fill);
|
||||
stroke: var(--stroke);
|
||||
}
|
||||
|
||||
path {
|
||||
stroke: var(--stroke);
|
||||
stroke-width: var(--stroke-width);
|
||||
stroke-linejoin: var(--stroke-linejoin);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue