1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Fixing some CSS bugs in the automation bindings popover.

This commit is contained in:
mike12345567 2021-02-24 15:34:31 +00:00
parent c99676239d
commit 06839700a2
2 changed files with 11 additions and 2 deletions

View file

@ -143,10 +143,18 @@
margin-top: 0;
}
.bindings__wrapper {
overflow-y: auto;
overflow-y: scroll;
overflow-x: hidden;
position: relative;
flex: 1 1 auto;
-ms-overflow-style: none;
}
.bindings__wrapper::-webkit-scrollbar {
width: 0;
height: 0;
}
.bindings__list {
position: absolute;
width: 100%;

View file

@ -24,7 +24,7 @@
<div class="container" bind:this={anchor}>
<Input {...inputProps} bind:value />
<div class="icon" on:click={popover.show}>
<Icon name="edit" />
<Icon name="lightning" />
</div>
</div>
<GenericBindingPopover
@ -54,6 +54,7 @@
border-bottom-right-radius: var(--border-radius-m);
color: var(--grey-7);
font-size: 16px;
margin-top: 20px;
}
.icon:hover {
color: var(--ink);