@basic-ui-components-stc/basic-ui-components 1.0.3 → 1.0.5
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,129 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
p,
|
5
|
+
div,
|
6
|
+
span,
|
7
|
+
a,
|
8
|
+
h1,
|
9
|
+
h2,
|
10
|
+
h3,
|
11
|
+
h4,
|
12
|
+
h5,
|
13
|
+
h6,
|
14
|
+
article,
|
15
|
+
section,
|
16
|
+
main,
|
17
|
+
table,
|
18
|
+
td,
|
19
|
+
th,
|
20
|
+
button,
|
21
|
+
input,
|
22
|
+
select {
|
23
|
+
font-family: var(--font-family);
|
24
|
+
}
|
25
|
+
|
26
|
+
// TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.
|
27
|
+
.mat-mdc-menu-item,
|
28
|
+
.mat-select-search-input,
|
29
|
+
.mat-tooltip,
|
30
|
+
.mat-tab-label,
|
31
|
+
.mat-tab-link,
|
32
|
+
.optional-input,
|
33
|
+
.mdc-tooltip__surface{
|
34
|
+
font-family: var(--font-family) !important;
|
35
|
+
}
|
36
|
+
|
37
|
+
.material-icons {
|
38
|
+
font-family: 'Material Icons', var(--font-icon);
|
39
|
+
font-weight: var(--font-regular);
|
40
|
+
font-style: normal;
|
41
|
+
font-size: 24px; /* Preferred icon size */
|
42
|
+
display: inline-block;
|
43
|
+
line-height: 1;
|
44
|
+
text-transform: none;
|
45
|
+
letter-spacing: normal;
|
46
|
+
word-wrap: normal;
|
47
|
+
white-space: nowrap;
|
48
|
+
direction: ltr;
|
49
|
+
|
50
|
+
/* Support for all WebKit browsers. */
|
51
|
+
-webkit-font-smoothing: antialiased;
|
52
|
+
/* Support for Safari and Chrome. */
|
53
|
+
text-rendering: optimizeLegibility;
|
54
|
+
|
55
|
+
/* Support for Firefox. */
|
56
|
+
-moz-osx-font-smoothing: grayscale;
|
57
|
+
|
58
|
+
/* Support for IE. */
|
59
|
+
font-feature-settings: 'liga';
|
60
|
+
}
|
61
|
+
|
62
|
+
.font-italic{
|
63
|
+
font-style: italic;
|
64
|
+
}
|
65
|
+
|
66
|
+
.fw-thin {
|
67
|
+
font-weight: var(--font-thin);
|
68
|
+
}
|
69
|
+
|
70
|
+
.fw-light {
|
71
|
+
font-weight: var(--font-light);
|
72
|
+
}
|
73
|
+
|
74
|
+
.fw-normal {
|
75
|
+
font-weight: var(--font-regular);
|
76
|
+
}
|
77
|
+
|
78
|
+
.fw-medium {
|
79
|
+
font-weight: var(--font-medium);
|
80
|
+
}
|
81
|
+
|
82
|
+
.fw-bold {
|
83
|
+
font-weight: var(--font-bold);
|
84
|
+
}
|
85
|
+
|
86
|
+
.fw-bolder {
|
87
|
+
font-weight: var(--font-extra-bold);
|
88
|
+
}
|
89
|
+
|
90
|
+
.fw-light-imp {
|
91
|
+
font-weight: var(--font-light) !important;
|
92
|
+
}
|
93
|
+
|
94
|
+
.fw-normal-imp {
|
95
|
+
font-weight: var(--font-regular) !important;
|
96
|
+
}
|
97
|
+
|
98
|
+
.fw-medium-imp {
|
99
|
+
font-weight: var(--font-medium) !important;
|
100
|
+
}
|
101
|
+
|
102
|
+
.fw-bold-imp {
|
103
|
+
font-weight: var(--font-bold) !important;
|
104
|
+
}
|
105
|
+
|
106
|
+
.fw-bolder-imp {
|
107
|
+
font-weight: var(--font-extra-bold) !important;
|
108
|
+
}
|
109
|
+
|
110
|
+
@media(max-width: 768px) {
|
111
|
+
.fw-md-thin {
|
112
|
+
font-weight: var(--font-thin) !important;
|
113
|
+
}
|
114
|
+
.fw-md-light {
|
115
|
+
font-weight: var(--font-light) !important;
|
116
|
+
}
|
117
|
+
.fw-md-normal {
|
118
|
+
font-weight: var(--font-regular) !important;
|
119
|
+
}
|
120
|
+
.fw-md-medium {
|
121
|
+
font-weight: var(--font-medium) !important;
|
122
|
+
}
|
123
|
+
.fw-md-bold {
|
124
|
+
font-weight: var(--font-bold) !important;
|
125
|
+
}
|
126
|
+
.fw-md-bolder {
|
127
|
+
font-weight: var(--font-extra-bold) !important;
|
128
|
+
}
|
129
|
+
}
|
@@ -147,132 +147,3 @@
|
|
147
147
|
|
148
148
|
|
149
149
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
p,
|
154
|
-
div,
|
155
|
-
span,
|
156
|
-
a,
|
157
|
-
h1,
|
158
|
-
h2,
|
159
|
-
h3,
|
160
|
-
h4,
|
161
|
-
h5,
|
162
|
-
h6,
|
163
|
-
article,
|
164
|
-
section,
|
165
|
-
main,
|
166
|
-
table,
|
167
|
-
td,
|
168
|
-
th,
|
169
|
-
button,
|
170
|
-
input,
|
171
|
-
select {
|
172
|
-
font-family: var(--font-family);
|
173
|
-
}
|
174
|
-
|
175
|
-
// TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.
|
176
|
-
.mat-mdc-menu-item,
|
177
|
-
.mat-select-search-input,
|
178
|
-
.mat-tooltip,
|
179
|
-
.mat-tab-label,
|
180
|
-
.mat-tab-link,
|
181
|
-
.optional-input,
|
182
|
-
.mdc-tooltip__surface{
|
183
|
-
font-family: var(--font-family) !important;
|
184
|
-
}
|
185
|
-
|
186
|
-
.material-icons {
|
187
|
-
font-family: 'Material Icons', var(--font-icon);
|
188
|
-
font-weight: var(--font-regular);
|
189
|
-
font-style: normal;
|
190
|
-
font-size: 24px; /* Preferred icon size */
|
191
|
-
display: inline-block;
|
192
|
-
line-height: 1;
|
193
|
-
text-transform: none;
|
194
|
-
letter-spacing: normal;
|
195
|
-
word-wrap: normal;
|
196
|
-
white-space: nowrap;
|
197
|
-
direction: ltr;
|
198
|
-
|
199
|
-
/* Support for all WebKit browsers. */
|
200
|
-
-webkit-font-smoothing: antialiased;
|
201
|
-
/* Support for Safari and Chrome. */
|
202
|
-
text-rendering: optimizeLegibility;
|
203
|
-
|
204
|
-
/* Support for Firefox. */
|
205
|
-
-moz-osx-font-smoothing: grayscale;
|
206
|
-
|
207
|
-
/* Support for IE. */
|
208
|
-
font-feature-settings: 'liga';
|
209
|
-
}
|
210
|
-
|
211
|
-
.font-italic{
|
212
|
-
font-style: italic;
|
213
|
-
}
|
214
|
-
|
215
|
-
.fw-thin {
|
216
|
-
font-weight: var(--font-thin);
|
217
|
-
}
|
218
|
-
|
219
|
-
.fw-light {
|
220
|
-
font-weight: var(--font-light);
|
221
|
-
}
|
222
|
-
|
223
|
-
.fw-normal {
|
224
|
-
font-weight: var(--font-regular);
|
225
|
-
}
|
226
|
-
|
227
|
-
.fw-medium {
|
228
|
-
font-weight: var(--font-medium);
|
229
|
-
}
|
230
|
-
|
231
|
-
.fw-bold {
|
232
|
-
font-weight: var(--font-bold);
|
233
|
-
}
|
234
|
-
|
235
|
-
.fw-bolder {
|
236
|
-
font-weight: var(--font-extra-bold);
|
237
|
-
}
|
238
|
-
|
239
|
-
.fw-light-imp {
|
240
|
-
font-weight: var(--font-light) !important;
|
241
|
-
}
|
242
|
-
|
243
|
-
.fw-normal-imp {
|
244
|
-
font-weight: var(--font-regular) !important;
|
245
|
-
}
|
246
|
-
|
247
|
-
.fw-medium-imp {
|
248
|
-
font-weight: var(--font-medium) !important;
|
249
|
-
}
|
250
|
-
|
251
|
-
.fw-bold-imp {
|
252
|
-
font-weight: var(--font-bold) !important;
|
253
|
-
}
|
254
|
-
|
255
|
-
.fw-bolder-imp {
|
256
|
-
font-weight: var(--font-extra-bold) !important;
|
257
|
-
}
|
258
|
-
|
259
|
-
@media(max-width: 768px) {
|
260
|
-
.fw-md-thin {
|
261
|
-
font-weight: var(--font-thin) !important;
|
262
|
-
}
|
263
|
-
.fw-md-light {
|
264
|
-
font-weight: var(--font-light) !important;
|
265
|
-
}
|
266
|
-
.fw-md-normal {
|
267
|
-
font-weight: var(--font-regular) !important;
|
268
|
-
}
|
269
|
-
.fw-md-medium {
|
270
|
-
font-weight: var(--font-medium) !important;
|
271
|
-
}
|
272
|
-
.fw-md-bold {
|
273
|
-
font-weight: var(--font-bold) !important;
|
274
|
-
}
|
275
|
-
.fw-md-bolder {
|
276
|
-
font-weight: var(--font-extra-bold) !important;
|
277
|
-
}
|
278
|
-
}
|