mini.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @charset "UTF-8";
  2. @import "base";
  3. body, html{
  4. height: 100%;
  5. overflow: hidden;
  6. }
  7. #app{
  8. height: 100%;
  9. -webkit-overflow-scrolling: touch;
  10. }
  11. .vb > .vb-dragger {
  12. z-index: 5;
  13. width: 7px;
  14. right: 0;
  15. min-height: 10px!important;
  16. }
  17. .vb > .vb-dragger > .vb-dragger-styler {
  18. -webkit-backface-visibility: hidden;
  19. backface-visibility: hidden;
  20. -webkit-transform: rotate3d(0,0,0,0);
  21. transform: rotate3d(0,0,0,0);
  22. -webkit-transition:
  23. background-color 100ms ease-out,
  24. margin 100ms ease-out,
  25. height 100ms ease-out;
  26. transition:
  27. background-color 100ms ease-out,
  28. margin 100ms ease-out,
  29. height 100ms ease-out;
  30. background-color: rgba(48, 121, 244,.1);
  31. // margin: 5px 0 5px 0;
  32. border-radius: 20px;
  33. // height: calc(100% - 10px);
  34. height: 100%;
  35. display: block;
  36. }
  37. .vb.vb-scrolling-phantom > .vb-dragger > .vb-dragger-styler {
  38. background-color: rgba(48, 121, 244,.3);
  39. }
  40. .vb > .vb-dragger:hover > .vb-dragger-styler {
  41. background-color: rgba(48, 121, 244,.5);
  42. margin: 0px;
  43. height: 100%;
  44. }
  45. .vb.vb-dragging > .vb-dragger > .vb-dragger-styler {
  46. background-color: rgba(48, 121, 244,.5);
  47. margin: 0px;
  48. height: 100%;
  49. }
  50. .vb.vb-dragging-phantom > .vb-dragger > .vb-dragger-styler {
  51. background-color: rgba(48, 121, 244,.5);
  52. }
  53. .link{
  54. color: #005392;
  55. cursor: pointer;
  56. &:hover{
  57. text-decoration: underline;
  58. }
  59. }
  60. .avatar_bg0{background:#f5882b}
  61. .avatar_bg1{background:#cc90e2}
  62. .avatar_bg2{background:#80d066}
  63. .avatar_bg3{background:#6fb1e4}
  64. .avatar_bg4{background:#f98bae}
  65. .avatar_bg5{background:#ecd074}
  66. .avatar_bg6{background:#e57979}
  67. .avatar_bg7{background:#fba76f}
  68. .avatar_bg8{background:#73cdd0}
  69. .avatar_bg9{background:#fb60c4}
  70. .pub-scroll-box{
  71. &::-webkit-scrollbar {
  72. width: 8px;
  73. height: 6px;
  74. }
  75. &::-webkit-scrollbar-thumb {
  76. border-radius: 3px;
  77. -moz-border-radius: 3px;
  78. -webkit-border-radius: 3px;
  79. background-color: transparent;
  80. }
  81. &::-webkit-scrollbar-track {
  82. background-color: transparent;
  83. }
  84. &:hover{
  85. &::-webkit-scrollbar-thumb {
  86. background-color: rgba($color: #c3c3c3, $alpha: 0.3);
  87. }
  88. }
  89. }
  90. .pub-modal-mask{
  91. position: fixed;
  92. left: 0;
  93. right: 0;
  94. top: 0;
  95. bottom: 0;
  96. z-index: 999;
  97. background-color: rgba($color: #000000, $alpha: .7);
  98. text-align: center;
  99. &::after{
  100. content: '';
  101. display: inline-block;
  102. height: 100%;
  103. vertical-align: middle;
  104. }
  105. }
  106. // element-ui
  107. .el-message {
  108. min-width: 200px;
  109. max-width: 100%;
  110. }
  111. .el-message-box{
  112. max-width: 90%;
  113. }
  114. @keyframes rotate {
  115. from {
  116. transform: rotate(0deg);
  117. }
  118. to {
  119. transform: rotate(360deg);
  120. }
  121. }