Update table hover colours
This commit is contained in:
parent
5e0200544c
commit
576913d898
|
@ -558,10 +558,7 @@
|
||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
.spectrum-Table-row:hover .spectrum-Table-cell {
|
.spectrum-Table-row:hover .spectrum-Table-cell {
|
||||||
/*background-color: var(--hover-bg) !important;*/
|
background-color: var(--spectrum-global-color-gray-100);
|
||||||
}
|
|
||||||
.spectrum-Table-row:hover .spectrum-Table-cell:after {
|
|
||||||
background-color: var(--spectrum-alias-highlight-hover);
|
|
||||||
}
|
}
|
||||||
.wrapper--quiet .spectrum-Table-row {
|
.wrapper--quiet .spectrum-Table-row {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
@ -594,24 +591,13 @@
|
||||||
border-bottom: 1px solid var(--spectrum-alias-border-color-mid);
|
border-bottom: 1px solid var(--spectrum-alias-border-color-mid);
|
||||||
background-color: var(--table-bg);
|
background-color: var(--table-bg);
|
||||||
z-index: auto;
|
z-index: auto;
|
||||||
|
transition: background-color 130ms ease-out;
|
||||||
}
|
}
|
||||||
.spectrum-Table-cell--edit {
|
.spectrum-Table-cell--edit {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.spectrum-Table-cell:after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: transparent;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
pointer-events: none;
|
|
||||||
transition: background-color
|
|
||||||
var(--spectrum-global-animation-duration-100, 0.13s) ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Placeholder */
|
/* Placeholder */
|
||||||
.placeholder {
|
.placeholder {
|
||||||
|
|
|
@ -166,6 +166,7 @@
|
||||||
</Layout>
|
</Layout>
|
||||||
<Divider />
|
<Divider />
|
||||||
<Layout noPadding gap="L">
|
<Layout noPadding gap="L">
|
||||||
|
{#if $usersFetch.loaded}
|
||||||
<Layout noPadding gap="S">
|
<Layout noPadding gap="S">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<Heading size="S">Users</Heading>
|
<Heading size="S">Users</Heading>
|
||||||
|
@ -194,8 +195,9 @@
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</Layout>
|
</Layout>
|
||||||
|
{/if}
|
||||||
|
|
||||||
{#if $licensing.groupsEnabled && appGroups.length}
|
{#if $usersFetch.loaded && $licensing.groupsEnabled && appGroups.length}
|
||||||
<Layout noPadding gap="S">
|
<Layout noPadding gap="S">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<Heading size="S">Groups</Heading>
|
<Heading size="S">Groups</Heading>
|
||||||
|
|
Loading…
Reference in New Issue