数字化园区前端项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Message.scss 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .my-message[data-1664346848130] {
  2. background: #f9f9f9;
  3. .message-header {
  4. background: url("~@/assets/image/myRelated/headerBgc.png") no-repeat;
  5. background-size: 100% 100%;
  6. }
  7. .message-content-container {
  8. width: $wrapWidth;
  9. margin: 0 auto;
  10. margin-top: 30px;
  11. margin-bottom: 20px;
  12. .title {
  13. height: 30px;
  14. line-height: 30px;
  15. .title-span {
  16. @include font(18px, #334a5f);
  17. margin-left: 10px;
  18. font-weight: bold;
  19. }
  20. .title-icon {
  21. cursor: pointer;
  22. }
  23. }
  24. .table-box {
  25. margin-top: 20px;
  26. background: #fff;
  27. padding: 30px;
  28. color: #334a5f;
  29. min-height: calc(100vh - 340px - 100px - 160px);
  30. .table-title {
  31. height: 22px;
  32. line-height: 22px;
  33. margin-bottom: 10px;
  34. .title-span {
  35. @include font(18px, #334a5f);
  36. font-weight: bold;
  37. }
  38. .unread-num {
  39. @include font(16px, #d9121a);
  40. margin-right: 5px;
  41. }
  42. .mark-read {
  43. @include font(18px, #0086e7);
  44. cursor: pointer;
  45. margin-left: 10px;
  46. user-select: none;
  47. }
  48. }
  49. .table-container {
  50. border: 1px solid #bce1ff;
  51. border-bottom: 0;
  52. border-top: 2px solid #bce1ff;
  53. .block-table {
  54. width: 100%;
  55. th {
  56. background: #f2f7fb;
  57. border-color: #bce1ff;
  58. height: 80px;
  59. @include font(16px, #334a5f);
  60. }
  61. td {
  62. border-color: #bce1ff;
  63. height: 50px;
  64. @include font(16px, #334a5f);
  65. cursor: pointer;
  66. }
  67. .checked-column {
  68. .cell {
  69. text-overflow: initial;
  70. }
  71. }
  72. &::before {
  73. background-color: #bce1ff;
  74. }
  75. .check-span {
  76. display: inline-block;
  77. width: 20px;
  78. height: 20px;
  79. box-sizing: border-box;
  80. border: solid 1px #bce1ff;
  81. position: relative;
  82. top: 3px;
  83. cursor: pointer;
  84. user-select: none;
  85. img {
  86. position: absolute;
  87. left: 2px;
  88. }
  89. &.is-read {
  90. border-color: #c0c4cc;
  91. cursor: not-allowed;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. .pagination_box {
  98. text-align: right;
  99. margin-top: 10px;
  100. }
  101. }
  102. }