| 1234567891011121314151617181920212223242526272829303132 |
- @use "sass:map";
- .ui-editor-toolbox {
- position: absolute;
- z-index: 1;
- right: var(--editor-menu-right);
- padding: var(--editor-toolbox-padding);
- width: var(--editor-toolbox-width);;
- bottom: 0;
- pointer-events: all;
- overflow-y: auto;
- overflow-x: hidden;
- background-color: var(--editor-toolbox-back);
- top: var(--editor-toolbox-top);
- transition: right ease .3s;
- filter: var(--editor-head-filter);
- backdrop-filter: blur(4px);
- ul,li{
- list-style: none;
- margin:0;
- padding: 0;
- }
- &::after{
- position: absolute;
- content: "";
- top: 0;
- bottom: 0;
- left: 0;
- border-right: solid 1px rgba(255, 255, 255, 0.16);
- border-left: solid 1px #000;
- }
- }
|