shift-ui-kit 0.0.42 → 0.0.43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/3-generic/_fonts.scss +28 -8
- data/assets/stylesheets/6-components/_c-checkbox.scss +10 -2
- data/assets/stylesheets/6-components/_c-dropdown.scss +6 -1
- data/assets/stylesheets/6-components/_c-nav-bar.scss +6 -1
- data/assets/stylesheets/6-components/_c-section-heading.scss +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9b6860b8677412e21955c0b65a099034c595faa
|
4
|
+
data.tar.gz: 554ed2de0a9505e3312940ffeae879056bff7d86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c4fef311ba3d42933744698d1f20201c16345635aeb65e272aa21432c1799e0f72559d68b63b29a18b5e19fc6707e0d3d9610e659c29730037a6770e3eb3196
|
7
|
+
data.tar.gz: 377b006892dace5cfdd207e996fe5b528be203bce17c51672868d71a0e6631b5bbf7b665b3635a339be5f8fd0a8dbc9b7406b62aa82af42db6b49e195fb5fa20
|
@@ -2,30 +2,50 @@
|
|
2
2
|
font-family: 'DIN Next';
|
3
3
|
font-style: normal;
|
4
4
|
font-weight: normal;
|
5
|
-
|
6
|
-
|
5
|
+
@if function-exists(font-url) {
|
6
|
+
src: font-url("din_next_regular.woff2") format("woff2"),
|
7
|
+
font-url("din_next_regular.woff") format("woff");
|
8
|
+
} @else {
|
9
|
+
src: url("/assets/fonts/din_next_regular.woff2") format("woff2"),
|
10
|
+
url("/assets/fonts/din_next_regular.woff") format("woff");
|
11
|
+
}
|
7
12
|
}
|
8
13
|
|
9
14
|
@font-face {
|
10
15
|
font-family: 'DIN Next';
|
11
16
|
font-style: normal;
|
12
17
|
font-weight: bold;
|
13
|
-
|
14
|
-
|
18
|
+
@if function-exists(font-url) {
|
19
|
+
src: font-url("din_next_medium.woff2") format("woff2"),
|
20
|
+
font-url("din_next_medium.woff") format("woff");
|
21
|
+
} @else {
|
22
|
+
src: url("/assets/fonts/din_next_medium.woff2") format("woff2"),
|
23
|
+
url("/assets/fonts/din_next_medium.woff") format("woff");
|
24
|
+
}
|
15
25
|
}
|
16
26
|
|
17
27
|
@font-face {
|
18
28
|
font-family: 'DIN Next';
|
19
29
|
font-style: normal;
|
20
30
|
font-weight: lighter;
|
21
|
-
|
22
|
-
|
31
|
+
@if function-exists(font-url) {
|
32
|
+
src: font-url("din_next_light.woff2") format("woff2"),
|
33
|
+
font-url("din_next_light.woff") format("woff");
|
34
|
+
} @else {
|
35
|
+
src: url("/assets/fonts/din_next_light.woff2") format("woff2"),
|
36
|
+
url("/assets/fonts/din_next_light.woff") format("woff");
|
37
|
+
}
|
23
38
|
}
|
24
39
|
|
25
40
|
@font-face {
|
26
41
|
font-family: 'DIN Next';
|
27
42
|
font-style: italic;
|
28
43
|
font-weight: normal;
|
29
|
-
|
30
|
-
|
44
|
+
@if function-exists(font-url) {
|
45
|
+
src: font-url("din_next_light_italic.woff2") format("woff2"),
|
46
|
+
font-url("din_next_light_italic.woff") format("woff");
|
47
|
+
} @else {
|
48
|
+
src: url("/assets/fonts/din_next_light_italic.woff2") format("woff2"),
|
49
|
+
url("/assets/fonts/din_next_light_italic.woff") format("woff");
|
50
|
+
}
|
31
51
|
}
|
@@ -17,13 +17,21 @@
|
|
17
17
|
&--checked#{&}--determinate {
|
18
18
|
border-width: 0;
|
19
19
|
background-color: $color-info;
|
20
|
-
|
20
|
+
@if function-exists(image-url) {
|
21
|
+
background-image: image-url("checkbox--determinate-checked.svg");
|
22
|
+
} @else {
|
23
|
+
background-image: url("/assets/images/checkbox--determinate-checked.svg");
|
24
|
+
}
|
21
25
|
}
|
22
26
|
|
23
27
|
&--checked#{&}--indeterminate {
|
24
28
|
border-width: 0;
|
25
29
|
background-color: $color-info;
|
26
|
-
|
30
|
+
@if function-exists(image-url) {
|
31
|
+
background-image: image-url("checkbox--indeterminate-checked.svg");
|
32
|
+
} @else {
|
33
|
+
background-image: url("/assets/images/checkbox--indeterminate-checked.svg");
|
34
|
+
}
|
27
35
|
}
|
28
36
|
|
29
37
|
&--disabled#{&}--disabled {
|
@@ -21,7 +21,12 @@
|
|
21
21
|
top: 0;
|
22
22
|
bottom: 0;
|
23
23
|
right: 15px;
|
24
|
-
background:
|
24
|
+
background: center center no-repeat;
|
25
|
+
@if function-exists(image-url) {
|
26
|
+
background-image: image-url("dropdown-arrow.svg");
|
27
|
+
} @else {
|
28
|
+
background-image: url("/assets/images/dropdown-arrow.svg");
|
29
|
+
}
|
25
30
|
background-size: 14px auto;
|
26
31
|
opacity: 0.3;
|
27
32
|
transition: opacity 0.2s ease;
|
@@ -12,7 +12,12 @@
|
|
12
12
|
width: 50px;
|
13
13
|
flex-grow: 0;
|
14
14
|
flex-shrink: 0;
|
15
|
-
background:
|
15
|
+
background: center center no-repeat;
|
16
|
+
@if function-exists(image-url) {
|
17
|
+
background-image: image-url("logo.svg");
|
18
|
+
} @else {
|
19
|
+
background-image: url("/assets/images/logo.svg");
|
20
|
+
}
|
16
21
|
background-size: 60% auto;
|
17
22
|
opacity: 0.6;
|
18
23
|
}
|
@@ -51,7 +51,11 @@
|
|
51
51
|
|
52
52
|
@each $icon in $icons {
|
53
53
|
&--#{$icon} {
|
54
|
-
|
54
|
+
@if function-exists(image-url) {
|
55
|
+
background-image: image-url("section-heading-icons/#{$icon}.svg");
|
56
|
+
} @else {
|
57
|
+
background-image: url("/assets/images/section-heading-icons/#{$icon}.svg");
|
58
|
+
}
|
55
59
|
}
|
56
60
|
}
|
57
61
|
}
|