fence.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .fence-layout{
  2. display: flex;
  3. flex-direction: column;
  4. height: 100%;
  5. }
  6. .fence-range{
  7. flex: 0 0 auto;
  8. }
  9. .amap-fence-contarner{
  10. flex: 1 0 auto;
  11. }
  12. .fence-isable{
  13. width: 100%;
  14. flex: 0 0 auto;
  15. min-height: 40px;
  16. }
  17. .fence-bottom-button{
  18. width: 100%;
  19. height: 30px;
  20. flex: 0 0 auto;
  21. align-self: flex-end;
  22. min-height: 40px;
  23. }
  24. .part-layout{
  25. display: flex;
  26. flex-direction: row;
  27. align-items: center;
  28. justify-content: center;
  29. }
  30. /* id */
  31. #save-fence{
  32. width: 100%;
  33. height: 100%;
  34. font-size: 1em;
  35. }
  36. #display-radius{
  37. margin-left: 10px;
  38. }
  39. #centerMarker{
  40. position: absolute;
  41. z-index: 9999;
  42. width: 32px;
  43. height: 32px;
  44. margin: auto;
  45. top: 0;
  46. left: 0;
  47. bottom: 0;
  48. right: 0;
  49. }
  50. /* mui */
  51. .mui-input-row.mui-input-range
  52. {
  53. overflow: visible;
  54. padding-right: 20px;
  55. }
  56. .mui-input-range
  57. {
  58. /*input[type="range"] {
  59. -webkit-appearance: none;
  60. background: #999;
  61. height: 36px;
  62. border-radius: 1px;
  63. overflow: hidden;
  64. margin-top: 2px;
  65. margin-bottom: 2px;
  66. outline:none;
  67. position:relative;
  68. width:100%;
  69. }*/
  70. /*input[type='range']::-webkit-slider-thumb {
  71. -webkit-appearance: none!important;
  72. opacity: 0.5;
  73. height:28px;
  74. width:28px;
  75. border-radius: 50%;
  76. background:#00b7fb;
  77. position: relative;
  78. pointer-events: none;
  79. -webkit-box-sizing: border-box;
  80. box-sizing: border-box;
  81. &:before{
  82. position: absolute;
  83. top: 13px;
  84. left: -2000px;
  85. width: 2000px;
  86. height: 2px;
  87. background: #00b7fb;
  88. content:' ';
  89. }
  90. }*/
  91. }
  92. .mui-input-range input[type='range']
  93. {
  94. position: relative;
  95. width: 100%;
  96. height: 2px;
  97. margin: 17px 0;
  98. padding: 0;
  99. cursor: pointer;
  100. border: 0;
  101. border-radius: 3px;
  102. outline: none;
  103. background-color: #999;
  104. -webkit-appearance: none !important;
  105. }
  106. .mui-input-range input[type='range']::-webkit-slider-thumb
  107. {
  108. width: 28px;
  109. height: 28px;
  110. border-color: #0062cc;
  111. border-radius: 50%;
  112. background-color: #007aff;
  113. background-clip: padding-box;
  114. -webkit-appearance: none !important;
  115. }
  116. .mui-input-range label ~ input[type='range']
  117. {
  118. width: 75%;
  119. }
  120. .mui-input-range .mui-tooltip
  121. {
  122. font-size: 36px;
  123. line-height: 64px;
  124. position: absolute;
  125. z-index: 1;
  126. top: -70px;
  127. width: 64px;
  128. height: 64px;
  129. text-align: center;
  130. opacity: .8;
  131. color: #333;
  132. border: 1px solid #ddd;
  133. border-radius: 6px;
  134. background-color: #fff;
  135. text-shadow: 0 1px 0 #f3f3f3;
  136. }