index.less 607 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "../styles/mixins/index.less";
  2. @import "../styles/themes/index.less";
  3. .@{wux-prefix}-backdrop {
  4. background: @backdrop-background;
  5. &,
  6. &--transparent {
  7. position: fixed;
  8. z-index: @z-index-backdrop;
  9. top: 0;
  10. right: 0;
  11. left: 0;
  12. bottom: 0;
  13. }
  14. &--transparent {
  15. background: @backdrop-background-inverse;
  16. }
  17. &__bd {
  18. z-index: 1;
  19. }
  20. &__aria-btn {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. z-index: 0;
  25. width: 100%;
  26. height: 100%;
  27. pointer-events: none;
  28. }
  29. }