fix colors

This commit is contained in:
Jesper Møller Jensen
2023-01-30 02:18:38 +01:00
parent cb6d5c84e4
commit 24f4eca460
6 changed files with 8 additions and 8 deletions

View File

@@ -56,7 +56,7 @@ export class UmbDashboardRedirectManagementElement extends UmbLitElement {
}
.trackerDisabled::after {
content: '';
background-color: rgba(250, 250, 250, 0.7);
background-color: var(--uui-color-disabled);
position: absolute;
border-radius: 2px;
left: 0;

View File

@@ -21,7 +21,7 @@ export class UmbModalLayoutFieldsSettingsElement extends UmbModalLayoutElement<U
display: flex;
flex-direction: column;
height: 100%;
background-color: white;
background-color: var(--uui-color-surface);
box-shadow: var(--uui-shadow-depth-1, 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24));
border-radius: var(--uui-border-radius);
padding: var(--uui-size-space-5);

View File

@@ -16,7 +16,7 @@ export class UmbModalLayoutFieldsViewerElement extends UmbModalLayoutElement<Sea
display: flex;
flex-direction: column;
height: 100%;
background-color: white;
background-color: var(--uui-color-surface);
box-shadow: var(--uui-shadow-depth-1, 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24));
border-radius: var(--uui-border-radius);
padding: var(--uui-size-space-5);

View File

@@ -17,7 +17,7 @@ export class UmbDashboardHealthCheckActionElement extends UmbLitElement {
margin: var(--uui-size-space-4) 0;
display: block;
border-radius: var(--uui-border-radius);
background-color: #eee;
background-color: var(--uui-color-surface-alt);
}
form {
margin: 0;

View File

@@ -29,14 +29,14 @@ export class UmbPropertyActionMenuElement extends UmbLitElement {
}
#dropdown {
background-color: white;
background-color: var(--uui-color-surface);
border-radius: var(--uui-border-radius);
width: 100%;
height: 100%;
box-sizing: border-box;
box-shadow: var(--uui-shadow-depth-3);
min-width: 200px;
color: black; /* Change to variable */
color: var(--uui-color-text);
}
`,
];

View File

@@ -29,7 +29,7 @@ export class UmbModalLayoutIconPickerElement extends UmbModalLayoutElement<UmbMo
display: flex;
flex-direction: column;
height: 100%;
background-color: white;
background-color: var(--uui-color-surface);
box-shadow: var(--uui-shadow-depth-1, 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24));
border-radius: var(--uui-border-radius);
padding: var(--uui-size-space-5);
@@ -74,7 +74,7 @@ export class UmbModalLayoutIconPickerElement extends UmbModalLayoutElement<UmbMo
#icon-selection .icon:focus,
#icon-selection .icon:hover,
#icon-selection .icon.selected {
background-color: rgba(0, 0, 0, 0.1);
background-color: var(--uui-color-selected);
}
uui-button {