@onemrvapublic/design-system-theme 20.6.1-develop.4 → 20.6.1-develop.6

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.
@@ -10,7 +10,6 @@
10
10
  selected-focus-state-layer-color: var(--mat-sys-primary),
11
11
  selected-hover-state-layer-color: var(--mat-sys-primary),
12
12
  selected-pressed-state-layer-color: var(--mat-sys-primary),
13
- label-text-font: var(--mat-sys-label-large-font),
14
13
  label-text-size: var(--mat-sys-label-large-size),
15
14
  label-text-weight: var(--mat-sys-label-large-weight),
16
15
  label-text-line-height: var(--mat-sys-label-large-height),
@@ -18,6 +17,10 @@
18
17
  );
19
18
 
20
19
  .mat-mdc-checkbox {
20
+ .mat-internal-form-field > label {
21
+ padding-left: 0;
22
+ }
23
+
21
24
  .mdc-checkbox__native-control:enabled:checked,
22
25
  .mdc-checkbox__native-control:enabled:indeterminate {
23
26
  ~ .mdc-checkbox__background {
@@ -2,6 +2,15 @@
2
2
  @use '../utilities/variables' as variables;
3
3
 
4
4
  @mixin override() {
5
+ --mat-menu-container-color: var(--mat-sys-surface);
6
+ --mat-menu-item-with-icon-leading-spacing: 8px;
7
+ --mat-menu-item-with-icon-trailing-spacing: 8px;
8
+ --mat-menu-item-label-text-font: Source Sans Pro;
9
+
10
+ .mat-mdc-menu-item {
11
+ min-height: var(--quad-spacer);
12
+ }
13
+
5
14
  button {
6
15
  &.mdc-icon-button {
7
16
  &.small {
@@ -14,5 +23,26 @@
14
23
  }
15
24
  }
16
25
  }
26
+
27
+ &.onemrva-icon-button.mat-mdc-icon-button {
28
+ .mat-mdc-button-persistent-ripple::before {
29
+ --mat-icon-button-state-layer-color: var(--mat-sys-surface);
30
+ }
31
+
32
+ &:hover {
33
+ box-shadow: 0 3px 3px 0 rgba(49, 47, 59, 0.32);
34
+ }
35
+
36
+ &:active {
37
+ border: 1px solid var(--mat-sys-outline);
38
+ }
39
+
40
+ &:focus {
41
+ border: 1px solid var(--mat-sys-outline);
42
+ box-shadow:
43
+ 0 0 0 1px #fff,
44
+ 0 0 0 5px #d7d5ed;
45
+ }
46
+ }
17
47
  }
18
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onemrvapublic/design-system-theme",
3
- "version": "v20.6.1-develop.4",
3
+ "version": "v20.6.1-develop.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },