mirror of
https://github.com/LukeHagar/firecamp.git
synced 2025-12-06 04:19:43 +00:00
ui: added heading color with text lighter shade
This commit is contained in:
@@ -75,7 +75,7 @@ const BulkEditTable: FC<IBulkEditTable> = ({
|
||||
<TabHeader className="-mb-2">
|
||||
{title && (
|
||||
<TabHeader.Left>
|
||||
<span className="" data-testid="table-title">{title}</span>
|
||||
<span className="text-heading-color" data-testid="table-title">{title}</span>
|
||||
</TabHeader.Left>
|
||||
)}
|
||||
|
||||
|
||||
@@ -71,6 +71,8 @@
|
||||
--input-background-focus: var(--mantine-color-dark-7); /* .1 */
|
||||
--input-background: var(--app-background);
|
||||
|
||||
--heading-color: var(--mantine-color-gray-5);
|
||||
|
||||
--popover-background: var(--mantine-color-dark-5); /* .2 */
|
||||
--popover-foreground: var(--app-foreground);
|
||||
--popover-border: transparent;
|
||||
@@ -148,6 +150,8 @@
|
||||
--statusBar-border: var(--app-border);
|
||||
--statusBar-background-active: var(--mantine-color-gray-2);
|
||||
|
||||
--heading-color: var(--mantine-color-dark-4);
|
||||
|
||||
--input-border: var(--app-border);
|
||||
--input-placeholder: var(--mantine-color-gray-6);
|
||||
--input-text: var(--mantine-color-gray-9);
|
||||
@@ -849,10 +853,12 @@ tr:focus-visible {
|
||||
/*--------table temporary css starts ------------*/
|
||||
|
||||
/*--------table 2 css starts------------*/
|
||||
.primary-table .mtk1,
|
||||
.primary-table th {
|
||||
.primary-table .mtk1 {
|
||||
color: var(--tab-foreground-inactive) !important;
|
||||
}
|
||||
.primary-table th {
|
||||
color: var(--heading-color) !important;
|
||||
}
|
||||
|
||||
.table-cell .table-action {
|
||||
visibility: hidden;
|
||||
|
||||
@@ -59,6 +59,8 @@
|
||||
--input-background-focus: var(--mantine-color-dark-7); /* .1 */
|
||||
--input-background: var(--app-background);
|
||||
|
||||
--heading-color: var(--mantine-color-gray-5);
|
||||
|
||||
--popover-background: var(--mantine-color-dark-5); /* .2 */
|
||||
--popover-foreground: var(--app-foreground);
|
||||
--popover-border: transparent;
|
||||
@@ -136,6 +138,8 @@
|
||||
--statusBar-border: var(--app-border);
|
||||
--statusBar-background-active: var(--mantine-color-gray-2);
|
||||
|
||||
--heading-color: var(--mantine-color-dark-4);
|
||||
|
||||
--input-border: var(--app-border);
|
||||
--input-placeholder: var(--mantine-color-gray-6);
|
||||
--input-text: var(--mantine-color-gray-9);
|
||||
@@ -1734,6 +1738,9 @@
|
||||
.text-graphql {
|
||||
color: var(--req-graphql);
|
||||
}
|
||||
.text-heading-color {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
.text-info {
|
||||
color: var(--info);
|
||||
}
|
||||
@@ -2827,10 +2834,12 @@ tr:focus-visible {
|
||||
/*--------table temporary css starts ------------*/
|
||||
|
||||
/*--------table 2 css starts------------*/
|
||||
.primary-table .mtk1,
|
||||
.primary-table th {
|
||||
.primary-table .mtk1 {
|
||||
color: var(--tab-foreground-inactive) !important;
|
||||
}
|
||||
.primary-table th {
|
||||
color: var(--heading-color) !important;
|
||||
}
|
||||
|
||||
.table-cell .table-action {
|
||||
visibility: hidden;
|
||||
|
||||
@@ -75,6 +75,7 @@ module.exports = {
|
||||
focusBorder: 'var(--focus-border)',
|
||||
focusColor: '#ffffff1a',
|
||||
|
||||
'heading-color': 'var(--heading-color)',
|
||||
primaryColor: 'var(--app-primary)',
|
||||
'primaryColor-text': '#ffffff',
|
||||
secondaryColor: 'var(--app-secondary)',
|
||||
|
||||
Reference in New Issue
Block a user