lu2
Version:
Simple and flexible UI component library based on native HTML and JavaScript
23 lines (19 loc) • 313 B
CSS
/**
* @Drop.css
* @author zhangxinxu
* @create 20-12-15
* @edit 22-06-16 zhangxinxu
**/
ui-drop {
display: inline-flex;
}
ui-drop[tabindex="0"] {
cursor: pointer;
}
ui-drop ~ .ui-drop-target {
position: absolute;
z-index: 9;
}
ui-drop:not([open]) ~ .ui-drop-target {
display: none;
}