UNPKG

winbox-ui-next

Version:

We Design Vue 2.0: A Vue.js 3 UI Library

108 lines (107 loc) 2.57 kB
/******** borderSize *******/ /******** borderStyle *******/ /******** radius *******/ /******** shadow distance *******/ /******** size *******/ /******** spacing *******/ /******** shadow *******/ /******** opacity *******/ /******** fontSize *******/ /******** fontWeight ********/ /******** radius *******/ /******** Primary *******/ /******** success *******/ /******** warning *******/ /******** danger *******/ /******** link *******/ /******** radius *******/ /********* icon hover *********/ /********************************************** * Popup Box **********************************************/ /********************************************** * Popup Options * status: default / disabled / selected / hover **********************************************/ .w-dropdown { box-sizing: border-box; padding: 4px 0; background-color: var(--color-bg-popup); border: 1px solid var(--color-fill-3); border-radius: var(--border-radius-medium); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .w-dropdown .w-dropdown-loading { display: flex; align-items: center; justify-content: center; min-height: 50px; } .w-dropdown-list { margin-top: 0; margin-bottom: 0; padding-left: 0; list-style: none; } .w-dropdown-list-wrapper { max-height: 200px; overflow-y: auto; } .w-dropdown-option { position: relative; z-index: 1; box-sizing: border-box; width: 100%; padding: 0 12px; color: var(--color-text-1); font-size: 14px; line-height: 36px; text-align: left; background-color: transparent; cursor: pointer; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .w-dropdown-option-active, .w-dropdown-option:not(.w-dropdown-option-disabled):hover { color: var(--color-text-1); background-color: var(--color-fill-2); transition: all 0.1s cubic-bezier(0, 0, 1, 1); } .w-dropdown-option-disabled { color: var(--color-text-4); background-color: transparent; cursor: not-allowed; } .w-dropdown-option-icon { margin-right: 8px; } .w-dropdown-option-suffix { margin-left: 12px; } .w-dropdown-group:first-child .w-dropdown-group-title { margin-top: 8px; } .w-dropdown-group-title { box-sizing: border-box; width: 100%; margin-top: 8px; padding: 0 12px; color: var(--color-text-3); font-size: 12px; line-height: 20px; cursor: default; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .w-dropdown-submenu { margin-top: -4px; } .w-dropdown.w-dropdown-has-footer { padding-bottom: 0; } .w-dropdown-footer { border-top: 1px solid var(--color-fill-3); }