@dialpad/dialtone 6.32.0 → 6.32.1
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.
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
#d-internal-config {
|
|
15
15
|
// Do we want to generate font-face CSS?
|
|
16
16
|
@generate-font-face: true;
|
|
17
|
+
|
|
18
|
+
// Path of the fonts that Dialtone provides
|
|
19
|
+
@define-font-path: '../../fonts/';
|
|
17
20
|
}
|
|
18
21
|
|
|
19
22
|
// ============================================================================
|
|
@@ -378,15 +381,12 @@
|
|
|
378
381
|
#font-face(@type, @name, @style: normal) {
|
|
379
382
|
#d-internal-config();
|
|
380
383
|
|
|
381
|
-
// Path of the fonts that Dialtone provides
|
|
382
|
-
@define-font-path: '../../fonts/';
|
|
383
|
-
|
|
384
384
|
if((@generate-font-face = true), each(@type, {
|
|
385
385
|
@font-face {
|
|
386
386
|
font-style: @style;
|
|
387
387
|
font-weight: @key;
|
|
388
388
|
font-family: @name;
|
|
389
|
-
src: url("
|
|
389
|
+
src: url("@{define-font-path}@{value}.woff2") format("woff2");
|
|
390
390
|
};
|
|
391
391
|
}));
|
|
392
392
|
}
|
|
@@ -18807,73 +18807,73 @@ body.theme-dark .d\:d-bgg-to-0 {
|
|
|
18807
18807
|
font-style: normal;
|
|
18808
18808
|
font-weight: 400;
|
|
18809
18809
|
font-family: 'Inter';
|
|
18810
|
-
src: url("
|
|
18810
|
+
src: url("../fonts/Inter-Regular.woff2") format("woff2");
|
|
18811
18811
|
}
|
|
18812
18812
|
@font-face {
|
|
18813
18813
|
font-style: normal;
|
|
18814
18814
|
font-weight: 700;
|
|
18815
18815
|
font-family: 'Inter';
|
|
18816
|
-
src: url("
|
|
18816
|
+
src: url("../fonts/Inter-Bold.woff2") format("woff2");
|
|
18817
18817
|
}
|
|
18818
18818
|
@font-face {
|
|
18819
18819
|
font-style: italic;
|
|
18820
18820
|
font-weight: 400;
|
|
18821
18821
|
font-family: 'Inter';
|
|
18822
|
-
src: url("
|
|
18822
|
+
src: url("../fonts/Inter-Italic.woff2") format("woff2");
|
|
18823
18823
|
}
|
|
18824
18824
|
@font-face {
|
|
18825
18825
|
font-style: italic;
|
|
18826
18826
|
font-weight: 700;
|
|
18827
18827
|
font-family: 'Inter';
|
|
18828
|
-
src: url("
|
|
18828
|
+
src: url("../fonts/Inter-BoldItalic.woff2") format("woff2");
|
|
18829
18829
|
}
|
|
18830
18830
|
@font-face {
|
|
18831
18831
|
font-style: normal;
|
|
18832
18832
|
font-weight: 400;
|
|
18833
18833
|
font-family: 'RobotoMono';
|
|
18834
|
-
src: url("
|
|
18834
|
+
src: url("../fonts/RobotoMono-Regular.woff2") format("woff2");
|
|
18835
18835
|
}
|
|
18836
18836
|
@font-face {
|
|
18837
18837
|
font-style: normal;
|
|
18838
18838
|
font-weight: 700;
|
|
18839
18839
|
font-family: 'RobotoMono';
|
|
18840
|
-
src: url("
|
|
18840
|
+
src: url("../fonts/RobotoMono-Bold.woff2") format("woff2");
|
|
18841
18841
|
}
|
|
18842
18842
|
@font-face {
|
|
18843
18843
|
font-style: normal;
|
|
18844
18844
|
font-weight: 400;
|
|
18845
18845
|
font-family: 'Archivo';
|
|
18846
|
-
src: url("
|
|
18846
|
+
src: url("../fonts/Archivo-Regular.woff2") format("woff2");
|
|
18847
18847
|
}
|
|
18848
18848
|
@font-face {
|
|
18849
18849
|
font-style: normal;
|
|
18850
18850
|
font-weight: 600;
|
|
18851
18851
|
font-family: 'Archivo';
|
|
18852
|
-
src: url("
|
|
18852
|
+
src: url("../fonts/Archivo-SemiBold.woff2") format("woff2");
|
|
18853
18853
|
}
|
|
18854
18854
|
@font-face {
|
|
18855
18855
|
font-style: normal;
|
|
18856
18856
|
font-weight: 700;
|
|
18857
18857
|
font-family: 'Archivo';
|
|
18858
|
-
src: url("
|
|
18858
|
+
src: url("../fonts/Archivo-Bold.woff2") format("woff2");
|
|
18859
18859
|
}
|
|
18860
18860
|
@font-face {
|
|
18861
18861
|
font-style: normal;
|
|
18862
18862
|
font-weight: 500;
|
|
18863
18863
|
font-family: 'ArchivoSemiExpanded';
|
|
18864
|
-
src: url("
|
|
18864
|
+
src: url("../fonts/ArchivoSemiExpanded-Medium.woff2") format("woff2");
|
|
18865
18865
|
}
|
|
18866
18866
|
@font-face {
|
|
18867
18867
|
font-style: normal;
|
|
18868
18868
|
font-weight: 600;
|
|
18869
18869
|
font-family: 'ArchivoSemiExpanded';
|
|
18870
|
-
src: url("
|
|
18870
|
+
src: url("../fonts/ArchivoSemiExpanded-SemiBold.woff2") format("woff2");
|
|
18871
18871
|
}
|
|
18872
18872
|
@font-face {
|
|
18873
18873
|
font-style: normal;
|
|
18874
18874
|
font-weight: 600;
|
|
18875
18875
|
font-family: 'ArchivoExpanded';
|
|
18876
|
-
src: url("
|
|
18876
|
+
src: url("../fonts/ArchivoExpanded-SemiBold.woff2") format("woff2");
|
|
18877
18877
|
}
|
|
18878
18878
|
.d-ff-custom {
|
|
18879
18879
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
|