1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00

Grid cell style updates

This commit is contained in:
Andrew Kingston 2024-04-24 20:58:16 +01:00
parent 2e8560fd21
commit b5eb60acd7
4 changed files with 3 additions and 11 deletions

View file

@ -145,6 +145,7 @@
user-select: none;
}
.dropzone {
background: var(--grid-background-alt);
width: 320px;
padding: var(--cell-padding);
}

View file

@ -228,11 +228,10 @@
justify-content: space-between;
align-items: center;
gap: var(--cell-spacing);
background-color: var(--grid-background-alt);
}
.option:hover,
.option.focused {
background-color: var(--spectrum-global-color-gray-200);
background-color: var(--grid-background-alt);
cursor: pointer;
}
</style>

View file

@ -231,7 +231,6 @@
class="wrapper"
class:editable
class:focused
class:invertY
style="--color:{color};"
bind:this={anchor}
>
@ -324,7 +323,6 @@
min-height: var(--row-height);
max-height: var(--row-height);
overflow: hidden;
--max-relationship-height: 96px;
}
.wrapper.focused {
position: absolute;
@ -336,10 +334,6 @@
max-height: none;
overflow: visible;
}
.wrapper.invertY {
top: auto;
bottom: 0;
}
.container {
min-height: var(--row-height);
@ -350,7 +344,6 @@
.focused .container {
overflow-y: auto;
border-radius: 2px;
max-height: var(--max-relationship-height);
}
.focused .container:after {
content: " ";

View file

@ -52,8 +52,7 @@
<style>
:global(.grid-popover-container .spectrum-Popover) {
background: var(--grid-background-alt);
border: var(--cell-border);
background: var(--grid-background);
min-width: none;
max-width: none;
overflow: hidden;