style updates [icon color change, drag hover]
- changed color of help icon - added hover color to drag container
This commit is contained in:
parent
ff4eb7bc5a
commit
9ff9569ad2
|
@ -159,7 +159,11 @@
|
||||||
<Tag icon="LockClosed">Premium</Tag>
|
<Tag icon="LockClosed">Premium</Tag>
|
||||||
</Tags>
|
</Tags>
|
||||||
{:else if isDisabled}
|
{:else if isDisabled}
|
||||||
<Icon name="Help" tooltip={disabled()[idx].message} />
|
<Icon
|
||||||
|
name="Help"
|
||||||
|
tooltip={disabled()[idx].message}
|
||||||
|
color="var(--spectrum-global-color-gray-700)"
|
||||||
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -410,6 +410,10 @@
|
||||||
cursor: grab;
|
cursor: grab;
|
||||||
border-top-left-radius: 12px;
|
border-top-left-radius: 12px;
|
||||||
border-bottom-left-radius: 12px;
|
border-bottom-left-radius: 12px;
|
||||||
|
transition: background 200ms ease;
|
||||||
|
}
|
||||||
|
.block.draggable .wrap .handle:hover {
|
||||||
|
background-color: var(--grey-4);
|
||||||
}
|
}
|
||||||
.block.draggable .wrap .handle.grabbing {
|
.block.draggable .wrap .handle.grabbing {
|
||||||
cursor: grabbing;
|
cursor: grabbing;
|
||||||
|
|
|
@ -269,7 +269,6 @@
|
||||||
}
|
}
|
||||||
.icon-background-trigger {
|
.icon-background-trigger {
|
||||||
background-color: #ffd230;
|
background-color: #ffd230;
|
||||||
/*background-color: #6afdef;*/
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
min-height: 32px;
|
min-height: 32px;
|
||||||
|
|
Loading…
Reference in New Issue