fix colors
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
`,
|
||||
];
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user