style.module.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .documentTable tbody td {
  2. padding: 5px 10px 5px 12px;
  3. box-sizing: border-box;
  4. max-width: 200px;
  5. }
  6. .documentTable thead td {
  7. padding: 0px 10px 0px 12px;
  8. box-sizing: border-box;
  9. max-width: 200px;
  10. }
  11. .title {
  12. @apply text-xl font-medium text-gray-900;
  13. }
  14. .desc {
  15. @apply text-sm font-normal text-gray-500;
  16. }
  17. .actionIconWrapperList {
  18. @apply h-6 w-6 rounded-md border-none p-1 hover:bg-gray-100 !important;
  19. }
  20. .actionIconWrapperDetail {
  21. @apply h-8 w-8 p-2 hover:bg-gray-50 border border-gray-200 hover:border-gray-300 hover:shadow-[0_1px_2px_rgba(16,24,40,0.05)] !important;
  22. }
  23. .actionItem {
  24. @apply h-9 py-2 px-3 mx-1 flex items-center gap-2 hover:bg-gray-100 rounded-lg cursor-pointer;
  25. }
  26. .deleteActionItem {
  27. @apply hover:bg-red-50 !important;
  28. }
  29. .actionName {
  30. @apply text-gray-700 text-sm;
  31. }
  32. .addFileBtn {
  33. @apply mt-4 w-fit !text-[13px] text-primary-600 font-medium bg-white border-[0.5px];
  34. }
  35. .plusIcon {
  36. @apply w-4 h-4 mr-2 stroke-current stroke-[1.5px];
  37. }
  38. .emptyWrapper {
  39. @apply flex items-center justify-center h-full;
  40. }
  41. .emptyElement {
  42. @apply bg-gray-50 w-[560px] h-fit box-border px-5 py-4 rounded-2xl;
  43. }
  44. .emptyTitle {
  45. @apply text-gray-700 font-semibold;
  46. }
  47. .emptyTip {
  48. @apply mt-2 text-gray-500 text-sm font-normal;
  49. }
  50. .emptySymbolIconWrapper {
  51. @apply w-[44px] h-[44px] border border-solid border-gray-100 rounded-lg flex items-center justify-center mb-2;
  52. }
  53. .commonIcon {
  54. @apply w-4 h-4 inline-block align-middle;
  55. background-repeat: no-repeat;
  56. background-position: center center;
  57. background-size: contain;
  58. }
  59. .actionIcon {
  60. @apply bg-gray-500;
  61. mask-image: url(~@/assets/action.svg);
  62. }
  63. .pdfIcon {
  64. background-image: url(~@/assets/pdf.svg);
  65. }
  66. .jsonIcon {
  67. background-image: url(~@/assets/json.svg);
  68. }
  69. .htmlIcon {
  70. background-image: url(~@/assets/html.svg);
  71. }
  72. .txtIcon {
  73. background-image: url(~@/assets/txt.svg);
  74. }
  75. .markdownIcon {
  76. background-image: url(~@/assets/md.svg);
  77. }
  78. .mdIcon {
  79. background-image: url(~@/assets/md.svg);
  80. }
  81. .xlsIcon {
  82. background-image: url(~@/assets/xlsx.svg);
  83. }
  84. .xlsxIcon {
  85. background-image: url(~@/assets/xlsx.svg);
  86. }
  87. .csvIcon {
  88. background-image: url(~@/assets/csv.svg);
  89. }
  90. .docIcon {
  91. background-image: url(~@/assets/doc.svg);
  92. }
  93. .docxIcon {
  94. background-image: url(~@/assets/docx.svg);
  95. }
  96. .statusItemDetail {
  97. @apply h-8 font-medium border border-gray-200 inline-flex items-center rounded-lg pl-3 pr-4 mr-2;
  98. }
  99. .tdValue {
  100. @apply text-sm overflow-hidden text-ellipsis whitespace-nowrap;
  101. }
  102. .delModal {
  103. background: linear-gradient(
  104. 180deg,
  105. rgba(217, 45, 32, 0.05) 0%,
  106. rgba(217, 45, 32, 0) 24.02%
  107. ),
  108. #f9fafb;
  109. box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08),
  110. 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  111. @apply rounded-2xl p-8;
  112. }
  113. .warningWrapper {
  114. box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08),
  115. 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  116. background: rgba(255, 255, 255, 0.9);
  117. @apply h-12 w-12 border-[0.5px] border-gray-100 rounded-xl mb-3 flex items-center justify-center;
  118. }
  119. .warningIcon {
  120. @apply w-[22px] h-[22px] fill-current text-red-600;
  121. }