@onemrvapublic/design-system-theme 20.7.0-develop.1 → 20.7.0-develop.3
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/overrides/_button.scss
CHANGED
|
@@ -25,6 +25,11 @@
|
|
|
25
25
|
protected-label-text-color: green,
|
|
26
26
|
)
|
|
27
27
|
);
|
|
28
|
+
.mdc-icon-button {
|
|
29
|
+
&:hover {
|
|
30
|
+
box-shadow: var(--mat-sys-level2);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
28
33
|
.mdc-button,
|
|
29
34
|
.mdc-icon-button {
|
|
30
35
|
// transition: all 1s ease; // has issues with WAVE when used in dialod, should be removed ?
|
package/overrides/_select.scss
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
panel-background-color: var(--mat-sys-surface),
|
|
8
8
|
trigger-text-font: var(--mat-sys-body-medium-font),
|
|
9
9
|
trigger-text-size: var(--mat-sys-body-medium-size),
|
|
10
|
+
trigger-text-weight: var(--mat-sys-body-medium-weight),
|
|
10
11
|
)
|
|
11
12
|
);
|
|
12
13
|
|
|
@@ -79,6 +80,39 @@
|
|
|
79
80
|
}
|
|
80
81
|
}
|
|
81
82
|
|
|
83
|
+
.xlarge {
|
|
84
|
+
@include mat.dialog-overrides(
|
|
85
|
+
(
|
|
86
|
+
container-max-width: 1280px,
|
|
87
|
+
container-min-width: 996px,
|
|
88
|
+
)
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
.large {
|
|
92
|
+
@include mat.dialog-overrides(
|
|
93
|
+
(
|
|
94
|
+
container-max-width: 996px,
|
|
95
|
+
container-min-width: 812px,
|
|
96
|
+
)
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
.medium {
|
|
100
|
+
@include mat.dialog-overrides(
|
|
101
|
+
(
|
|
102
|
+
container-max-width: 812px,
|
|
103
|
+
container-min-width: 628px,
|
|
104
|
+
)
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
.small {
|
|
108
|
+
@include mat.dialog-overrides(
|
|
109
|
+
(
|
|
110
|
+
container-max-width: 628px,
|
|
111
|
+
container-min-width: 444px,
|
|
112
|
+
)
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
|
|
82
116
|
//.mat-mdc-select {
|
|
83
117
|
// padding: 0;
|
|
84
118
|
// --mat-select-invalid-arrow-color: #{µ.error($theme, 500)};
|
package/package.json
CHANGED
package/utilities/_fonts.scss
CHANGED