first-item.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .hc-layout-box {
  2. display: flex;
  3. position: relative;
  4. height: 100%;
  5. .hc-layout-left-box {
  6. width: 382px;
  7. position: relative;
  8. background: #f1f5f8;
  9. border-radius: 10px;
  10. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  11. .horizontal-drag-line {
  12. position: absolute;
  13. right: 0;
  14. top: 0;
  15. width: 2px;
  16. height: 100%;
  17. user-select: none;
  18. cursor: col-resize;
  19. background-color: #00000000;
  20. }
  21. .hc-project-box {
  22. position: relative;
  23. padding: 15px 24px;
  24. display: flex;
  25. align-items: flex-start;
  26. border-bottom: 1px solid #E9E9E9;
  27. .hc-project-icon-box {
  28. font-size: 30px;
  29. color: var(--el-color-primary);
  30. }
  31. .project-name-box {
  32. flex: auto;
  33. position: relative;
  34. overflow: hidden;
  35. .project-alias {
  36. color: var(--el-color-primary);
  37. }
  38. .project-name {
  39. margin-top: 6px;
  40. color: #838791;
  41. }
  42. }
  43. }
  44. .hc-tree-box {
  45. position: relative;
  46. padding: 15px 20px;
  47. height: calc(100% - 80px);
  48. }
  49. }
  50. .hc-layout-content-box {
  51. flex: 1;
  52. position: relative;
  53. margin-left: 24px;
  54. }
  55. }
  56. .hc-first-item-node-layout {
  57. .node-content {
  58. flex: 1;
  59. display: flex;
  60. position: relative;
  61. margin-bottom: 24px;
  62. height: calc(100% - 105px);
  63. .node-form {
  64. flex: 1;
  65. padding: 24px;
  66. margin-right: 24px;
  67. position: relative;
  68. background: #f1f5f8;
  69. border-radius: 10px;
  70. box-shadow: -2px 0px 10px 0px rgba(32,37,50,0.03), 0px 10px 21px 20px rgba(32,37,50,0.03);
  71. }
  72. .node-file {
  73. width: 440px;
  74. position: relative;
  75. padding: 24px 20px;
  76. background: #f1f5f8;
  77. border-radius: 10px;
  78. box-shadow: -2px 0px 10px 0px rgba(32,37,50,0.03), 0px 10px 21px 20px rgba(32,37,50,0.03);
  79. .title {
  80. position: relative;
  81. margin-bottom: 14px;
  82. font-size: 16px;
  83. font-weight: 500;
  84. }
  85. .node-upload-box {
  86. position: relative;
  87. }
  88. .hc-table-node-file-box {
  89. position: relative;
  90. height: calc(100% - 245px);
  91. }
  92. }
  93. }
  94. .node-action {
  95. position: relative;
  96. height: 80px;
  97. background: #f1f5f8;
  98. border-radius: 10px;
  99. display: flex;
  100. align-items: center;
  101. padding: 20px 24px;
  102. box-shadow: -2px 0px 10px 0 rgba(32,37,50,0.03), 0 -10px 21px 3px rgba(32,37,50,0.03);
  103. overflow: hidden;
  104. }
  105. }