@porscheinformatik/material-addons 21.0.4 → 22.0.0

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.
@@ -0,0 +1,313 @@
1
+ .spacer {
2
+ flex: 1 1 auto;
3
+ }
4
+
5
+ .clickable-table-row:hover,
6
+ .mat-row-link:hover {
7
+ cursor: pointer;
8
+ }
9
+
10
+ .button-panel {
11
+ padding-top: 16px;
12
+ padding-bottom: 8px;
13
+ padding-right: 16px;
14
+ }
15
+
16
+ mad-primary-button,
17
+ mad-outline-button,
18
+ mad-link-button,
19
+ mad-danger-button {
20
+ margin-right: 8px;
21
+ }
22
+
23
+ .simple-edit-section {
24
+ display: flex;
25
+ flex-direction: column;
26
+ }
27
+
28
+ .simple-edit-section > * {
29
+ width: 100%;
30
+ max-width: 640px;
31
+ }
32
+
33
+ .tiny-table-section {
34
+ display: flex;
35
+ flex-direction: column;
36
+ }
37
+
38
+ .table-condensed > .mat-mdc-row {
39
+ min-height: 36px;
40
+ }
41
+
42
+ .small-input {
43
+ max-width: 90px !important;
44
+ }
45
+
46
+ .tiny-input {
47
+ max-width: 60px !important;
48
+ }
49
+
50
+ .main-content {
51
+ padding: 73px 16px 16px;
52
+ }
53
+
54
+ .mat-mdc-tab-header {
55
+ margin: -16px -16px 16px;
56
+ }
57
+
58
+ .mat-mdc-row {
59
+ position: relative;
60
+ }
61
+
62
+ .mat-row-link {
63
+ position: absolute;
64
+ width: 100%;
65
+ height: 100%;
66
+ left: 0;
67
+ top: 0;
68
+ }
69
+
70
+ .mat-mdc-button,
71
+ .mat-mdc-unelevated-button,
72
+ .mat-mdc-raised-button,
73
+ .mat-mdc-outlined-button,
74
+ .mat-mdc-icon-button {
75
+ text-transform: uppercase !important;
76
+ }
77
+
78
+ .toolbar-title {
79
+ text-overflow: ellipsis;
80
+ white-space: nowrap;
81
+ overflow: hidden;
82
+ }
83
+
84
+ .mat-mdc-select-disabled {
85
+ color: rgba(0, 0, 0, 0.38);
86
+ }
87
+
88
+ .mat-mdc-input-element:disabled {
89
+ cursor: auto;
90
+ color: var(--mat-sys-on-surface);
91
+ }
92
+
93
+ .mat-mdc-select-disabled .mat-select-value {
94
+ color: var(--mat-sys-on-surface);
95
+ }
96
+
97
+ .mat-mdc-form-field .mat-mdc-select.mat-select-disabled .mat-select-arrow {
98
+ color: var(--mat-sys-surface);
99
+ }
100
+
101
+ .mat-mdc-checkbox-disabled .mat-checkbox-label {
102
+ color: var(--mat-sys-on-surface);
103
+ }
104
+
105
+ .sticky-paginator {
106
+ background-color: var(--mat-sys-surface);
107
+ position: fixed;
108
+ padding-right: 16px;
109
+ bottom: 0;
110
+ right: 0;
111
+ left: 0;
112
+ z-index: 5;
113
+ text-align: right;
114
+ }
115
+
116
+ .with-sticky-paginator {
117
+ padding-bottom: 64px;
118
+ }
119
+
120
+ .criteria-panel {
121
+ display: flex;
122
+ flex-direction: row;
123
+ flex-wrap: wrap;
124
+ justify-content: flex-start;
125
+ }
126
+
127
+ .criteria-panel > * {
128
+ padding-right: 16px;
129
+ }
130
+
131
+ .mat-chip.mat-standard-chip {
132
+ background-color: var(--mat-sys-surface);
133
+ color: var(--mat-sys-on-surface);
134
+ border: 1px solid var(--mat-sys-outline);
135
+ }
136
+
137
+ .mat-chip.mat-standard-chip.mat-warn {
138
+ background-color: var(--mat-sys-surface);
139
+ }
140
+
141
+ .mat-mdc-tab-group {
142
+ max-width: 100%;
143
+ }
144
+
145
+ .large-icon {
146
+ font-size: xx-large;
147
+ }
148
+
149
+ .transparent .mat-mdc-dialog-container {
150
+ box-shadow: none;
151
+ background: rgba(0, 0, 0, 0);
152
+ }
153
+
154
+ .fixedtabs > .mat-mdc-tab-header {
155
+ z-index: 10;
156
+ width: 100vw;
157
+ position: fixed;
158
+ background-color: var(--mat-sys-surface);
159
+ }
160
+
161
+ .mat-mdc-dialog-actions {
162
+ justify-content: flex-end;
163
+ }
164
+
165
+ .mat-md-card-header-text {
166
+ margin: 0 !important;
167
+ }
168
+
169
+ mat-icon.mat-icon.narrow-icon {
170
+ margin-right: 0;
171
+ margin-left: 0;
172
+ }
173
+
174
+ button.mat-mdc-menu-item {
175
+ min-height: 38px;
176
+ }
177
+
178
+ .mat-toolbar {
179
+ background-color: var(--panel-select-background);
180
+
181
+ .mat-mdc-button {
182
+ min-width: 0;
183
+ padding: 0;
184
+ margin: 0 5px;
185
+ }
186
+ }
187
+
188
+ .drop-down {
189
+ mat-icon.mat-icon.notranslate {
190
+ padding: 0;
191
+ margin: 0;
192
+ }
193
+
194
+ .mat-mdc-outlined-button:not(:disabled) {
195
+ color: var(--mat-button-outlined-label-text-color, inherit);
196
+ border-color: var(--mat-button-outlined-, inherit);
197
+ }
198
+
199
+ &::after {
200
+ content: '\02C7';
201
+ font-size: 2em !important;
202
+ padding-top: 15px;
203
+ padding-left: 3px;
204
+ }
205
+ }
206
+
207
+ .top-nav-bar {
208
+ top: 0;
209
+ left: 0;
210
+ right: 0;
211
+ z-index: 2;
212
+ }
213
+
214
+ .top-main-nav {
215
+ display: flex;
216
+ flex-wrap: wrap;
217
+ align-items: center;
218
+ background-color: var(--mat-sys-surface);
219
+
220
+ > .mat-mdc-button {
221
+ &:last-child {
222
+ margin-left: auto;
223
+ }
224
+ }
225
+ }
226
+
227
+ .flex-spacer {
228
+ flex-grow: 1;
229
+ }
230
+
231
+ .logo {
232
+ display: flex;
233
+ height: 26px;
234
+ margin-right: 20px;
235
+ }
236
+
237
+ .logo a {
238
+ display: flex;
239
+ align-items: center;
240
+ gap: 5px;
241
+ color: var(--main-primary);
242
+ }
243
+
244
+ @mixin ellipsis-text-overflow {
245
+ text-overflow: ellipsis;
246
+ overflow: hidden;
247
+ white-space: nowrap;
248
+ }
249
+
250
+ .ellipsis-text-overflow {
251
+ @include ellipsis-text-overflow;
252
+ }
253
+
254
+ @media print {
255
+ .no-print,
256
+ .no-print * {
257
+ display: none !important;
258
+ width: 0 !important;
259
+ height: 0 !important;
260
+ }
261
+
262
+ mat-paginator,
263
+ mat-sidenav-content,
264
+ .mat-mdc-raised-button,
265
+ .mat-mdc-outlined-button,
266
+ .button-panel,
267
+ mad-primary-button,
268
+ mad-outline-button,
269
+ mad-danger-button,
270
+ mad-link-button,
271
+ mad-icon-button,
272
+ .criteria-panel,
273
+ async-autocomplete mat-icon,
274
+ .mat-mdc-tab-label:not(.mat-tab-label-active) {
275
+ display: none !important;
276
+ height: 0 !important;
277
+ }
278
+ }
279
+
280
+ .mad-read-only {
281
+ mat-label {
282
+ color: var(--mat-sys-on-surface);
283
+ }
284
+ .content {
285
+ color: var(--mat-sys-on-surface) !important;
286
+ }
287
+ .mdc-notched-outline__leading,
288
+ .mdc-notched-outline__notch,
289
+ .mdc-notched-outline__trailing {
290
+ border: none !important;
291
+ }
292
+ }
293
+
294
+ mat-form-field .mat-mdc-form-field-subscript-wrapper {
295
+ margin-bottom: 1.25em;
296
+ }
297
+
298
+ .mat-form-field-appearance-outline {
299
+ margin-top: 8px;
300
+ }
301
+
302
+ .pointer {
303
+ cursor: pointer;
304
+ }
305
+
306
+ .quick-list-row {
307
+ display: flex;
308
+ flex-direction: row;
309
+
310
+ mad-icon-button {
311
+ margin-top: 8px;
312
+ }
313
+ }