mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
69d7532c6c
feat: clickhouse driver * sync * updates
34 lines
565 B
CSS
34 lines
565 B
CSS
.table {
|
|
--table-border-color: var(--mantine-color-gray-2);
|
|
|
|
@mixin dark {
|
|
--table-border-color: var(--mantine-color-dark-5);
|
|
}
|
|
}
|
|
|
|
.resourceLinkText {
|
|
width: fit-content;
|
|
|
|
@mixin light {
|
|
border-bottom: 0.05em solid var(--mantine-color-dark-0);
|
|
}
|
|
@mixin dark {
|
|
border-bottom: 0.05em solid var(--mantine-color-dark-2);
|
|
}
|
|
}
|
|
|
|
.detailRow {
|
|
&:hover {
|
|
background: none !important;
|
|
}
|
|
}
|
|
|
|
.detailContent {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-0);
|
|
}
|
|
@mixin dark {
|
|
background: var(--mantine-color-dark-7);
|
|
}
|
|
}
|