index.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .data-source-wrap {
  2. .el-input__inner {
  3. width: 100%;
  4. }
  5. .filter-input .el-input__inner {
  6. width: 200px;
  7. }
  8. .dsItem {
  9. height: 116px;
  10. }
  11. .card-list {
  12. margin: 0 10px 10px;
  13. .card-title {
  14. margin-top: 8px;
  15. padding: 0 16px;
  16. height: 40px;
  17. max-width: 100%;
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. white-space: nowrap;
  21. line-height: 40px;
  22. font-weight: 400;
  23. font-style: normal;
  24. font-size: 16px;
  25. color: #4e5054;
  26. }
  27. .card-type {
  28. margin: 12px 0;
  29. padding: 0 16px;
  30. height: 18px;
  31. line-height: 18px;
  32. width: 100%;
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. white-space: nowrap;
  36. font-size: 13px;
  37. color: #7c8496;
  38. }
  39. .card-button {
  40. display: flex;
  41. width: 100%;
  42. background-color: #f6f8fb;
  43. height: 35px;
  44. justify-content: space-evenly;
  45. align-items: center;
  46. .btn-col {
  47. width: 100%;
  48. font-weight: 400;
  49. font-style: normal;
  50. font-size: 14px;
  51. color: #7c8496;
  52. line-height: 22px;
  53. cursor: pointer;
  54. position: relative;
  55. span {
  56. display: inline-block;
  57. width: 100%;
  58. text-align: center;
  59. }
  60. &:hover {
  61. color: #1183FF;
  62. }
  63. }
  64. .btn-disabled {
  65. &:hover {
  66. color: #7c8496;
  67. cursor: not-allowed;
  68. }
  69. }
  70. .btn-col::after {
  71. position: absolute;
  72. top: 3px;
  73. content: '';
  74. width: 1px;
  75. height: 16px;
  76. background: #e1e2e3;
  77. }
  78. .btn-col:last-of-type::after {
  79. display: none;
  80. }
  81. }
  82. }
  83. .add-card {
  84. margin: 0 10px 10px;
  85. height: 117px;
  86. line-height: 117px;
  87. text-align: center;
  88. font-size: 28px;
  89. font-weight: 400;
  90. cursor: pointer;
  91. position: relative;
  92. .modal {
  93. display: none;
  94. width: 100%;
  95. height: 117px;
  96. position: absolute;
  97. background: rgba(8, 8, 8, 0.15);
  98. color: #1183FF;
  99. top: 0;
  100. left: 0;
  101. }
  102. &:hover {
  103. span {
  104. display: none;
  105. }
  106. .modal {
  107. display: block;
  108. }
  109. }
  110. }
  111. .searchInput{
  112. width: 100%;
  113. }
  114. .dsFontImage {
  115. width: 150px;
  116. height: 70px;
  117. line-height: 70px;
  118. text-align: center;
  119. background: rgba(33, 139, 255, 0.7);
  120. color: #fff;
  121. font-weight: bold;
  122. font-size: 22px;
  123. }
  124. .FontIcon {
  125. height: 36px;
  126. width: 100%;
  127. line-height: 36px;
  128. text-align: center;
  129. margin: 0 auto;
  130. // border-radius: 7px;
  131. background: rgba(33, 139, 255, 0.7);
  132. font-size: 18px;
  133. font-weight: bold;
  134. color: #fff;
  135. }
  136. ::v-deep .el-button.item {
  137. border-width: 0;
  138. &:hover, &:focus {
  139. outline: none;
  140. }
  141. }
  142. .dsType {
  143. border: 1px solid #ccc;
  144. }
  145. .dsName {
  146. font-size: 14px;
  147. }
  148. }
  149. .el-dialog {
  150. .bs-container {
  151. // max-height: calc(90vh - 236px);
  152. .el-table {
  153. max-height: calc(90vh - 340px);
  154. }
  155. ::v-deep .ztree {
  156. max-height: calc(90vh - 325px) !important;
  157. }
  158. }
  159. }