-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdx_variables.css
More file actions
37 lines (30 loc) · 1.31 KB
/
dx_variables.css
File metadata and controls
37 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.container-with-devexpress-styles {
font-size: var(--dxds-font-size-base-md);
font-weight: var(--dxds-font-weight-base-default);
padding: var(--dxds-spacing-160);
background-color: var(--dxds-color-surface-primary-subdued-rest);
}
.container-with-devexpress-styles strong {
font-weight: var(--dxds-font-weight-base-stronger);
}
.container-with-devexpress-styles .utility-blue {
background-color: var(--dxds-color-surface-utility-blue-default-rest);
color: var(--dxds-neutral-10);
}
.container-with-devexpress-styles .danger {
color: var(--dxds-color-content-danger-default-rest);
}
.container-with-devexpress-styles .hovered:hover {
background-color: var(--dxds-color-surface-primary-subdued-hovered);
}
.button-with-custom-background {
--dxds-color-surface-primary-default-rest: var(--dxds-color-surface-utility-green-default-rest);
}
.grid-with-custom-styles {
--dxds-color-surface-neutral-default-hovered: var(--dxds-color-surface-primary-default-hovered);
--dxds-color-content-neutral-default-hovered: var(--dxds-color-content-neutral-default-static-dark-hovered);
}
.grid-with-custom-styles .custom-grid-header {
background-color: var(--dxds-color-surface-primary-default-rest) !important;
color: var(--dxds-color-content-neutral-default-static-dark-hovered) !important;
}