i-tech-shared-components 1.4.41 → 1.4.43

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 (45) hide show
  1. package/README.md +26 -26
  2. package/assets/back.svg +3 -3
  3. package/assets/links/T3/audit-trail.svg +3 -3
  4. package/assets/links/T3/automation.svg +5 -5
  5. package/assets/links/T3/contact-person.svg +10 -10
  6. package/assets/links/T3/contract.svg +3 -3
  7. package/assets/links/T3/domiciles.svg +3 -3
  8. package/assets/links/T3/drivers.svg +3 -3
  9. package/assets/links/T3/general.svg +3 -3
  10. package/assets/links/T3/ile.svg +3 -3
  11. package/assets/links/T3/integrations.svg +3 -3
  12. package/assets/links/T3/license-type.svg +7 -7
  13. package/assets/links/T3/monitoring.svg +7 -7
  14. package/assets/links/T3/reports.svg +3 -3
  15. package/assets/links/T3/schedule.svg +3 -3
  16. package/assets/links/T3/settings.svg +3 -3
  17. package/assets/links/T3/units.svg +4 -4
  18. package/assets/links/T3/usps.svg +3 -3
  19. package/assets/links/TMT/audit-trail.svg +3 -3
  20. package/assets/links/TMT/loads.svg +7 -7
  21. package/assets/links/TMT/settings.svg +3 -3
  22. package/assets/logos/full/ORGANIZATION.svg +9 -9
  23. package/assets/logos/full/T3.svg +13 -13
  24. package/assets/logos/small/ORGANIZATION.svg +9 -9
  25. package/assets/logos/small/T3.svg +10 -10
  26. package/assets/selected_organization.svg +3 -3
  27. package/assets/toggle-state-left.svg +3 -3
  28. package/assets/toggle-state-right.svg +10 -10
  29. package/fesm2022/i-tech-shared-components.mjs +70 -70
  30. package/fesm2022/i-tech-shared-components.mjs.map +1 -1
  31. package/package.json +1 -1
  32. package/public-api.d.ts +3 -0
  33. package/theme/_ag-grid.scss +245 -245
  34. package/theme/_buttons.scss +68 -68
  35. package/theme/_color_themes.scss +136 -136
  36. package/theme/_date_picker.scss +77 -77
  37. package/theme/_date_time_picker.scss +87 -87
  38. package/theme/_form_fields.scss +117 -117
  39. package/theme/_icon-button.scss +165 -165
  40. package/theme/_label.scss +238 -238
  41. package/theme/_mat-selects.scss +281 -281
  42. package/theme/_menu.scss +13 -13
  43. package/theme/_text_input.scss +29 -29
  44. package/theme/variables/_colors.scss +20 -20
  45. package/theme.scss +32 -32
