Files
2024-12-17 17:34:10 +01:00

104 lines
1.7 KiB
CSS

@charset "UTF-8";
.awesomplete [hidden] {
display: none;
}
.awesomplete .visually-hidden {
clip: rect(0, 0, 0, 0);
position: absolute;
}
.awesomplete {
display: inline-block;
position: relative;
}
.awesomplete > input {
display: block;
}
.awesomplete > ul {
z-index: 1;
box-sizing: border-box;
background: #fff;
min-width: 100%;
margin: 0;
padding: 0;
list-style: none;
position: absolute;
left: 0;
}
.awesomplete > ul:empty {
display: none;
}
.awesomplete > ul {
text-shadow: none;
background: linear-gradient(to bottom right, #fff, #fffc);
border: 1px solid #0000004d;
border-radius: .3em;
margin: .2em 0 0;
box-shadow: .05em .2em .6em #0003;
}
@supports (transform: scale(0)) {
.awesomplete > ul {
transform-origin: 1.43em -.43em;
transition: all .3s cubic-bezier(.4, .2, .5, 1.4);
}
.awesomplete > ul[hidden], .awesomplete > ul:empty {
opacity: 0;
visibility: hidden;
transition-timing-function: ease;
display: block;
transform: scale(0);
}
}
.awesomplete > ul:before {
content: "";
border: inherit;
background: #fff;
border-bottom: 0;
border-right: 0;
width: 0;
height: 0;
padding: .4em;
position: absolute;
top: -.43em;
left: 1em;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.awesomplete > ul > li {
cursor: pointer;
padding: .2em .5em;
position: relative;
}
.awesomplete > ul > li:hover {
color: #000;
background: #b8d3e0;
}
.awesomplete > ul > li[aria-selected="true"] {
color: #fff;
background: #3d6d8f;
}
.awesomplete mark {
background: #eaff00;
}
.awesomplete li:hover mark {
background: #b5d100;
}
.awesomplete li[aria-selected="true"] mark {
color: inherit;
background: #3d6b00;
}