perf(style): use skill
This commit is contained in:
@@ -13,6 +13,77 @@
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.modalContent {
|
||||
overflow: hidden;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
|
||||
}
|
||||
|
||||
.modalHeader {
|
||||
padding: 16px 20px 0;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.modalTitle {
|
||||
color: #1d2129;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.modalBody {
|
||||
padding: 16px 20px 20px;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root) {
|
||||
min-height: 32px;
|
||||
border-radius: 4px;
|
||||
padding-inline: 12px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
box-shadow: none;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root[data-variant="filled"]) {
|
||||
--button-bg: #1874ff;
|
||||
--button-hover: #0f6ae8;
|
||||
--button-color: #ffffff;
|
||||
--button-bd: transparent;
|
||||
background: #1874ff !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root[data-variant="filled"]:hover) {
|
||||
background: #0f6ae8 !important;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root[data-variant="default"]) {
|
||||
border-color: #e5e6eb;
|
||||
background: #ffffff;
|
||||
color: #4e5969;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root[data-disabled]),
|
||||
.modalContent :global(.mantine-Button-root:disabled) {
|
||||
border-color: #e5e6eb !important;
|
||||
background: #f2f3f5 !important;
|
||||
color: #c9cdd4 !important;
|
||||
cursor: not-allowed;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.modalContent :global(.mantine-Button-root[data-disabled]:hover),
|
||||
.modalContent :global(.mantine-Button-root:disabled:hover) {
|
||||
border-color: #e5e6eb !important;
|
||||
background: #f2f3f5 !important;
|
||||
color: #c9cdd4 !important;
|
||||
}
|
||||
|
||||
.filterPanel {
|
||||
position: relative;
|
||||
}
|
||||
@@ -121,6 +192,26 @@
|
||||
color: #4e5969;
|
||||
}
|
||||
|
||||
.filterPanel :global(.mantine-Button-root[data-disabled]),
|
||||
.filterPanel :global(.mantine-Button-root:disabled),
|
||||
.headerActions :global(.mantine-Button-root[data-disabled]),
|
||||
.headerActions :global(.mantine-Button-root:disabled) {
|
||||
border-color: #e5e6eb !important;
|
||||
background: #f2f3f5 !important;
|
||||
color: #c9cdd4 !important;
|
||||
cursor: not-allowed;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.filterPanel :global(.mantine-Button-root[data-disabled]:hover),
|
||||
.filterPanel :global(.mantine-Button-root:disabled:hover),
|
||||
.headerActions :global(.mantine-Button-root[data-disabled]:hover),
|
||||
.headerActions :global(.mantine-Button-root:disabled:hover) {
|
||||
border-color: #e5e6eb !important;
|
||||
background: #f2f3f5 !important;
|
||||
color: #c9cdd4 !important;
|
||||
}
|
||||
|
||||
.filterPanel :global(.mantine-ActionIcon-root),
|
||||
.headerActions :global(.mantine-ActionIcon-root) {
|
||||
width: 32px;
|
||||
|
||||
Reference in New Issue
Block a user