inspect.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. html.dark {
  2. .hc-carry-spot-checks-pdf {
  3. position: relative;
  4. flex: 1 1 auto;
  5. height: 100%;
  6. transition: 0.2s;
  7. .hc-csc-pdf-btn {
  8. position: absolute;
  9. right: 0;
  10. top: 50%;
  11. color: white;
  12. font-size: 25px;
  13. z-index: 111;
  14. cursor: pointer;
  15. width: 36px;
  16. height: 40px;
  17. display: flex;
  18. padding-left: 6px;
  19. align-items: center;
  20. justify-content: center;
  21. border-radius: 150px 0 0 150px;
  22. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  23. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  24. background-size: 200%;
  25. transition: background-position 0.5s;
  26. &:hover {
  27. background-position: 100% 0;
  28. }
  29. }
  30. }
  31. .hc-carry-spot-checks-data {
  32. position: relative;
  33. height: 100%;
  34. width: 480px;
  35. padding-left: 14px;
  36. border-left: 1px solid #e9e9e9;
  37. transition: 0.2s;
  38. .hc-csc-switch {
  39. position: relative;
  40. margin-bottom: 10px;
  41. }
  42. .hc-csc-info-box {
  43. position: relative;
  44. // background: #E7EEF4;
  45. border: 1px solid var(--el-color-primary);
  46. color: white;
  47. background: transparent;
  48. border-radius: 10px;
  49. padding: 12px;
  50. height: 244px;
  51. margin-bottom: 20px;
  52. .hc-info-text-item {
  53. position: relative;
  54. font-size: 14px;
  55. display: flex;
  56. align-items: flex-start;
  57. .title {
  58. font-weight: bold;
  59. }
  60. .content {
  61. flex: 1;
  62. position: relative;
  63. color: white;
  64. }
  65. }
  66. .hc-info-text-item + .hc-info-text-item {
  67. margin-top: 8px;
  68. }
  69. }
  70. .hc-csc-data-box {
  71. position: relative;
  72. // background: #E7EEF4;
  73. background: transparent;
  74. border-radius: 10px;
  75. padding: 12px;
  76. height: calc(100% - 562px);
  77. margin-bottom: 16px;
  78. .hc-csc-associated-row {
  79. position: relative;
  80. text-align: left;
  81. display: flex;
  82. align-items: center;
  83. }
  84. .hc-table-info-btn {
  85. position: absolute;
  86. right: -5px;
  87. top: -12px;
  88. color: white;
  89. font-size: 20px;
  90. z-index: 111;
  91. cursor: pointer;
  92. border-radius: 50px;
  93. width: 34px;
  94. height: 34px;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  99. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  100. background-size: 200%;
  101. transition: background-position 0.5s;
  102. &:hover {
  103. background-position: 100% 0;
  104. }
  105. }
  106. }
  107. .hc-csc-action-box {
  108. position: relative;
  109. background: transparent;
  110. border-radius: 10px;
  111. padding: 12px;
  112. height: 240px;
  113. .header-box {
  114. position: relative;
  115. display: flex;
  116. align-items: center;
  117. .title {
  118. flex: 1;
  119. color: #9A9A9A;
  120. font-size: 15px;
  121. }
  122. }
  123. .textarea-box {
  124. margin-top: 12px;
  125. }
  126. .btn-box {
  127. position: relative;
  128. margin-top: 20px;
  129. text-align: center;
  130. }
  131. }
  132. }
  133. }