mui-pull.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .mui-scroll-wrapper {
  2. position: absolute;
  3. z-index: 2;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. overflow: hidden;
  8. width: 100%;
  9. /*height: -moz-calc(100% +45px);
  10. height: -webkit-calc(100% +45px);
  11. height: calc(100% + 45px);*/
  12. }
  13. .mui-scroll {
  14. position: absolute;
  15. z-index: 1;
  16. width: 100%;
  17. -webkit-transform: translateZ(0);
  18. transform: translateZ(0);
  19. }
  20. .mui-scrollbar {
  21. position: absolute;
  22. z-index: 9998;
  23. overflow: hidden;
  24. -webkit-transition: 500ms;
  25. transition: 500ms;
  26. transform: translateZ(0px);
  27. pointer-events: none;
  28. opacity: 0;
  29. }
  30. .mui-scrollbar-vertical {
  31. top: 0;
  32. right: 1px;
  33. bottom: 2px;
  34. width: 4px;
  35. }
  36. .mui-scrollbar-indicator {
  37. position: absolute;
  38. display: block;
  39. box-sizing: border-box;
  40. -webkit-transition: .01s cubic-bezier(.1, .57, .1, 1);
  41. transition: .01s cubic-bezier(.1, .57, .1, 1);
  42. transform: translate(0px, 0) translateZ(0px);
  43. border: 1px solid rgba(255, 255, 255, .80196);
  44. border-radius: 2px;
  45. background: rgba(0, 0, 0, .39804);
  46. }
  47. .mui-scrollbar-vertical .mui-scrollbar-indicator {
  48. width: 100%;
  49. }
  50. .mui-pull-top-tips {
  51. position: absolute;
  52. top: -20px;
  53. left: 50%;
  54. margin-left: -25px;
  55. width: 40px;
  56. height: 40px;
  57. border-radius: 100%;
  58. z-index: 3;
  59. }
  60. /*.mui-pull-top-tips {
  61. top: 24px;
  62. }*/
  63. .mui-pull-top-wrapper {
  64. width: 42px;
  65. height: 42px;
  66. display: block;
  67. text-align: center;
  68. background-color: #efeff4;
  69. border: 1px solid #ddd;
  70. border-radius: 25px;
  71. background-clip: padding-box;
  72. box-shadow: 0 4px 10px #bbb;
  73. overflow: hidden;
  74. }
  75. .mui-pull-top-tips.mui-transitioning {
  76. -webkit-transition-duration: 200ms;
  77. transition-duration: 200ms;
  78. }
  79. .mui-pull-top-tips .mui-pull-loading {
  80. /*-webkit-backface-visibility: hidden;
  81. -webkit-transition-duration: 400ms;
  82. transition-duration: 400ms;*/
  83. margin: 0;
  84. }
  85. .mui-pull-top-wrapper .mui-icon,
  86. .mui-pull-top-wrapper .mui-spinner {
  87. margin-top: 7px;
  88. }
  89. .mui-pull-top-wrapper .mui-icon.mui-reverse {
  90. /*-webkit-transform: rotate(180deg) translateZ(0);*/
  91. }
  92. .mui-pull-bottom-tips {
  93. text-align: center;
  94. background-color: #f2f4f6;
  95. font-size: 15px;
  96. line-height: 40px;
  97. color: #777;
  98. }
  99. .mui-pull-top-canvas {
  100. overflow: hidden;
  101. background-color: #fafafa;
  102. border-radius: 40px;
  103. box-shadow: 0 4px 10px #bbb;
  104. width: 40px;
  105. height: 40px;
  106. margin: 0 auto;
  107. }
  108. .mui-pull-top-canvas canvas {
  109. width: 40px;
  110. }
  111. /* 任务#996 【医生端与居民端-水印-前端】增加健康之路水印 */
  112. .mui-pull-top-canvas {
  113. position: absolute;
  114. content: '';
  115. width: 32px;
  116. height: 32px;
  117. background: url(../images/loading2.gif) no-repeat;
  118. background-size: 32px;
  119. border-radius: initial;
  120. box-shadow: none;
  121. transform: initial;
  122. animation: initial;
  123. margin: 0;
  124. top: 7px;
  125. left: 4px;
  126. }
  127. .mui-pull-top-canvas canvas {
  128. display: none !important;
  129. }