inspects.scss 3.5 KB

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