image-data.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. .hc-layout-box {
  2. display: flex;
  3. position: relative;
  4. height: calc(100% - 60px);
  5. .hc-layout-left-box {
  6. position: relative;
  7. background: white;
  8. overflow: auto;
  9. border-top: 1px solid #EEEEEE;
  10. border-right: 1px solid #EEEEEE;
  11. width: 382px;
  12. .horizontal-drag-line {
  13. position: absolute;
  14. right: 0;
  15. top: 0;
  16. width: 4px;
  17. height: 100%;
  18. user-select: none;
  19. cursor: col-resize;
  20. background-color: #e4e4e4;
  21. transition: background-color 0.2s;
  22. &:hover {
  23. background-color: rgba(119, 119, 119, .5);
  24. }
  25. }
  26. .hc-project-box {
  27. position: relative;
  28. padding: 15px 24px;
  29. border-bottom: 1px solid #EEEEEE;
  30. .project-alias-box {
  31. position: relative;
  32. color: var(--hc-primary);
  33. }
  34. .project-name {
  35. position: relative;
  36. color: #999999;
  37. margin-top: 10px;
  38. }
  39. }
  40. .hc-el-tree-box {
  41. position: relative;
  42. padding: 15px 20px;
  43. height: calc(100% - 85px);
  44. overflow: auto;
  45. }
  46. &.view-wbs-type .hc-el-tree-box {
  47. height: calc(100% - 85px);
  48. }
  49. &.view-date-type .hc-el-tree-box {
  50. height: 100%;
  51. }
  52. }
  53. .hc-layout-content-box {
  54. flex: 1;
  55. overflow: auto;
  56. position: relative;
  57. display: inline-grid;
  58. padding: 0 24px 15px 20px;
  59. }
  60. }
  61. .hc-card-header {
  62. position: relative;
  63. font-size: initial;
  64. font-weight: initial;
  65. }
  66. .hc-img-list-box {
  67. position: relative;
  68. .img-list-item {
  69. position: relative;
  70. display: flex;
  71. padding: 15px 0;
  72. .img-box {
  73. position: relative;
  74. height: 150px;
  75. width: 150px;
  76. margin-right: 24px;
  77. .el-image-box {
  78. height: 150px;
  79. width: 150px;
  80. background-color: #fdfdfd;
  81. border-radius: 4px;
  82. }
  83. video {
  84. height: 150px;
  85. width: 150px;
  86. border-radius: 4px;
  87. }
  88. }
  89. .content-box {
  90. position: relative;
  91. height: 150px;
  92. flex: 1;
  93. .title-box {
  94. position: relative;
  95. display: flex;
  96. align-items: center;
  97. .text-title {
  98. position: relative;
  99. flex: 1;
  100. }
  101. .icon-box {
  102. position: relative;
  103. font-size: 24px;
  104. height: 28px;
  105. display: flex;
  106. align-items: center;
  107. .icon-item {
  108. cursor: pointer;
  109. }
  110. .icon-item + .icon-item {
  111. margin-left: 20px;
  112. }
  113. }
  114. }
  115. .text-content {
  116. position: relative;
  117. margin: 12px 0;
  118. line-height: 1.7;
  119. height: 71.4px;
  120. display: flex;
  121. align-items: center;
  122. }
  123. .foot-text-box {
  124. position: relative;
  125. font-size: 16px;
  126. }
  127. }
  128. &:first-child {
  129. padding-top: 0;
  130. }
  131. &:last-child {
  132. padding-bottom: 0;
  133. }
  134. }
  135. .img-list-item + .img-list-item {
  136. border-top: 1px solid #eeeeee;
  137. }
  138. }
  139. .hc-card-content-box {
  140. position: relative;
  141. display: flex;
  142. .hc-form-box {
  143. position: relative;
  144. }
  145. .card-right-table-box {
  146. position: relative;
  147. flex: 1;
  148. margin-left: 50px;
  149. height: 610px;
  150. overflow: auto;
  151. }
  152. }
  153. .modal-card-box {
  154. .title-box {
  155. position: relative;
  156. i {
  157. font-size: 20px;
  158. position: absolute;
  159. right: 0;
  160. cursor: pointer;
  161. color: #717171;
  162. transition: color .3s;
  163. &:hover {
  164. color: var(--hc-primary);
  165. }
  166. }
  167. }
  168. .data-table-box {
  169. position: relative;
  170. max-height: 400px;
  171. overflow: auto;
  172. margin-bottom: 10px;
  173. }
  174. }
  175. .preview-video {
  176. width: 100%;
  177. }
  178. html.theme-dark {
  179. .hc-layout-box .hc-layout-left-box {
  180. background: var(--hc-bg-color);
  181. border-top: 1px solid #303030;
  182. border-right: 1px solid #303030;
  183. }
  184. .hc-layout-box .hc-layout-left-box .hc-project-box {
  185. border-bottom: 1px solid #303030;
  186. }
  187. .hc-layout-box .hc-tree-foot-tip-box {
  188. border-top: 1px solid #303030;
  189. }
  190. .hc-layout-box .hc-layout-left-box .horizontal-drag-line {
  191. background-color: #303030;
  192. }
  193. }