index.less 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @import "../styles/mixins/index.less";
  2. @import "../styles/themes/index.less";
  3. .@{wux-prefix}-landscape {
  4. &__popup {
  5. background-color: transparent !important;
  6. &-body {
  7. padding: 0 !important;
  8. }
  9. }
  10. &__inner {
  11. padding: 15px;
  12. font-size: 15px;
  13. line-height: 1.5;
  14. color: @text-color;
  15. > image {
  16. width: 100%;
  17. max-width: 100%;
  18. }
  19. }
  20. &__close {
  21. position: relative;
  22. display: inline-block;
  23. margin-top: 5px;
  24. }
  25. &__close-x {
  26. display: inline-block;
  27. width: 24px;
  28. height: 24px;
  29. background-repeat: no-repeat;
  30. background-size: cover;
  31. .encoded-svg-background(delete);
  32. }
  33. &--has-mask &__close-x {
  34. .encoded-svg-background(delete, #fff);
  35. }
  36. }