main.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .groupInfo {
  2. padding: 0;
  3. box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  4. border-radius: 8px;
  5. header {
  6. width: 100%;
  7. height: 63px;
  8. padding: 20px 24px 20px 24px;
  9. border-bottom: 1px solid #D9D9D9;
  10. span {
  11. font-weight: 500;
  12. font-size: 16px;
  13. color: rgba(0, 0, 0, 0.88);
  14. line-height: 24px;
  15. }
  16. button {
  17. margin-top: 13px;
  18. }
  19. }
  20. .el-dialog__body {
  21. display: flex;
  22. flex-direction: column;
  23. gap: 10px;
  24. width: 100%;
  25. height: calc(100% - 63px);
  26. overflow-y: auto;
  27. .group {
  28. padding: 15px 20px 15px 10px;
  29. }
  30. }
  31. }
  32. .userInfo {
  33. padding: 0;
  34. box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  35. border-radius: 8px;
  36. header {
  37. width: 100%;
  38. height: 63px;
  39. padding: 20px 24px 20px 24px;
  40. span {
  41. font-weight: 500;
  42. font-size: 16px;
  43. color: rgba(0, 0, 0, 0.88);
  44. line-height: 24px;
  45. }
  46. button {
  47. margin-top: 13px;
  48. }
  49. }
  50. .el-dialog__body {
  51. width: 100%;
  52. padding: 16px;
  53. height: calc(100% - 63px);
  54. overflow-y: auto;
  55. }
  56. }
  57. .workShopDialog {
  58. box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  59. border-radius: 8px;
  60. .el-dialog__header {
  61. span {
  62. font-weight: 500;
  63. font-size: 16px;
  64. color: rgba(0, 0, 0, 0.88);
  65. line-height: 24px;
  66. }
  67. }
  68. .el-dialog__body {
  69. height: 527px;
  70. }
  71. }
  72. .contentDialog {
  73. border-radius: 8px;
  74. .el-dialog__header {
  75. padding: 0 0 16px 0;
  76. span {
  77. display: flex;
  78. align-items: center;
  79. font-weight: 500;
  80. font-size: 16px;
  81. color: rgba(0, 0, 0, 0.88);
  82. line-height: 24px;
  83. position: relative;
  84. &::before {
  85. content: '';
  86. display: inline-block;
  87. width: 16px;
  88. height: 16px;
  89. background-image: url('@/assets/images/deleteTip.png');
  90. background-size: contain;
  91. background-repeat: no-repeat;
  92. margin-right: 8px;
  93. }
  94. }
  95. }
  96. }