dibk-design 3.12.0 → 4.0.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.
- package/dist/assets/fonts/PPMori-Bold.otf +0 -0
- package/dist/assets/fonts/PPMori-Book.otf +0 -0
- package/dist/assets/fonts/PPMori-ExtraBold.otf +0 -0
- package/dist/assets/fonts/PPMori-Light.otf +0 -0
- package/dist/assets/fonts/PPMori-Medium.otf +0 -0
- package/dist/assets/fonts/PPMori-Regular.otf +0 -0
- package/dist/assets/fonts/PPMori-RegularItalic.otf +0 -0
- package/dist/assets/fonts/PPMori-SemiBold.otf +0 -0
- package/dist/assets/svg/dibk-logo-base64.js +1 -1
- package/dist/assets/svg/dibk-logo-mobile.svg +2 -2
- package/dist/assets/svg/dibk-logo.svg +45 -984
- package/dist/assets/svg/info-sign.svg +1 -0
- package/dist/components/Accordion.module.scss +1 -1
- package/dist/components/Button.module.scss +92 -82
- package/dist/components/CheckBoxIcon.module.scss +5 -5
- package/dist/components/CheckBoxInput.js +3 -1
- package/dist/components/CheckBoxInput.module.scss +11 -1
- package/dist/components/CheckBoxListItem.js +1 -1
- package/dist/components/CheckBoxListItem.module.scss +16 -8
- package/dist/components/Dialog.module.scss +9 -6
- package/dist/components/DragAndDropFileInput.module.scss +1 -1
- package/dist/components/ErrorBox.js +13 -5
- package/dist/components/ErrorBox.module.scss +30 -4
- package/dist/components/Header.module.scss +8 -3
- package/dist/components/InputField.js +2 -0
- package/dist/components/InputField.module.scss +11 -20
- package/dist/components/NavigationBar.js +5 -3
- package/dist/components/NavigationBar.module.scss +398 -122
- package/dist/components/PDF.scss +5 -5
- package/dist/components/RadioButtonIcon.module.scss +7 -10
- package/dist/components/RadioButtonInput.js +3 -1
- package/dist/components/RadioButtonInput.module.scss +11 -1
- package/dist/components/RadioButtonListItem.js +1 -1
- package/dist/components/RadioButtonListItem.module.scss +16 -8
- package/dist/components/Select.module.scss +14 -16
- package/dist/components/Textarea.module.scss +2 -2
- package/dist/components/Theme.module.scss +1 -1
- package/dist/components/WizardNavigation/Step.module.scss +1 -1
- package/dist/style/abstracts/variables/_all.scss +1 -0
- package/dist/style/abstracts/variables/_colors.scss +18 -13
- package/dist/style/abstracts/variables/_transitions.scss +1 -0
- package/dist/style/abstracts/variables/_typography.scss +2 -2
- package/dist/style/base/_fonts.scss +135 -69
- package/dist/style/base/_typography.scss +1 -0
- package/dist/style/pdf.css +4 -4
- package/dist/style/pdf.css.map +1 -1
- package/package.json +1 -1
package/dist/components/PDF.scss
CHANGED
|
@@ -36,7 +36,7 @@ $margin-bottom-list: 12px;
|
|
|
36
36
|
$margin-vertical-blockquote: 5px;
|
|
37
37
|
$margin-horizontal-blockquote: 10px;
|
|
38
38
|
$padding-horizontal-blockquote: 10px;
|
|
39
|
-
$border-left-width-blockquote:
|
|
39
|
+
$border-left-width-blockquote: 4px;
|
|
40
40
|
$min-height-blockquote: 36px;
|
|
41
41
|
|
|
42
42
|
$margin-vertical-description-list: 3px;
|
|
@@ -324,8 +324,8 @@ body {
|
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
blockquote {
|
|
327
|
-
background: $color-
|
|
328
|
-
border-left: $border-left-width-blockquote solid $color-
|
|
327
|
+
background: $color-secondary-x-light;
|
|
328
|
+
border-left: $border-left-width-blockquote solid $color-secondary;
|
|
329
329
|
margin: $margin-vertical-blockquote $margin-horizontal-blockquote;
|
|
330
330
|
padding: 0.5em $padding-horizontal-blockquote;
|
|
331
331
|
min-height: $min-height-blockquote;
|
|
@@ -510,8 +510,8 @@ body {
|
|
|
510
510
|
}
|
|
511
511
|
|
|
512
512
|
blockquote {
|
|
513
|
-
background: $color-
|
|
514
|
-
border-left: calc($border-left-width-blockquote * $scaling-for-signed-documents) solid $color-
|
|
513
|
+
background: $color-secondary-x-light;
|
|
514
|
+
border-left: calc($border-left-width-blockquote * $scaling-for-signed-documents) solid $color-secondary;
|
|
515
515
|
margin: calc($margin-vertical-blockquote * $scaling-for-signed-documents)
|
|
516
516
|
calc($margin-horizontal-blockquote * $scaling-for-signed-documents);
|
|
517
517
|
padding: 0.5em calc($padding-horizontal-blockquote * $scaling-for-signed-documents);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.radioButtonIcon {
|
|
4
4
|
@include border-radius(50%);
|
|
5
|
-
@include transition(all
|
|
5
|
+
@include transition(all $default-transition);
|
|
6
6
|
@include box-sizing(content-box);
|
|
7
7
|
display: inline-block;
|
|
8
8
|
vertical-align: middle;
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
cursor: pointer;
|
|
17
17
|
|
|
18
18
|
&:not(.hasErrors) {
|
|
19
|
-
@include box-shadow(0 0 0 1px
|
|
19
|
+
@include box-shadow(0 0 0 1px $color-primary);
|
|
20
20
|
}
|
|
21
21
|
&.hasErrors {
|
|
22
|
-
@include box-shadow(0 0
|
|
22
|
+
@include box-shadow(0 0 0 1px $color-error);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&.checked {
|
|
@@ -28,17 +28,14 @@
|
|
|
28
28
|
background: $color-error;
|
|
29
29
|
}
|
|
30
30
|
&:not(.hasErrors) {
|
|
31
|
-
@include box-shadow(0 0 0 1px $color-
|
|
31
|
+
@include box-shadow(0 0 0 1px $color-primary);
|
|
32
32
|
}
|
|
33
33
|
&.hasErrors {
|
|
34
|
-
@include box-shadow(0 0
|
|
34
|
+
@include box-shadow(0 0 0 1px $color-error);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
&.disabled {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
&:not(.checked) {
|
|
41
|
-
background: #bfbfbf;
|
|
42
|
-
}
|
|
38
|
+
border-color: #fff;
|
|
39
|
+
opacity: 0.4;
|
|
43
40
|
}
|
|
44
41
|
}
|
|
@@ -35,7 +35,9 @@ const RadioButtonInput = props => {
|
|
|
35
35
|
"aria-invalid": props.hasErrors ? "true" : null,
|
|
36
36
|
"aria-describedby": props["aria-describedby"]
|
|
37
37
|
};
|
|
38
|
-
return _react.default.createElement("label", labelProps, !props.contentOnly ? _react.default.createElement(_react.default.Fragment, null, _react.default.createElement(_RadioButtonIcon.default, iconProps), _react.default.createElement("input", inputProps)) : null, _react.default.createElement("span",
|
|
38
|
+
return _react.default.createElement("label", labelProps, !props.contentOnly ? _react.default.createElement(_react.default.Fragment, null, _react.default.createElement(_RadioButtonIcon.default, iconProps), _react.default.createElement("input", inputProps)) : null, _react.default.createElement("span", {
|
|
39
|
+
className: _RadioButtonInputModule.default.labelText
|
|
40
|
+
}, props.children, props.required && _react.default.createElement("img", {
|
|
39
41
|
src: _asterisk.default,
|
|
40
42
|
alt: "",
|
|
41
43
|
className: _RadioButtonInputModule.default.requiredSymbol
|
|
@@ -20,6 +20,16 @@
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
.labelText {
|
|
24
|
+
color: $color-primary;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.disabled {
|
|
28
|
+
.labelText {
|
|
29
|
+
opacity: 0.4;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
23
33
|
&.hasErrors {
|
|
24
34
|
span {
|
|
25
35
|
color: $color-error;
|
|
@@ -28,7 +38,7 @@
|
|
|
28
38
|
|
|
29
39
|
&:focus-within {
|
|
30
40
|
outline-width: 2px;
|
|
31
|
-
outline-color: $color-
|
|
41
|
+
outline-color: $color-primary;
|
|
32
42
|
outline-style: auto;
|
|
33
43
|
outline-offset: 1px;
|
|
34
44
|
}
|
|
@@ -11,7 +11,7 @@ var _helpers = require("../functions/helpers");
|
|
|
11
11
|
var _RadioButtonListItemModule = _interopRequireDefault(require("./RadioButtonListItem.module.scss"));
|
|
12
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
13
|
const RadioButtonListItem = props => {
|
|
14
|
-
const listItemClassNameArray = [_RadioButtonListItemModule.default.radioButtonListItem, props.disabled ? _RadioButtonListItemModule.default.disabled : null, props.compact ? _RadioButtonListItemModule.default.compact : null, props.contentOnly ? _RadioButtonListItemModule.default.contentOnly : null, props.hasErrors ? _RadioButtonListItemModule.default.hasErrors : null];
|
|
14
|
+
const listItemClassNameArray = [_RadioButtonListItemModule.default.radioButtonListItem, props.checked ? _RadioButtonListItemModule.default.checked : null, props.disabled ? _RadioButtonListItemModule.default.disabled : null, props.compact ? _RadioButtonListItemModule.default.compact : null, props.contentOnly ? _RadioButtonListItemModule.default.contentOnly : null, props.hasErrors ? _RadioButtonListItemModule.default.hasErrors : null, props.theme && _RadioButtonListItemModule.default.hasTheme];
|
|
15
15
|
const listItemClassNameString = (0, _helpers.classNameArrayToClassNameString)(listItemClassNameArray);
|
|
16
16
|
const inputProps = {
|
|
17
17
|
onChange: props.onChange,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
.radioButtonListItem {
|
|
4
4
|
@include box-sizing(content-box);
|
|
5
|
-
@include border-radius(
|
|
6
|
-
@include transition(all
|
|
5
|
+
@include border-radius(0);
|
|
6
|
+
@include transition(all $default-transition);
|
|
7
7
|
display: -webkit-box;
|
|
8
8
|
display: -webkit-flex;
|
|
9
9
|
display: -ms-flexbox;
|
|
@@ -19,9 +19,12 @@
|
|
|
19
19
|
color: #000;
|
|
20
20
|
|
|
21
21
|
&:not(.contentOnly):not(.compact) {
|
|
22
|
-
|
|
22
|
+
border: 1px solid $color-secondary-light;
|
|
23
23
|
background: white;
|
|
24
|
-
margin-bottom:
|
|
24
|
+
margin-bottom: 8px;
|
|
25
|
+
label {
|
|
26
|
+
padding: 20px;
|
|
27
|
+
}
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
&.contentOnly {
|
|
@@ -38,12 +41,17 @@
|
|
|
38
41
|
}
|
|
39
42
|
}
|
|
40
43
|
|
|
41
|
-
&.checked:not(.contentOnly):not(.compact):not(.disabled) {
|
|
42
|
-
|
|
44
|
+
&.checked:not(.contentOnly):not(.compact):not(.disabled):not(.hasTheme) {
|
|
45
|
+
background-color: $color-secondary-light;
|
|
43
46
|
}
|
|
44
47
|
|
|
45
|
-
&:not(.checked):not(.contentOnly):not(.compact):not(.disabled):hover {
|
|
46
|
-
|
|
48
|
+
&:not(.checked):not(.contentOnly):not(.compact):not(.disabled):not(.hasTheme):hover {
|
|
49
|
+
&:hover {
|
|
50
|
+
background-color: $color-secondary-x-light;
|
|
51
|
+
}
|
|
52
|
+
&:focus-within {
|
|
53
|
+
background-color: $color-secondary-x-light;
|
|
54
|
+
}
|
|
47
55
|
}
|
|
48
56
|
|
|
49
57
|
label {
|
|
@@ -41,7 +41,11 @@
|
|
|
41
41
|
|
|
42
42
|
.multipleSelectDropdown {
|
|
43
43
|
@include border-radius(4px);
|
|
44
|
-
@include box-shadow(
|
|
44
|
+
@include box-shadow(
|
|
45
|
+
rgba(0, 0, 0, 0.2) 0px 5px 5px -3px,
|
|
46
|
+
rgba(0, 0, 0, 0.14) 0px 8px 10px 1px,
|
|
47
|
+
rgba(0, 0, 0, 0.12) 0px 3px 14px 2px
|
|
48
|
+
);
|
|
45
49
|
width: 100%;
|
|
46
50
|
position: absolute;
|
|
47
51
|
background-color: #fff;
|
|
@@ -51,30 +55,27 @@
|
|
|
51
55
|
select,
|
|
52
56
|
.multipleSelectElement {
|
|
53
57
|
@include border-radius(0);
|
|
54
|
-
@include transition(
|
|
58
|
+
@include transition(background $default-transition);
|
|
55
59
|
@include appearance(none);
|
|
56
60
|
@include box-shadow(none);
|
|
57
61
|
color: rgba(0, 0, 0, 0.75);
|
|
58
62
|
width: 100%;
|
|
59
63
|
font-family: inherit;
|
|
60
|
-
font-size:
|
|
64
|
+
font-size: 18px;
|
|
61
65
|
padding: 10px 40px 10px 10px;
|
|
62
|
-
border: 1px solid
|
|
66
|
+
border: 1px solid $color-primary;
|
|
63
67
|
border-radius: 0;
|
|
64
68
|
line-height: 1.7;
|
|
65
69
|
background: white;
|
|
66
70
|
cursor: pointer;
|
|
67
|
-
@media only screen and (min-width: $screen-sm) {
|
|
68
|
-
font-size: 19px;
|
|
69
|
-
}
|
|
70
71
|
|
|
71
72
|
&:hover {
|
|
72
|
-
border-color: $color-
|
|
73
|
+
border-color: $color-primary;
|
|
74
|
+
background-color: $color-secondary-x-light;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
&:focus {
|
|
76
|
-
|
|
77
|
-
outline-color: #54acb8;
|
|
78
|
+
outline-color: $color-primary;
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
&[disabled],
|
|
@@ -83,15 +84,12 @@
|
|
|
83
84
|
cursor: default;
|
|
84
85
|
}
|
|
85
86
|
&:not(.multiple) {
|
|
86
|
-
height:
|
|
87
|
-
padding:
|
|
88
|
-
@media only screen and (min-width: $screen-sm) {
|
|
89
|
-
height: 56px;
|
|
90
|
-
}
|
|
87
|
+
height: 52px;
|
|
88
|
+
padding: 12px 40px 12px 12px;
|
|
91
89
|
}
|
|
92
90
|
&.multiple {
|
|
93
91
|
max-height: 100px;
|
|
94
|
-
padding:
|
|
92
|
+
padding: 12px;
|
|
95
93
|
}
|
|
96
94
|
|
|
97
95
|
&.hasErrors {
|
|
@@ -1,28 +1,33 @@
|
|
|
1
|
-
$body-background: #
|
|
2
|
-
$color-default-text: #
|
|
3
|
-
$color-
|
|
4
|
-
$color-focus-outline: #005FCC;
|
|
1
|
+
$body-background: #ebf4fa;
|
|
2
|
+
$color-default-text: #202020;
|
|
3
|
+
$color-primary-text: #005275;
|
|
5
4
|
|
|
6
|
-
$color-
|
|
7
|
-
$color-light
|
|
5
|
+
$color-primary: #003045;
|
|
6
|
+
$color-primary-light: #264f61;
|
|
7
|
+
$color-primary-x-light: #406474;
|
|
8
8
|
|
|
9
|
-
$color-
|
|
9
|
+
$color-default: #f2f1f0;
|
|
10
10
|
|
|
11
|
-
$color-
|
|
11
|
+
$color-secondary: #89bad6;
|
|
12
|
+
$color-secondary-light: #c7e0f2;
|
|
13
|
+
$color-secondary-x-light: #ebf4fa;
|
|
12
14
|
|
|
13
|
-
$color-
|
|
15
|
+
$color-focus: rgba(0, 92, 173, 0.4);
|
|
14
16
|
|
|
15
17
|
$color-success: #43ac6a;
|
|
16
18
|
|
|
17
|
-
$color-
|
|
18
|
-
$color-light
|
|
19
|
+
$color-error: #db0000;
|
|
20
|
+
$color-error-light: #ffc5c2;
|
|
21
|
+
$color-error-x-light: #fceceb;
|
|
22
|
+
|
|
23
|
+
$color-warning: #ffbe00;
|
|
24
|
+
$color-warning-light: #fcefb6;
|
|
25
|
+
$color-warning-x-light: #fff8db;
|
|
19
26
|
|
|
20
27
|
$color-info: #a0d3e8;
|
|
21
28
|
|
|
22
29
|
$color-light-cyan: #ecf2f6;
|
|
23
30
|
|
|
24
|
-
$color-sea-green: #00757f;
|
|
25
|
-
|
|
26
31
|
$color-orange: #f08a24;
|
|
27
32
|
$color-light-orange: #faefdf;
|
|
28
33
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$default-transition: 200ms cubic-bezier(0.22, 1, 0.36, 1) 0s;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
$default-font: "Open Sans", arial, sans-serif;
|
|
2
|
-
$heading-font: "Altis"
|
|
1
|
+
$default-font: "PP Mori", "Open Sans", arial, sans-serif;
|
|
2
|
+
$heading-font: "PP Mori", "Altis", "Open Sans", arial, sans-serif;
|
|
@@ -3,95 +3,161 @@ $font-path: "../../assets/fonts";
|
|
|
3
3
|
@font-face {
|
|
4
4
|
font-family: "Altis";
|
|
5
5
|
src: url("#{$font-path}/Altis.eot#Altis") format("eot");
|
|
6
|
-
src:
|
|
6
|
+
src:
|
|
7
|
+
local("Altis"),
|
|
8
|
+
url("#{$font-path}/Altis.ttf") format("truetype"),
|
|
9
|
+
url("#{$font-path}/Altis.svg") format("svg");
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
@font-face {
|
|
10
13
|
font-family: "Altis-Light";
|
|
11
14
|
src: url("#{$font-path}/Altis-Light.eot#Altis-Light") format("eot");
|
|
12
|
-
src:
|
|
13
|
-
|
|
15
|
+
src:
|
|
16
|
+
local("Altis-Light"),
|
|
17
|
+
url("#{$font-path}/Altis-Light.woff") format("woff"),
|
|
18
|
+
url("#{$font-path}/Altis-Light.ttf") format("truetype"),
|
|
19
|
+
url("#{$font-path}/Altis-Light.svg") format("svg");
|
|
14
20
|
}
|
|
15
21
|
|
|
16
22
|
/* open-sans-300 - latin-ext_latin */
|
|
17
23
|
@font-face {
|
|
18
|
-
font-family:
|
|
24
|
+
font-family: "Open Sans";
|
|
19
25
|
font-style: normal;
|
|
20
26
|
font-weight: 300;
|
|
21
|
-
src: url(
|
|
22
|
-
src:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-300.eot"); /* IE9 Compat Modes */
|
|
28
|
+
src:
|
|
29
|
+
local(""),
|
|
30
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-300.eot?#iefix") format("embedded-opentype"),
|
|
31
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300.woff2") format("woff2"),
|
|
32
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300.woff") format("woff"),
|
|
33
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300.ttf") format("truetype"),
|
|
34
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300.svg#OpenSans") format("svg"); /* Legacy iOS */
|
|
35
|
+
}
|
|
36
|
+
/* open-sans-regular - latin-ext_latin */
|
|
37
|
+
@font-face {
|
|
38
|
+
font-family: "Open Sans";
|
|
32
39
|
font-style: normal;
|
|
33
40
|
font-weight: 400;
|
|
34
|
-
src: url(
|
|
35
|
-
src:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.eot"); /* IE9 Compat Modes */
|
|
42
|
+
src:
|
|
43
|
+
local(""),
|
|
44
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"),
|
|
45
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.woff2") format("woff2"),
|
|
46
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.woff") format("woff"),
|
|
47
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.ttf") format("truetype"),
|
|
48
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-regular.svg#OpenSans") format("svg"); /* Legacy iOS */
|
|
49
|
+
}
|
|
50
|
+
/* open-sans-700 - latin-ext_latin */
|
|
51
|
+
@font-face {
|
|
52
|
+
font-family: "Open Sans";
|
|
45
53
|
font-style: normal;
|
|
46
54
|
font-weight: 700;
|
|
47
|
-
src: url(
|
|
48
|
-
src:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-700.eot"); /* IE9 Compat Modes */
|
|
56
|
+
src:
|
|
57
|
+
local(""),
|
|
58
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"),
|
|
59
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700.woff2") format("woff2"),
|
|
60
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700.woff") format("woff"),
|
|
61
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700.ttf") format("truetype"),
|
|
62
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
|
|
63
|
+
}
|
|
64
|
+
/* open-sans-300italic - latin-ext_latin */
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: "Open Sans";
|
|
58
67
|
font-style: italic;
|
|
59
68
|
font-weight: 300;
|
|
60
|
-
src: url(
|
|
61
|
-
src:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.eot"); /* IE9 Compat Modes */
|
|
70
|
+
src:
|
|
71
|
+
local(""),
|
|
72
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.eot?#iefix") format("embedded-opentype"),
|
|
73
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.woff2") format("woff2"),
|
|
74
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.woff") format("woff"),
|
|
75
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.ttf") format("truetype"),
|
|
76
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-300italic.svg#OpenSans")
|
|
77
|
+
format("svg"); /* Legacy iOS */
|
|
78
|
+
}
|
|
79
|
+
/* open-sans-italic - latin-ext_latin */
|
|
80
|
+
@font-face {
|
|
81
|
+
font-family: "Open Sans";
|
|
71
82
|
font-style: italic;
|
|
72
83
|
font-weight: 400;
|
|
73
|
-
src: url(
|
|
74
|
-
src:
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.eot"); /* IE9 Compat Modes */
|
|
85
|
+
src:
|
|
86
|
+
local(""),
|
|
87
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.eot?#iefix") format("embedded-opentype"),
|
|
88
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.woff2") format("woff2"),
|
|
89
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.woff") format("woff"),
|
|
90
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.ttf") format("truetype"),
|
|
91
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-italic.svg#OpenSans") format("svg"); /* Legacy iOS */
|
|
92
|
+
}
|
|
93
|
+
/* open-sans-700italic - latin-ext_latin */
|
|
94
|
+
@font-face {
|
|
95
|
+
font-family: "Open Sans";
|
|
84
96
|
font-style: italic;
|
|
85
97
|
font-weight: 700;
|
|
86
|
-
src: url(
|
|
87
|
-
src:
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
98
|
+
src: url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.eot"); /* IE9 Compat Modes */
|
|
99
|
+
src:
|
|
100
|
+
local(""),
|
|
101
|
+
url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"),
|
|
102
|
+
/* IE6-IE8 */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.woff2") format("woff2"),
|
|
103
|
+
/* Super Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.woff") format("woff"),
|
|
104
|
+
/* Modern Browsers */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.ttf") format("truetype"),
|
|
105
|
+
/* Safari, Android, iOS */ url("#{$font-path}/open-sans-v27-latin-ext_latin-700italic.svg#OpenSans")
|
|
106
|
+
format("svg"); /* Legacy iOS */
|
|
107
|
+
}
|
|
94
108
|
|
|
95
|
-
|
|
96
|
-
|
|
109
|
+
@font-face {
|
|
110
|
+
font-family: "PP Mori";
|
|
111
|
+
src: url("#{$font-path}/PPMori-Regular.otf");
|
|
112
|
+
font-weight: 400;
|
|
113
|
+
font-style: normal;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@font-face {
|
|
117
|
+
font-family: "PP Mori";
|
|
118
|
+
src: url("#{$font-path}/PPMori-RegularItalic.otf");
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
font-style: italic;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@font-face {
|
|
124
|
+
font-family: "PP Mori";
|
|
125
|
+
src: url("#{$font-path}/PPMori-Book.otf");
|
|
126
|
+
font-weight: 300;
|
|
127
|
+
font-style: normal;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
@font-face {
|
|
131
|
+
font-family: "PP Mori";
|
|
132
|
+
src: url("#{$font-path}/PPMori-Medium.otf");
|
|
133
|
+
font-weight: 500;
|
|
134
|
+
font-style: normal;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
@font-face {
|
|
138
|
+
font-family: "PP Mori";
|
|
139
|
+
src: url("#{$font-path}/PPMori-SemiBold.otf");
|
|
140
|
+
font-weight: 600;
|
|
141
|
+
font-style: normal;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
@font-face {
|
|
145
|
+
font-family: "PP Mori";
|
|
146
|
+
src: url("#{$font-path}/PPMori-Bold.otf");
|
|
147
|
+
font-weight: 700;
|
|
148
|
+
font-style: normal;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@font-face {
|
|
152
|
+
font-family: "PP Mori";
|
|
153
|
+
src: url("#{$font-path}/PPMori-ExtraBold.otf");
|
|
154
|
+
font-weight: 900;
|
|
155
|
+
font-style: normal;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@font-face {
|
|
159
|
+
font-family: "PP Mori";
|
|
160
|
+
src: url("#{$font-path}/PPMori-Light.otf");
|
|
161
|
+
font-weight: 200;
|
|
162
|
+
font-style: normal;
|
|
97
163
|
}
|
package/dist/style/pdf.css
CHANGED
|
@@ -244,8 +244,8 @@ body {
|
|
|
244
244
|
width: 18px;
|
|
245
245
|
}
|
|
246
246
|
.page blockquote {
|
|
247
|
-
background: #
|
|
248
|
-
border-left:
|
|
247
|
+
background: #ebf4fa;
|
|
248
|
+
border-left: 4px solid #89bad6;
|
|
249
249
|
margin: 5px 10px;
|
|
250
250
|
padding: 0.5em 10px;
|
|
251
251
|
min-height: 36px;
|
|
@@ -406,8 +406,8 @@ body {
|
|
|
406
406
|
width: 19.94436px;
|
|
407
407
|
}
|
|
408
408
|
.page.signed-document div.content-container blockquote {
|
|
409
|
-
background: #
|
|
410
|
-
border-left:
|
|
409
|
+
background: #ebf4fa;
|
|
410
|
+
border-left: 4.43208px solid #89bad6;
|
|
411
411
|
margin: 5.5401px 11.0802px;
|
|
412
412
|
padding: 0.5em 11.0802px;
|
|
413
413
|
min-height: 39.88872px;
|
package/dist/style/pdf.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss","../../src/style/abstracts/variables/_colors.scss"],"names":[],"mappings":"AAwDA;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA,WA7Da;EA8Db;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,WA9Ea;;;AAgFjB;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;AAAA;IAEI;;EAEJ;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIR;EC1GE,oBD2GsB;EC1GnB,iBD0GmB;ECzGd,YDyGc;;;AAIpB;EACI;;AAGJ;EACI;;AACA;EACI;;AAIR;EACI,OA3Ga;EA4Gb;EACA,aA5GmB;;AA+GvB;AAAA;EAEI;EACA,WAjIO;EAkIP;EACA;EACA,YAnHQ;EAoHR;;AACA;AAAA;EACI;EACA,WAvIS;EAwIT;;AAGR;AAAA;EAEI;EACA,WA7IO;EA8IP;EACA;EACA,YAhIQ;EAiIR,eAhIW;;AAiIX;AAAA;EACI;EACA,WAnJS;EAoJT;EACA,eApIa;;AAsIjB;AAAA;EACI;;AAGR;AAAA;EAEI;EACA,WA7JO;EA8JP;EACA;EACA;EACA,YAhJQ;EAiJR,eAhJW;;AAiJX;AAAA;EACI;;AAIR;AAAA;EAEI;EACA,WA1KO;EA2KP;EACA;EACA,YA3JQ;EA4JR,eA3JW;;AA4JX;AAAA;EACI;;AAIR;AAAA;EAEI;EACA,WAtLO;EAuLP;EACA,YArKQ;EAsKR,eArKW;;AAwKf;EACI,YAxKe;EAyKf,eAxKkB;;AA2KtB;EACI,YA3KU;EA4KV,eA3Ka;;AA4Kb;AAAA;EAEI;EACA;;AAEJ;EACI;;AAGA;EACI;EACA;EACA;;AAGR;EACI;EACA;EACA;;AACA;EACI;;AAEJ;EACI;EACA;;AAIJ;EACI;;AACA;EACI;EACA;;AAEJ;EACI;EACA;;AAGR;EACI;;AAIZ;EACI;EACA;;AAEI;EACI;EACA;;AACA;EACI;EACA,WAxPK;EAyPL;;AACA;EACI;;AAMZ;EACI;;AACA;EACI;EACA,WApQG;;AAqQH;EACI;;AAIJ;EACI;;AAOR;EACI;EACA;;AACA;EACI,aA9OkB;EA+OlB,gBA/OkB;;AAoP1B;EACI;;AACA;EACI,aAtPgB;EAuPhB,gBAvPgB;;AA8PpC;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAKA;AAAA;EACI;;AAIR;EACI,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss","../../src/style/abstracts/variables/_colors.scss"],"names":[],"mappings":"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","file":"pdf.css"}
|