@@ -1,281 +1,281 @@
1
- // Import Material theming
2
- @use '@angular/material' as mat;
3
- @use "./color_themes.scss" as color-themes;
4
-
5
-
6
- body {
7
- --mat-option-hover-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
8
- --mat-option-selected-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
9
- --mat-option-focus-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
10
- --mat-select-trigger-text-line-height: 20px !important;
11
- --mat-select-trigger-text-size: 13px !important;
12
- --mat-select-trigger-text-weight: 500 !important;
13
- --mat-select-trigger-text-tracking: 0.2px !important;
14
- --mat-select-enabled-trigger-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
15
- --mat-full-pseudo-checkbox-unselected-icon-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 80)} !important;
16
- --mat-select-placeholder-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
17
- --mat-option-selected-state-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
18
- --mat-option-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
19
-
20
- .new-mat-autocomplete {
21
- .mat-mdc-form-field {
22
- .mat-mdc-form-field-icon-suffix>.mat-icon {
23
- padding-left: 0;
24
- }
25
- }
26
- .select-arrow {
27
- &.open {
28
- transform: rotate(180deg);
29
- padding-left: 12px !important;
30
- padding-right: 0 !important;
31
- }
32
- }
33
-
34
- .mat-mdc-select-arrow {
35
- display: none;
36
- }
37
-
38
- position: relative;
39
- width: 100%;
40
- // Search input container
41
- .search-input {
42
- position: relative;
43
- width: 100%;
44
-
45
- input {
46
- width: 100%;
47
- height: 40px;
48
- padding: 8px 40px 8px 36px !important;
49
- border: 1px solid #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
50
- border-radius: 4px;
51
- font-size: 13px;
52
- line-height: 24px;
53
- letter-spacing: 0.5px;
54
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
55
- background: white;
56
-
57
- &:disabled {
58
- border: 1px solid #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 99)};
59
- }
60
-
61
- &:focus {
62
- border-color: #0060DF;
63
- border-width: 3px;
64
- outline: none;
65
- }
66
-
67
- &:hover:not(:focus):not(:disabled) {
68
- border-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 70)};
69
- }
70
-
71
- &::placeholder {
72
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
73
- font-size: 13px;
74
- font-weight: 500;
75
- line-height: 20px;
76
- letter-spacing: 0.2px;
77
- }
78
- }
79
-
80
- // Search icon
81
- .search-icon {
82
- position: absolute;
83
- left: 50px;
84
- top: 57%;
85
- transform: translateY(-50%);
86
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
87
-
88
- mat-icon {
89
- font-size: 20px;
90
- width: 20px;
91
- height: 20px;
92
- }
93
- }
94
-
95
- // Dropdown arrow
96
- app-icon-button {
97
- position: absolute;
98
- right: 0;
99
- top: 50%;
100
- transform: translateY(-50%);
101
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
102
-
103
- &.rotated {
104
- transform: translateY(-50%) rotate(180deg);
105
- }
106
-
107
- &.readonly-color {
108
- opacity: 0.5;
109
- }
110
- }
111
- }
112
-
113
- //// Placeholder and selected value
114
- .custom-placeholder {
115
- position: absolute;
116
- top: 28px;
117
- left: 17px;
118
- font-size: 13px;
119
- color: #647081;
120
- pointer-events: none;
121
- z-index: 1; // Ensure it's above the form field background
122
-
123
- &.custom-value:not(.readonly-color) {
124
- font-weight: 500;
125
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
126
- width: 80%;
127
- z-index: 2; // Higher z-index to ensure visibility above other elements
128
- }
129
- }
130
-
131
- // Error state
132
- .mat-mdc-form-field-error {
133
- //color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 40)};
134
- animation: mat-form-field-animation 900ms cubic-bezier(0.0, 0.0, 0.2, 1);
135
- position: absolute;
136
- left: 16px;
137
- font-weight: 500;
138
- }
139
-
140
- @keyframes mat-form-field-animation {
141
- from {
142
- opacity: 0;
143
- transform: translateY(-0.5em);
144
- }
145
- to {
146
- opacity: 1;
147
- transform: translateY(0);
148
- }
149
- }
150
-
151
- }
152
-
153
- // Hide mat option checkbox when it doesnt have multiple state
154
- .mat-mdc-option:not(.mat-mdc-option-multiple) {
155
- .mat-pseudo-checkbox {
156
- display: none !important;
157
- }
158
- }
159
-
160
- .mat-select-with-search {
161
- // Hidden select element
162
- .mat-mdc-form-field {
163
- .mat-mdc-select {
164
- opacity: 0;
165
- position: absolute;
166
- width: 100%;
167
- height: 0;
168
- top: 25px;
169
- }
170
- }
171
-
172
- .search-input {
173
- position: absolute;
174
- input {
175
- padding-right: max(16px, var(--mdc-outlined-text-field-container-shape, var(--mat-app-corner-extra-small))) !important;
176
- padding-left: max(16px, var(--mdc-outlined-text-field-container-shape, var(--mat-app-corner-extra-small)) + 4px) !important;
177
- }
178
- }
179
- .mat-mdc-select {
180
- visibility: hidden !important;
181
- display: block;
182
- height: 0;
183
- }
184
- .custom-value {
185
- color: unset;
186
- }
187
- .custom_drop_down_icon {
188
- position: absolute;
189
- height: 10px;
190
- width: 10px;
191
- right: 10px;
192
- top: 45px;
193
- }
194
- .close_dropdown_icon {
195
- transform: rotate(180deg);
196
- }
197
- & app-error-message {
198
- & .text {
199
- margin-top: 40px;
200
- }
201
- }
202
- }
203
-
204
- .empty_selection_state {
205
- height: 142px !important;
206
- justify-content: center !important;
207
- padding: 0 56px;
208
- background: #F7FDFC;
209
- pointer-events: auto !important;
210
-
211
- span {
212
- width: 100%;
213
- margin: unset !important;
214
- opacity: 1 !important;
215
- }
216
- .mat-pseudo-checkbox {
217
- display: none;
218
- }
219
- }
220
- .empty_selection_state.mdc-list-item--disabled {
221
- opacity: 1 !important;
222
- min-height: 100px !important;
223
- span {
224
- font-size: unset !important;
225
- color: unset !important;
226
- }
227
- .actions_and_tile > span {
228
- display: inline-block;
229
- color: #8A8383 !important;
230
- width: 100%;
231
- text-align: center;
232
- }
233
- }
234
-
235
- .option_loading {
236
- .mat-pseudo-checkbox {
237
- display: none;
238
- }
239
- }
240
-
241
- .mat-mdc-option {
242
- min-height: 40px !important;
243
- padding: 10px 12px !important;
244
- }
245
-
246
- .mat-mdc-option {
247
- font-size: 13px;
248
- font-style: normal;
249
- font-weight: 500;
250
- line-height: 20px;
251
- letter-spacing: 0.2px;
252
-
253
- .sub_value {
254
- font-size: 11px;
255
- font-weight:400;
256
- line-height: 16px;
257
- }
258
- }
259
-
260
- .filter_dropdown {
261
- .search-input {
262
- input {
263
- &, &::placeholder {
264
- font-size: 13px !important;
265
- font-weight: 500 !important;
266
- }
267
- }
268
- }
269
- .custom-placeholder {
270
- color: var(--neutral50) !important;
271
- font-size: 13px !important;
272
- font-weight: 500 !important;
273
- }
274
- }
275
- }
276
-
277
- .hide_input_placeholder {
278
- input::placeholder {
279
- color: transparent !important;
280
- }
281
- }
1
+ // Import Material theming
2
+ @use '@angular/material' as mat;
3
+ @use "./color_themes.scss" as color-themes;
4
+
5
+
6
+ body {
7
+ --mat-option-hover-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
8
+ --mat-option-selected-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
9
+ --mat-option-focus-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
10
+ --mat-select-trigger-text-line-height: 20px !important;
11
+ --mat-select-trigger-text-size: 13px !important;
12
+ --mat-select-trigger-text-weight: 500 !important;
13
+ --mat-select-trigger-text-tracking: 0.2px !important;
14
+ --mat-select-enabled-trigger-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
15
+ --mat-full-pseudo-checkbox-unselected-icon-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 80)} !important;
16
+ --mat-select-placeholder-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
17
+ --mat-option-selected-state-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
18
+ --mat-option-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
19
+
20
+ .new-mat-autocomplete {
21
+ .mat-mdc-form-field {
22
+ .mat-mdc-form-field-icon-suffix>.mat-icon {
23
+ padding-left: 0;
24
+ }
25
+ }
26
+ .select-arrow {
27
+ &.open {
28
+ transform: rotate(180deg);
29
+ padding-left: 12px !important;
30
+ padding-right: 0 !important;
31
+ }
32
+ }
33
+
34
+ .mat-mdc-select-arrow {
35
+ display: none;
36
+ }
37
+
38
+ position: relative;
39
+ width: 100%;
40
+ // Search input container
41
+ .search-input {
42
+ position: relative;
43
+ width: 100%;
44
+
45
+ input {
46
+ width: 100%;
47
+ height: 40px;
48
+ padding: 8px 40px 8px 36px !important;
49
+ border: 1px solid #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
50
+ border-radius: 4px;
51
+ font-size: 13px;
52
+ line-height: 24px;
53
+ letter-spacing: 0.5px;
54
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
55
+ background: white;
56
+
57
+ &:disabled {
58
+ border: 1px solid #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 99)};
59
+ }
60
+
61
+ &:focus {
62
+ border-color: #0060DF;
63
+ border-width: 3px;
64
+ outline: none;
65
+ }
66
+
67
+ &:hover:not(:focus):not(:disabled) {
68
+ border-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 70)};
69
+ }
70
+
71
+ &::placeholder {
72
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
73
+ font-size: 13px;
74
+ font-weight: 500;
75
+ line-height: 20px;
76
+ letter-spacing: 0.2px;
77
+ }
78
+ }
79
+
80
+ // Search icon
81
+ .search-icon {
82
+ position: absolute;
83
+ left: 50px;
84
+ top: 57%;
85
+ transform: translateY(-50%);
86
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
87
+
88
+ mat-icon {
89
+ font-size: 20px;
90
+ width: 20px;
91
+ height: 20px;
92
+ }
93
+ }
94
+
95
+ // Dropdown arrow
96
+ app-icon-button {
97
+ position: absolute;
98
+ right: 0;
99
+ top: 50%;
100
+ transform: translateY(-50%);
101
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
102
+
103
+ &.rotated {
104
+ transform: translateY(-50%) rotate(180deg);
105
+ }
106
+
107
+ &.readonly-color {
108
+ opacity: 0.5;
109
+ }
110
+ }
111
+ }
112
+
113
+ //// Placeholder and selected value
114
+ .custom-placeholder {
115
+ position: absolute;
116
+ top: 28px;
117
+ left: 17px;
118
+ font-size: 13px;
119
+ color: #647081;
120
+ pointer-events: none;
121
+ z-index: 1; // Ensure it's above the form field background
122
+
123
+ &.custom-value:not(.readonly-color) {
124
+ font-weight: 500;
125
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
126
+ width: 80%;
127
+ z-index: 2; // Higher z-index to ensure visibility above other elements
128
+ }
129
+ }
130
+
131
+ // Error state
132
+ .mat-mdc-form-field-error {
133
+ //color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 40)};
134
+ animation: mat-form-field-animation 900ms cubic-bezier(0.0, 0.0, 0.2, 1);
135
+ position: absolute;
136
+ left: 16px;
137
+ font-weight: 500;
138
+ }
139
+
140
+ @keyframes mat-form-field-animation {
141
+ from {
142
+ opacity: 0;
143
+ transform: translateY(-0.5em);
144
+ }
145
+ to {
146
+ opacity: 1;
147
+ transform: translateY(0);
148
+ }
149
+ }
150
+
151
+ }
152
+
153
+ // Hide mat option checkbox when it doesnt have multiple state
154
+ .mat-mdc-option:not(.mat-mdc-option-multiple) {
155
+ .mat-pseudo-checkbox {
156
+ display: none !important;
157
+ }
158
+ }
159
+
160
+ .mat-select-with-search {
161
+ // Hidden select element
162
+ .mat-mdc-form-field {
163
+ .mat-mdc-select {
164
+ opacity: 0;
165
+ position: absolute;
166
+ width: 100%;
167
+ height: 0;
168
+ top: 25px;
169
+ }
170
+ }
171
+
172
+ .search-input {
173
+ position: absolute;
174
+ input {
175
+ padding-right: max(16px, var(--mdc-outlined-text-field-container-shape, var(--mat-app-corner-extra-small))) !important;
176
+ padding-left: max(16px, var(--mdc-outlined-text-field-container-shape, var(--mat-app-corner-extra-small)) + 4px) !important;
177
+ }
178
+ }
179
+ .mat-mdc-select {
180
+ visibility: hidden !important;
181
+ display: block;
182
+ height: 0;
183
+ }
184
+ .custom-value {
185
+ color: unset;
186
+ }
187
+ .custom_drop_down_icon {
188
+ position: absolute;
189
+ height: 10px;
190
+ width: 10px;
191
+ right: 10px;
192
+ top: 45px;
193
+ }
194
+ .close_dropdown_icon {
195
+ transform: rotate(180deg);
196
+ }
197
+ & app-error-message {
198
+ & .text {
199
+ margin-top: 40px;
200
+ }
201
+ }
202
+ }
203
+
204
+ .empty_selection_state {
205
+ height: 142px !important;
206
+ justify-content: center !important;
207
+ padding: 0 56px;
208
+ background: #F7FDFC;
209
+ pointer-events: auto !important;
210
+
211
+ span {
212
+ width: 100%;
213
+ margin: unset !important;
214
+ opacity: 1 !important;
215
+ }
216
+ .mat-pseudo-checkbox {
217
+ display: none;
218
+ }
219
+ }
220
+ .empty_selection_state.mdc-list-item--disabled {
221
+ opacity: 1 !important;
222
+ min-height: 100px !important;
223
+ span {
224
+ font-size: unset !important;
225
+ color: unset !important;
226
+ }
227
+ .actions_and_tile > span {
228
+ display: inline-block;
229
+ color: #8A8383 !important;
230
+ width: 100%;
231
+ text-align: center;
232
+ }
233
+ }
234
+
235
+ .option_loading {
236
+ .mat-pseudo-checkbox {
237
+ display: none;
238
+ }
239
+ }
240
+
241
+ .mat-mdc-option {
242
+ min-height: 40px !important;
243
+ padding: 10px 12px !important;
244
+ }
245
+
246
+ .mat-mdc-option {
247
+ font-size: 13px;
248
+ font-style: normal;
249
+ font-weight: 500;
250
+ line-height: 20px;
251
+ letter-spacing: 0.2px;
252
+
253
+ .sub_value {
254
+ font-size: 11px;
255
+ font-weight:400;
256
+ line-height: 16px;
257
+ }
258
+ }
259
+
260
+ .filter_dropdown {
261
+ .search-input {
262
+ input {
263
+ &, &::placeholder {
264
+ font-size: 13px !important;
265
+ font-weight: 500 !important;
266
+ }
267
+ }
268
+ }
269
+ .custom-placeholder {
270
+ color: var(--neutral50) !important;
271
+ font-size: 13px !important;
272
+ font-weight: 500 !important;
273
+ }
274
+ }
275
+ }
276
+
277
+ .hide_input_placeholder {
278
+ input::placeholder {
279
+ color: transparent !important;
280
+ }
281
+ }
package/theme/_menu.scss CHANGED
@@ -1,13 +1,13 @@
1
- @use '@angular/material' as mat;
2
- @use "./color_themes.scss" as color-themes;
3
-
4
- .mt-4 {
5
- margin-top: 4px;
6
- }
7
-
8
- .mat-mdc-menu-panel {
9
- border: 1px solid mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90) !important;
10
- --mat-app-elevation-shadow-level-2: 0px !important;
11
- --mat-menu-item-hover-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 98)} !important;
12
- }
13
-
1
+ @use '@angular/material' as mat;
2
+ @use "./color_themes.scss" as color-themes;
3
+
4
+ .mt-4 {
5
+ margin-top: 4px;
6
+ }
7
+
8
+ .mat-mdc-menu-panel {
9
+ border: 1px solid mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90) !important;
10
+ --mat-app-elevation-shadow-level-2: 0px !important;
11
+ --mat-menu-item-hover-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 98)} !important;
12
+ }
13
+
@@ -1,29 +1,29 @@
1
- @use '@angular/material' as mat;
2
- @use "./_color_themes.scss" as color-themes;
3
-
4
- body {
5
- .readonly-field {
6
- --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
7
- --mdc-outlined-text-field-focus-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
8
- --mdc-outlined-text-field-focus-outline-width: 1px;
9
- --mdc-outlined-text-field-error-focus-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
10
- --mdc-outlined-text-field-error-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
11
- --mdc-outlined-text-field-error-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
12
- --mat-select-disabled-trigger-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
13
- --mat-select-placeholder-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
14
- --mdc-outlined-text-field-disabled-input-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
15
- }
16
-
17
- .readonly-color {
18
- pointer-events: none;
19
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
20
- .mat-mdc-icon-button.tonal mat-icon {
21
- color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
22
- }
23
- --mdc-outlined-text-field-input-text-placeholder-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
24
- }
25
-
26
- .mat-mdc-form-field-icon-prefix {
27
- padding: 0;
28
- }
29
- }
1
+ @use '@angular/material' as mat;
2
+ @use "./_color_themes.scss" as color-themes;
3
+
4
+ body {
5
+ .readonly-field {
6
+ --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
7
+ --mdc-outlined-text-field-focus-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
8
+ --mdc-outlined-text-field-focus-outline-width: 1px;
9
+ --mdc-outlined-text-field-error-focus-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
10
+ --mdc-outlined-text-field-error-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
11
+ --mdc-outlined-text-field-error-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
12
+ --mat-select-disabled-trigger-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
13
+ --mat-select-placeholder-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
14
+ --mdc-outlined-text-field-disabled-input-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
15
+ }
16
+
17
+ .readonly-color {
18
+ pointer-events: none;
19
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
20
+ .mat-mdc-icon-button.tonal mat-icon {
21
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
22
+ }
23
+ --mdc-outlined-text-field-input-text-placeholder-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
24
+ }
25
+
26
+ .mat-mdc-form-field-icon-prefix {
27
+ padding: 0;
28
+ }
29
+ }