@gravitee/ui-particles-angular 11.3.0-angular-17-0246c3e → 11.3.0-angular-17-a67422d
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.
- package/esm2022/lib/gio-confirm-and-validate-dialog/gio-confirm-and-validate-dialog.component.mjs +1 -1
- package/esm2022/lib/gio-form-cron/gio-form-cron.component.mjs +1 -1
- package/esm2022/lib/gio-form-file-picker/gio-form-file-picker-add-button/gio-form-file-picker-add-button.component.mjs +2 -2
- package/esm2022/lib/gio-form-file-picker/gio-form-file-picker.component.mjs +3 -3
- package/esm2022/lib/gio-form-file-picker/gio-form-file-picker.model.mjs +1 -1
- package/esm2022/lib/gio-form-focus-first-invalid/gio-form-focus-first-invalid.directive.mjs +1 -1
- package/esm2022/lib/gio-form-headers/gio-form-headers.component.mjs +1 -1
- package/esm2022/lib/gio-form-json-schema/gio-formly-json-schema.service.mjs +1 -1
- package/esm2022/lib/gio-license/gio-license-dialog/gio-license-dialog.component.mjs +3 -3
- package/esm2022/lib/gio-license/gio-license.directive.mjs +1 -1
- package/esm2022/lib/oem-theme/gio-submenu/gio-submenu.component.mjs +1 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +6 -6
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/src/scss/gio-fonts.scss +29 -0
package/package.json
CHANGED
package/src/scss/gio-fonts.scss
CHANGED
|
@@ -35,4 +35,33 @@
|
|
|
35
35
|
@import '@fontsource/golos-ui/500.css';
|
|
36
36
|
@import '@fontsource/golos-ui/600.css';
|
|
37
37
|
}
|
|
38
|
+
|
|
39
|
+
// Material Icons
|
|
40
|
+
// https://fontsource.org/docs/getting-started/material-icons
|
|
41
|
+
.material-icons {
|
|
42
|
+
display: inline-block;
|
|
43
|
+
direction: ltr;
|
|
44
|
+
// stylelint-disable-next-line font-family-no-missing-generic-family-keyword
|
|
45
|
+
font-family: 'Material Icons';
|
|
46
|
+
|
|
47
|
+
/* Support for IE. */
|
|
48
|
+
font-feature-settings: 'liga';
|
|
49
|
+
font-size: 24px; /* Preferred icon size */
|
|
50
|
+
|
|
51
|
+
/* Support for all WebKit browsers. */
|
|
52
|
+
-webkit-font-smoothing: antialiased;
|
|
53
|
+
|
|
54
|
+
/* Support for Firefox. */
|
|
55
|
+
-moz-osx-font-smoothing: grayscale;
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
letter-spacing: normal;
|
|
59
|
+
line-height: 1;
|
|
60
|
+
|
|
61
|
+
/* Support for Safari and Chrome. */
|
|
62
|
+
text-rendering: optimizelegibility;
|
|
63
|
+
text-transform: none;
|
|
64
|
+
white-space: nowrap;
|
|
65
|
+
word-wrap: normal;
|
|
66
|
+
}
|
|
38
67
|
}
|