u-popup.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-drawer.data-v-17becaea {
  8. display: block;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. right: 0;
  13. bottom: 0;
  14. overflow: hidden;
  15. }
  16. .u-drawer-content.data-v-17becaea {
  17. display: block;
  18. position: absolute;
  19. z-index: 1003;
  20. transition: all 0.25s linear;
  21. }
  22. .u-drawer__scroll-view.data-v-17becaea {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. .u-drawer-left.data-v-17becaea {
  27. top: 0;
  28. bottom: 0;
  29. left: 0;
  30. background-color: #ffffff;
  31. }
  32. .u-drawer-right.data-v-17becaea {
  33. right: 0;
  34. top: 0;
  35. bottom: 0;
  36. background-color: #ffffff;
  37. }
  38. .u-drawer-top.data-v-17becaea {
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. background-color: #ffffff;
  43. }
  44. .u-drawer-bottom.data-v-17becaea {
  45. bottom: 0;
  46. left: 0;
  47. right: 0;
  48. background-color: #ffffff;
  49. }
  50. .u-drawer-center.data-v-17becaea {
  51. display: flex;
  52. flex-direction: row;
  53. flex-direction: column;
  54. bottom: 0;
  55. left: 0;
  56. right: 0;
  57. top: 0;
  58. justify-content: center;
  59. align-items: center;
  60. opacity: 0;
  61. z-index: 99999;
  62. }
  63. .u-mode-center-box.data-v-17becaea {
  64. min-width: 100rpx;
  65. min-height: 100rpx;
  66. display: block;
  67. position: relative;
  68. background-color: #ffffff;
  69. }
  70. .u-drawer-content-visible.u-drawer-center.data-v-17becaea {
  71. -webkit-transform: scale(1);
  72. transform: scale(1);
  73. opacity: 1;
  74. }
  75. .u-animation-zoom.data-v-17becaea {
  76. -webkit-transform: scale(1.15);
  77. transform: scale(1.15);
  78. }
  79. .u-drawer-content-visible.data-v-17becaea {
  80. -webkit-transform: translate3D(0px, 0px, 0px) !important;
  81. transform: translate3D(0px, 0px, 0px) !important;
  82. }
  83. .u-close.data-v-17becaea {
  84. position: absolute;
  85. z-index: 3;
  86. }
  87. .u-close--top-left.data-v-17becaea {
  88. top: 30rpx;
  89. left: 30rpx;
  90. }
  91. .u-close--top-right.data-v-17becaea {
  92. top: 30rpx;
  93. right: 30rpx;
  94. }
  95. .u-close--bottom-left.data-v-17becaea {
  96. bottom: 30rpx;
  97. left: 30rpx;
  98. }
  99. .u-close--bottom-right.data-v-17becaea {
  100. right: 30rpx;
  101. bottom: 30rpx;
  102. }