@ieeesa-npm/shared-styles 0.5.8 → 0.5.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/styles/mixins.scss +15 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ieeesa-npm/shared-styles",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"
@@ -66,7 +66,20 @@
66
66
  }
67
67
  }
68
68
  }
69
-
69
+ @mixin input-disabled() {
70
+ .mat-mdc-text-field-wrapper,
71
+ .mat-mdc-form-field-focus-overlay {
72
+ background: $ieeesa-white;
73
+ padding: 0;
74
+ border: 0;
75
+ }
76
+ .mdc-line-ripple {
77
+ &::before,
78
+ &::after {
79
+ border: 0;
80
+ }
81
+ }
82
+ }
70
83
  @mixin set-tab-border-radius(
71
84
  $border-top-left-radius,
72
85
  $border-top-right-radius
@@ -83,7 +96,7 @@
83
96
  @return rotate($deg);
84
97
  }
85
98
  @mixin set-form-field-border-and-background() {
86
- background: $ieeesa-form-field-background;
99
+ background: $ieeesa-form-field-background !important;
87
100
  border-top: $ieeesa-border-width solid $ieeesa-dark-grey-60;
88
101
  border-right: $ieeesa-border-width solid $ieeesa-dark-grey-60;
89
102
  border-left: $ieeesa-border-width solid $ieeesa-dark-grey-60;