cus.scss 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. .__hover {
  2. &:hover {
  3. opacity: 0.75;
  4. cursor: pointer;
  5. }
  6. }
  7. .__text-ellipsis {
  8. white-space: nowrap;
  9. overflow: hidden;
  10. text-overflow: ellipsis;
  11. word-break: break-all;
  12. }
  13. .__box-shadow {
  14. box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.4);
  15. border: 1px solid #C7CFDE;
  16. }
  17. .__background-grid {
  18. background-image: url("@/assets/images/gis-layout/background-grid.png");
  19. background-size: 100% 100%;
  20. background-repeat: repeat;
  21. }
  22. .__check {
  23. width: 16px;
  24. height: 16px;
  25. border: 1px solid #d3d3d3;
  26. border-radius: 2px;
  27. overflow: hidden;
  28. &.active {
  29. background-color: #6587ff;
  30. border-color: #6587ff;
  31. display: grid;
  32. place-items: center;
  33. &:after {
  34. content: '✔';
  35. color: #ffffff;
  36. font-size: 14px;
  37. }
  38. }
  39. &:hover {
  40. opacity: 0.75;
  41. cursor: pointer;
  42. }
  43. }
  44. .__normal-page {
  45. margin-left: 10px;
  46. flex: 1;
  47. display: flex;
  48. overflow: hidden;
  49. .__normal-tree {
  50. }
  51. .__normal-content {
  52. flex: 1;
  53. position: relative;
  54. overflow: hidden;
  55. }
  56. }
  57. .__cus-pagination {
  58. display: flex;
  59. justify-content: flex-end;
  60. align-items: center;
  61. margin: 0;
  62. padding: 0;
  63. .el-pagination__total {
  64. font-size: 12px;
  65. font-family: Microsoft YaHei;
  66. font-weight: 400;
  67. color: #AEAEAE;
  68. }
  69. //.el-pagination__sizes {
  70. // .el-input {
  71. // max-width: 100px !important;
  72. // .el-input__wrapper {
  73. // padding-left: 8px !important;
  74. // padding-right: 8px !important;
  75. // .el-input__inner {
  76. // font-size: 14px;
  77. // font-family: Microsoft YaHei;
  78. // font-weight: 400;
  79. // color: #999999;
  80. // }
  81. // }
  82. // }
  83. //}
  84. .btn-prev, .btn-next {
  85. background-color: transparent !important;
  86. color: #AEAEAE !important;
  87. margin-left: unset;
  88. min-width: unset;
  89. }
  90. .el-pager {
  91. .number {
  92. font-size: 12px;
  93. font-family: Microsoft YaHei;
  94. font-weight: 400;
  95. color: #AEAEAE !important;
  96. background-color: transparent !important;
  97. min-width: unset;
  98. padding: 0 1px;
  99. &:hover {
  100. opacity: 0.75;
  101. color: #1174DB !important;
  102. }
  103. &.is-active {
  104. color: #1174DB !important;
  105. opacity: 1;
  106. }
  107. }
  108. .more {
  109. background-color: transparent !important;
  110. color: #AEAEAE !important;
  111. &:hover {
  112. color: #1174DB !important;
  113. }
  114. }
  115. }
  116. button:hover {
  117. color: #1174DB !important;
  118. }
  119. .el-pagination__jump {
  120. font-size: 12px;
  121. font-family: Microsoft YaHei;
  122. font-weight: 400;
  123. color: #AEAEAE;
  124. margin-left: unset;
  125. .el-pagination__goto {
  126. margin-right: 2px;
  127. }
  128. .el-input {
  129. width: 30px;
  130. height: 20px;
  131. .el-input__wrapper {
  132. padding-left: 2px !important;
  133. padding-right: 2px !important;
  134. .el-input__inner {
  135. font-size: 12px;
  136. font-family: Microsoft YaHei;
  137. font-weight: 400;
  138. color: #AEAEAE;
  139. }
  140. }
  141. }
  142. .el-pagination__classifier {
  143. margin-left: 2px;
  144. }
  145. }
  146. }
  147. .__cus-dialog {
  148. &.__cus-dialog-auto-height {
  149. .el-overlay-dialog {
  150. .el-dialog {
  151. max-height: var(--cus-dialog_max-height);
  152. min-height: var(--cus-dialog_min-height);
  153. height: unset;
  154. }
  155. }
  156. }
  157. .el-overlay-dialog {
  158. .el-dialog {
  159. height: var(--cus-dialog_height);
  160. $borderRadius: 8px;
  161. border-radius: $borderRadius;
  162. display: flex;
  163. flex-direction: column;
  164. .el-dialog__header {
  165. padding: 0;
  166. margin: 0;
  167. ._cus-dialog-head {
  168. height: 50px;
  169. width: 100%;
  170. background-color: #F5F7FA;
  171. display: flex;
  172. align-items: center;
  173. border-radius: $borderRadius $borderRadius 0 0 ;
  174. font-size: 18px;
  175. font-family: PingFang SC-Medium, PingFang SC;
  176. font-weight: 500;
  177. color: #303133;
  178. padding: 0 20px 0 16px;
  179. box-sizing: border-box;
  180. .__cdh-title {}
  181. .__cdh-slot {}
  182. .__cdh-close {
  183. margin-left: auto;
  184. }
  185. }
  186. }
  187. .el-dialog__body {
  188. padding: 0;
  189. height: calc(100% - 50px);
  190. width: 100%;
  191. display: flex;
  192. overflow-y: hidden;
  193. flex: 1;
  194. .__cus-dialog-main {
  195. width: 100%;
  196. display: flex;
  197. flex-direction: column;
  198. .__cus-dialog-content {
  199. flex: 1;
  200. overflow-y: auto;
  201. }
  202. .__cus-dialog-foot {
  203. width: 100%;
  204. display: flex;
  205. align-items: center;
  206. box-sizing: border-box;
  207. >div {
  208. margin-right: 10px;
  209. &:last-child {
  210. margin-right: 0;
  211. }
  212. }
  213. .__cus-dialog-foot_submit {
  214. width: 72px;
  215. height: 36px;
  216. background: #0062E9;
  217. border-radius: 4px;
  218. font-size: 14px;
  219. font-family: Microsoft YaHei;
  220. font-weight: 400;
  221. color: #FFFFFF;
  222. display: flex;
  223. align-items: center;
  224. justify-content: center;
  225. box-sizing: border-box;
  226. }
  227. .__cus-dialog-foot_cancel {
  228. width: 72px;
  229. height: 36px;
  230. background: #F8F8F8;
  231. border: 1px solid #E4E4E4;
  232. border-radius: 4px;
  233. font-size: 14px;
  234. font-family: Microsoft YaHei;
  235. font-weight: 400;
  236. color: #999999;
  237. display: flex;
  238. align-items: center;
  239. justify-content: center;
  240. box-sizing: border-box;
  241. }
  242. }
  243. &.isFull {
  244. overflow-y: auto;
  245. .__cus-dialog-content {
  246. overflow-y: unset;
  247. }
  248. }
  249. }
  250. }
  251. }
  252. }
  253. }
  254. .__cus-buttons-1 {
  255. display: flex;
  256. align-items: center;
  257. justify-content: center;
  258. height: 36px;
  259. >div {
  260. height: 100%;
  261. width: 80px;
  262. border: 1px solid #1270DA;
  263. border-radius: 2px;
  264. display: flex;
  265. align-items: center;
  266. justify-content: center;
  267. font-size: 14px;
  268. font-family: Microsoft YaHei;
  269. font-weight: 400;
  270. &:not(:last-child) {
  271. margin-right: 10px;
  272. }
  273. }
  274. .__cus-button-submit {
  275. background-color: #1280F1;
  276. color: #FFFFFF;
  277. }
  278. .__cus-button-cancel {
  279. background-color: #FFFFFF;
  280. color: #108DF3;
  281. }
  282. }
  283. .__cus-buttons-2 {
  284. display: flex;
  285. align-items: center;
  286. justify-content: center;
  287. height: 36px;
  288. >div {
  289. height: 100%;
  290. width: 50px;
  291. border: 1px solid #1270DA;
  292. border-radius: 2px;
  293. display: flex;
  294. align-items: center;
  295. justify-content: center;
  296. font-size: 14px;
  297. font-family: Microsoft YaHei;
  298. font-weight: 400;
  299. &:not(:last-child) {
  300. margin-right: 8px;
  301. }
  302. }
  303. .__cus-button-submit {
  304. background-color: #1280F1;
  305. color: #FFFFFF;
  306. }
  307. .__cus-button-cancel {
  308. background-color: #FFFFFF;
  309. color: #108DF3;
  310. }
  311. }
  312. .__cus-buttons-3 {
  313. display: flex;
  314. align-items: center;
  315. justify-content: center;
  316. height: 20px;
  317. >div {
  318. width: 60px;
  319. height: 100%;
  320. border: 1px solid #1270DA;
  321. border-radius: 4px;
  322. display: flex;
  323. align-items: center;
  324. justify-content: center;
  325. font-size: 14px;
  326. font-family: Microsoft YaHei;
  327. font-weight: 400;
  328. &:not(:last-child) {
  329. margin-right: 8px;
  330. }
  331. }
  332. .__cus-button-submit {
  333. background-color: #1280F1;
  334. color: #FFFFFF;
  335. }
  336. .__cus-button-cancel {
  337. background-color: #FFFFFF;
  338. color: #108DF3;
  339. }
  340. }
  341. .__gis-overlay_table-v2 {
  342. background-color: transparent;
  343. $b: 1px solid #00C6FC;
  344. .el-table-v2__table {
  345. background-color: transparent;
  346. .el-table-v2__header-wrapper {
  347. background-color: transparent;
  348. .el-table-v2__header {
  349. background-color: transparent;
  350. .el-table-v2__header-row {
  351. border: none;
  352. background-color: transparent;
  353. .el-table-v2__header-cell {
  354. background-color: #2860CE;
  355. border-top: $b;
  356. border-bottom: $b;
  357. border-left: $b;
  358. font-size: 12px;
  359. font-family: Microsoft YaHei;
  360. font-weight: 400;
  361. color: #B4D5FA;
  362. &:last-child {
  363. border-right: $b;
  364. }
  365. }
  366. }
  367. }
  368. }
  369. .el-table-v2__body {
  370. .el-virtual-scrollbar {
  371. width: 4px !important;
  372. }
  373. .el-table-v2__row {
  374. border: none;
  375. background-color: transparent;
  376. .el-table-v2__row-cell {
  377. background-color: #1174db;
  378. border-bottom: $b;
  379. border-left: $b;
  380. font-size: 12px;
  381. font-family: Microsoft YaHei;
  382. font-weight: 400;
  383. color: #FFFFFF;
  384. &:last-child {
  385. border-right: $b;
  386. }
  387. }
  388. }
  389. }
  390. }
  391. }