_toolbox.scss 777 B

1234567891011121314151617181920212223242526272829303132
  1. @use "sass:map";
  2. .ui-editor-toolbox {
  3. position: absolute;
  4. z-index: 1;
  5. right: var(--editor-menu-right);
  6. padding: var(--editor-toolbox-padding);
  7. width: var(--editor-toolbox-width);;
  8. bottom: 0;
  9. pointer-events: all;
  10. overflow-y: auto;
  11. overflow-x: hidden;
  12. background-color: var(--editor-toolbox-back);
  13. top: var(--editor-toolbox-top);
  14. transition: right ease .3s;
  15. filter: var(--editor-head-filter);
  16. backdrop-filter: blur(4px);
  17. ul,li{
  18. list-style: none;
  19. margin:0;
  20. padding: 0;
  21. }
  22. &::after{
  23. position: absolute;
  24. content: "";
  25. top: 0;
  26. bottom: 0;
  27. left: 0;
  28. border-right: solid 1px rgba(255, 255, 255, 0.16);
  29. border-left: solid 1px #000;
  30. }
  31. }