@onemrvapublic/design-system-theme 17.2.61 → 17.2.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/_select.scss +1 -2
- package/components/_tooltip.scss +3 -5
- package/index.scss +5 -6
- package/package.json +1 -1
package/components/_select.scss
CHANGED
|
@@ -6,9 +6,8 @@
|
|
|
6
6
|
@include mat.select-base($theme);
|
|
7
7
|
@include mat.select-theme($theme);
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
9
|
.mat-mdc-select {
|
|
10
|
+
padding: 0;
|
|
12
11
|
--mat-select-invalid-arrow-color: #{µ.error($theme, 500)};
|
|
13
12
|
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
14
13
|
padding: 12px 0;
|
package/components/_tooltip.scss
CHANGED
|
@@ -7,13 +7,11 @@
|
|
|
7
7
|
@include mat.tooltip-base($theme);
|
|
8
8
|
@include mat.tooltip-theme($theme);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
10
|
.mat-mdc-tooltip {
|
|
11
|
+
--mdc-plain-tooltip-container-shape: 4px;
|
|
13
12
|
font-size: 12px;
|
|
14
13
|
background: #ffffff;
|
|
15
14
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.32);
|
|
16
|
-
border-radius: 4px;
|
|
17
15
|
margin: 0 -1px -2px -2px;
|
|
18
16
|
padding: $gap;
|
|
19
17
|
|
|
@@ -24,8 +22,8 @@
|
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
.mdc-tooltip__surface {
|
|
27
|
-
|
|
28
|
-
color: µ.grayscale($theme, 900);
|
|
25
|
+
--mdc-plain-tooltip-supporting-text-color: #{µ.grayscale($theme, 900)};
|
|
26
|
+
--mdc-plain-tooltip-container-color: #{µ.grayscale($theme, '900-contrast')};
|
|
29
27
|
line-height: normal;
|
|
30
28
|
max-width: fit-content;
|
|
31
29
|
white-space: pre-wrap;
|
package/index.scss
CHANGED
|
@@ -99,12 +99,11 @@
|
|
|
99
99
|
body {
|
|
100
100
|
height: 100%;
|
|
101
101
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}
|
|
102
|
+
font-family: mat.font-family(
|
|
103
|
+
map.get(variables.$onemrva-theme, typography),
|
|
104
|
+
body-1
|
|
105
|
+
); // HWKTMP for some reason the sans-serif version is configured somewhere but where...
|
|
106
|
+
|
|
108
107
|
}
|
|
109
108
|
|
|
110
109
|
body {
|