style.module.css 3.1 KB

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