tablema.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. box-sizing: border-box;
  5. }
  6. ._treeTxt{
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. width: 120px;
  11. min-height: 360px;
  12. height: 100%;
  13. border-right: 1px solid rgba(255, 255, 255, 0.2);
  14. }
  15. .search_ input {
  16. position: relative;
  17. width: 100%;
  18. height: 32px;
  19. line-height: 32px;
  20. border-radius: 4px;
  21. font-size: 14px;
  22. padding: 0 5px 0 25px;
  23. color: #dcdcdc;
  24. background-color: rgba(255, 255, 255, 0.2);
  25. border: 1px solid rgba(232, 232, 232, 0.3);
  26. }
  27. .search_ input::-webkit-input-placeholder {
  28. color: #dcdcdc;
  29. }
  30. .search_ .el-icon-search {
  31. position: absolute;
  32. left: 12px;
  33. top: 16px;
  34. color: #dcdcdc;
  35. }
  36. .elTable{
  37. width: 100%;
  38. border: 1px solid rgba(255, 255, 255, 0.2);
  39. }
  40. .el-table::before{
  41. height: 0;
  42. }
  43. .el-table::after{
  44. width: 0;
  45. }
  46. .el-table,.el-table__expanded-cell {
  47. color: #ddd;
  48. background-color: #040d32 !important;
  49. }
  50. .el-table tr,
  51. .el-table td {
  52. font-size: 14px;
  53. background-color: #040d32 !important;
  54. }
  55. .el-table td.el-table__cell,.el-table th.el-table__cell.is-leaf{
  56. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  57. }
  58. .el-table--border .el-table__cell{
  59. border-right: 1px solid rgba(255, 255, 255, 0.2);
  60. }
  61. .el-dialog__header{
  62. padding: 10px;
  63. }
  64. .el-dialog__title{
  65. font-size: 15px;
  66. }
  67. .el-dialog__headerbtn{
  68. top: 14px;
  69. }
  70. .el-dialog__body{
  71. padding: 10px;
  72. color: #fff;
  73. background-color: #082041;
  74. }
  75. .br{
  76. border: 1px solid rgba(255, 255, 255, 0.2);
  77. }
  78. ._Form{
  79. flex:1;
  80. flex-direction: column;
  81. border-right: 1px solid rgba(255, 255, 255, 0.2);
  82. }
  83. ._Form>div{
  84. height: 20%;
  85. min-height: 60px;
  86. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  87. }
  88. ._Form>div>div:first-child{
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. width: 100px;
  93. height: 100%;
  94. min-height: 60px;
  95. border-right: 1px solid rgba(255, 255, 255, 0.2);
  96. }
  97. ._Form>div>div:last-child{
  98. width: calc(100% - 100px);
  99. padding: 0 10px;
  100. }
  101. .el-input__inner{
  102. height: 34px;
  103. line-height: 34px;
  104. }
  105. .el-input__inner,._Form .el-textarea__inner{
  106. color: #a1a1a1;
  107. border-color: transparent;
  108. background-color: rgba(255, 255, 255, 0.2);
  109. }
  110. .el-input__inner::-webkit-input-placeholder {
  111. color: #b9b9b9;
  112. }
  113. ._Form .el-radio{
  114. color: #fff;
  115. }
  116. .el-select-dropdown__item{
  117. height: auto;
  118. }
  119. .el-tree{
  120. color: #fff;
  121. background-color: transparent;
  122. }
  123. .el-select-dropdown__item.hover, .el-select-dropdown__item:hover,
  124. .el-tree-node__content:hover,.el-tree-node:focus>.el-tree-node__content{
  125. background-color: transparent;
  126. }
  127. .el-popper[x-placement^=bottom] .popper__arrow::after{
  128. border-bottom-color: #707070;
  129. }
  130. .el-select-dropdown{
  131. background-color: #707070;
  132. }
  133. .el-radio__input.is-checked .el-radio__inner,
  134. .el-checkbox__input.is-checked .el-checkbox__inner,
  135. .el-checkbox__input.is-indeterminate .el-checkbox__inner,
  136. .el-button--success{
  137. border-color: #39b54a;
  138. background: #39b54a;
  139. }
  140. .el-radio__input.is-checked+.el-radio__label{
  141. color: #39b54a;
  142. }
  143. .el-select-dropdown__item{
  144. color: #fff;
  145. }