52 lines
678 B
Text
52 lines
678 B
Text
|
.floating.suggestions
|
||
|
{
|
||
|
padding: 0.5em 0;
|
||
|
|
||
|
.suggestion
|
||
|
{
|
||
|
transition: background 0.2s ease;
|
||
|
|
||
|
position: relative;
|
||
|
|
||
|
display: block;
|
||
|
padding: 0.5em 1em;
|
||
|
|
||
|
background: transparent;
|
||
|
color: var(--foreground);
|
||
|
|
||
|
cursor: pointer;
|
||
|
|
||
|
&.preselected
|
||
|
{
|
||
|
background: var(--background);
|
||
|
}
|
||
|
|
||
|
&:hover
|
||
|
{
|
||
|
background: var(--background-darker);
|
||
|
}
|
||
|
|
||
|
> .selected
|
||
|
{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0.5em;
|
||
|
bottom: 0;
|
||
|
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
margin: auto;
|
||
|
width: 1.4em;
|
||
|
height: 1.4em;
|
||
|
border-radius: 1.4em;
|
||
|
|
||
|
color: var(--green);
|
||
|
}
|
||
|
&:not(.selected) > .selected
|
||
|
{
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|