@elliemae/ds-basic 3.13.1-rc.0 → 3.14.0-next.2
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/dist/css/dimsum.css +91 -1
- package/dist/css/dimsum.min.css +1 -1
- package/dist/css/dimsum.min.css.map +1 -1
- package/dist/styles/base/fonts/ProximaLight.otf +0 -0
- package/dist/styles/base/fonts/ProximaLightItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaMedium.otf +0 -0
- package/dist/styles/base/fonts/ProximaMediumItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaBlack.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaBlackItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaBold.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaBoldItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaExtrabold.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaExtraboldItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegular.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegularItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaSemibold.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaSemiboldItalic.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaThin.otf +0 -0
- package/dist/styles/base/fonts/ProximaNovaThinItalic.otf +0 -0
- package/dist/styles/base/fonts/font-base.scss +93 -2
- package/dist/styles/components/packages/ds-basic/index.scss +1 -1
- package/dist/styles/components/packages/ds-basic/styles/base/fonts/font-base.scss +93 -2
- package/dist/styles/components/packages/{ds-button → ds-button-v1}/DSButton.scss +0 -0
- package/package.json +1 -1
- package/dist/css/fonts/ProximaNovaBold.woff +0 -0
- package/dist/css/fonts/ProximaNovaBold.woff2 +0 -0
- package/dist/css/fonts/ProximaNovaRegular.woff +0 -0
- package/dist/css/fonts/ProximaNovaRegular.woff2 +0 -0
- package/dist/css/fonts/ProximaNovaSemibold.woff2 +0 -0
- package/dist/css/fonts/ProximaNovaThin.woff +0 -0
- package/dist/css/fonts/ProximaNovaThin.woff2 +0 -0
- package/dist/styles/base/fonts/ProximaNovaBold.woff +0 -0
- package/dist/styles/base/fonts/ProximaNovaBold.woff2 +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegular.eot +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegular.svg +0 -1294
- package/dist/styles/base/fonts/ProximaNovaRegular.ttf +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegular.woff +0 -0
- package/dist/styles/base/fonts/ProximaNovaRegular.woff2 +0 -0
- package/dist/styles/base/fonts/ProximaNovaSemibold.woff2 +0 -0
- package/dist/styles/base/fonts/ProximaNovaThin.woff +0 -0
- package/dist/styles/base/fonts/ProximaNovaThin.woff2 +0 -0
package/dist/css/dimsum.css
CHANGED
|
@@ -1,10 +1,100 @@
|
|
|
1
1
|
@import url(~react-dates/lib/css/_datepicker.css);
|
|
2
2
|
@font-face {
|
|
3
3
|
font-family: 'proxima-nova';
|
|
4
|
-
src: url("~@elliemae/ds-basic/styles/base/fonts/
|
|
4
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThin.otf") format("opentype");
|
|
5
|
+
font-weight: 100;
|
|
6
|
+
font-style: normal; }
|
|
7
|
+
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: 'proxima-nova';
|
|
10
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaLight.otf") format("opentype");
|
|
11
|
+
font-weight: 300;
|
|
12
|
+
font-style: normal; }
|
|
13
|
+
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'proxima-nova';
|
|
16
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.otf") format("opentype");
|
|
5
17
|
font-weight: normal;
|
|
6
18
|
font-style: normal; }
|
|
7
19
|
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'proxima-nova';
|
|
22
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaMedium.otf") format("opentype");
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
font-style: normal; }
|
|
25
|
+
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'proxima-nova';
|
|
28
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemibold.otf") format("opentype");
|
|
29
|
+
font-weight: 600;
|
|
30
|
+
font-style: normal; }
|
|
31
|
+
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: 'proxima-nova';
|
|
34
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBold.otf") format("opentype");
|
|
35
|
+
font-weight: bold;
|
|
36
|
+
font-style: normal; }
|
|
37
|
+
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'proxima-nova';
|
|
40
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtrabold.otf") format("opentype");
|
|
41
|
+
font-weight: 800;
|
|
42
|
+
font-style: normal; }
|
|
43
|
+
|
|
44
|
+
@font-face {
|
|
45
|
+
font-family: 'proxima-nova';
|
|
46
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlack.otf") format("opentype");
|
|
47
|
+
font-weight: 900;
|
|
48
|
+
font-style: normal; }
|
|
49
|
+
|
|
50
|
+
@font-face {
|
|
51
|
+
font-family: 'proxima-nova';
|
|
52
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThinItalic.otf") format("opentype");
|
|
53
|
+
font-weight: 100;
|
|
54
|
+
font-style: italic; }
|
|
55
|
+
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'proxima-nova';
|
|
58
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaLightItalic.otf") format("opentype");
|
|
59
|
+
font-weight: 300;
|
|
60
|
+
font-style: italic; }
|
|
61
|
+
|
|
62
|
+
@font-face {
|
|
63
|
+
font-family: 'proxima-nova';
|
|
64
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegularItalic.otf") format("opentype");
|
|
65
|
+
font-weight: normal;
|
|
66
|
+
font-style: italic; }
|
|
67
|
+
|
|
68
|
+
@font-face {
|
|
69
|
+
font-family: 'proxima-nova';
|
|
70
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaMediumItalic.otf") format("opentype");
|
|
71
|
+
font-weight: 500;
|
|
72
|
+
font-style: italic; }
|
|
73
|
+
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'proxima-nova';
|
|
76
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemiboldItalic.otf") format("opentype");
|
|
77
|
+
font-weight: 600;
|
|
78
|
+
font-style: italic; }
|
|
79
|
+
|
|
80
|
+
@font-face {
|
|
81
|
+
font-family: 'proxima-nova';
|
|
82
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBoldItalic.otf") format("opentype");
|
|
83
|
+
font-weight: bold;
|
|
84
|
+
font-style: italic; }
|
|
85
|
+
|
|
86
|
+
@font-face {
|
|
87
|
+
font-family: 'proxima-nova';
|
|
88
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtraboldItalic.otf") format("opentype");
|
|
89
|
+
font-weight: 800;
|
|
90
|
+
font-style: italic; }
|
|
91
|
+
|
|
92
|
+
@font-face {
|
|
93
|
+
font-family: 'proxima-nova';
|
|
94
|
+
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlackItalic.otf") format("opentype");
|
|
95
|
+
font-weight: 900;
|
|
96
|
+
font-style: italic; }
|
|
97
|
+
|
|
8
98
|
/**
|
|
9
99
|
Ellie Mae Default Theme
|
|
10
100
|
Below, you will find the default theme for DimSum. You can modify the theme's
|