@1024pix/pix-ui 28.1.0 → 29.0.0
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/.circleci/config.yml +1 -1
- package/CHANGELOG.md +24 -0
- package/addon/components/pix-collapsible.hbs +3 -1
- package/addon/components/pix-collapsible.js +4 -0
- package/addon/styles/_pix-banner.scss +2 -4
- package/addon/styles/_pix-button-base.scss +1 -3
- package/addon/styles/_pix-button.scss +2 -2
- package/addon/styles/_pix-checkbox.scss +3 -7
- package/addon/styles/_pix-collapsible.scss +4 -4
- package/addon/styles/_pix-dropdown.scss +2 -2
- package/addon/styles/_pix-filter-banner.scss +8 -11
- package/addon/styles/_pix-indicator-card.scss +9 -11
- package/addon/styles/_pix-input-code.scss +0 -1
- package/addon/styles/_pix-input-password.scss +5 -5
- package/addon/styles/_pix-input.scss +2 -4
- package/addon/styles/_pix-modal.scss +6 -10
- package/addon/styles/_pix-multi-select.scss +3 -7
- package/addon/styles/_pix-progress-gauge.scss +2 -5
- package/addon/styles/_pix-radio-button.scss +0 -1
- package/addon/styles/_pix-search-input.scss +1 -3
- package/addon/styles/_pix-select.scss +15 -19
- package/addon/styles/_pix-selectable-tag.scss +0 -2
- package/addon/styles/_pix-sidebar.scss +3 -3
- package/addon/styles/_pix-tag.scss +9 -11
- package/addon/styles/_pix-textarea.scss +0 -1
- package/addon/styles/_pix-toggle.scss +8 -8
- package/addon/styles/_pix-tooltip.scss +0 -1
- package/addon/styles/normalize-reset/_reset.scss +4 -0
- package/addon/styles/pix-design-tokens/_colors.scss +0 -370
- package/addon/styles/pix-design-tokens/_fonts.scss +11 -29
- package/addon/styles/pix-design-tokens/_form.scss +6 -9
- package/addon/styles/pix-design-tokens/_shadows.scss +10 -25
- package/addon/styles/pix-design-tokens/_spacing.scss +8 -8
- package/addon/styles/pix-design-tokens/_typography.scss +75 -213
- package/docs/design-tokens.stories.mdx +16 -8
- package/docs/pix-design-tokens-dev.stories.mdx +14 -15
- package/docs/shadow.stories.mdx +25 -0
- package/docs/spacing.stories.mdx +19 -0
- package/docs/typography.stories.mdx +160 -0
- package/package.json +2 -2
- package/public/fonts/OpenSans/OpenSans-Medium.ttf +0 -0
- package/public/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/public/fonts/OpenSans/OpenSans-Light.ttf +0 -0
- package/public/fonts/OpenSans/OpenSans-Regular.ttf +0 -0
- package/public/fonts/OpenSans/OpenSans-SemiBold.ttf +0 -0
- package/public/fonts/Roboto/Roboto-Light.ttf +0 -0
package/.circleci/config.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Pix-UI Changelog
|
|
2
2
|
|
|
3
|
+
## v29.0.0 (24/03/2023)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### :rocket: Amélioration
|
|
7
|
+
- [#367](https://github.com/1024pix/pix-ui/pull/367) [FEATURE] Mise à jour du Design Token "typographie" (PIX-7515)
|
|
8
|
+
- [#368](https://github.com/1024pix/pix-ui/pull/368) [FEATURE] Suppression de variables SCSS de couleurs dépréciées (PIX-7518)
|
|
9
|
+
|
|
10
|
+
### :building_construction: Tech
|
|
11
|
+
- [#350](https://github.com/1024pix/pix-ui/pull/350) [TECH] Aligne les noms des variables SCSS d'espacement et documente des Design Token (PIX-7523)
|
|
12
|
+
|
|
13
|
+
### :bug: Correction
|
|
14
|
+
- [#369](https://github.com/1024pix/pix-ui/pull/369) [BUGFIX] Correction typographies composant Indicator Card
|
|
15
|
+
|
|
16
|
+
### :coffee: Autre
|
|
17
|
+
- [#358](https://github.com/1024pix/pix-ui/pull/358) [BUMP] Update dependency @embroider/test-setup to ^0.50.0
|
|
18
|
+
- [#352](https://github.com/1024pix/pix-ui/pull/352) build(deps): bump minimist from 0.2.1 to 0.2.4
|
|
19
|
+
- [#363](https://github.com/1024pix/pix-ui/pull/363) build(deps-dev): bump webpack from 5.75.0 to 5.76.0
|
|
20
|
+
|
|
21
|
+
## v28.1.1 (14/03/2023)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### :bug: Correction
|
|
25
|
+
- [#361](https://github.com/1024pix/pix-ui/pull/361) [BUGFIX] Le contenu du `PixCollapsible` ne se rend plus en lazy
|
|
26
|
+
|
|
3
27
|
## v28.1.0 (14/03/2023)
|
|
4
28
|
|
|
5
29
|
|
|
@@ -14,6 +14,10 @@ export default class PixCollapsible extends Component {
|
|
|
14
14
|
return !this.isCollapsed;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
get isContentRendered() {
|
|
18
|
+
return this.hasUnCollapsedOnce;
|
|
19
|
+
}
|
|
20
|
+
|
|
17
21
|
get title() {
|
|
18
22
|
if (!this.args.title || !this.args.title.trim()) {
|
|
19
23
|
throw new Error('ERROR in PixCollapsible component, @title param is not provided');
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
.pix-banner {
|
|
2
|
-
font-family: $font-roboto;
|
|
3
|
-
font-weight: $font-normal;
|
|
4
2
|
padding: 16px 24px;
|
|
5
3
|
display: flex;
|
|
6
4
|
align-items: center;
|
|
@@ -25,7 +23,7 @@
|
|
|
25
23
|
|
|
26
24
|
&__icon {
|
|
27
25
|
font-size: 1.125rem;
|
|
28
|
-
margin-right: $spacing-xs;
|
|
26
|
+
margin-right: $pix-spacing-xs;
|
|
29
27
|
}
|
|
30
28
|
|
|
31
29
|
&--information {
|
|
@@ -96,7 +94,7 @@
|
|
|
96
94
|
color: $pix-neutral-0;
|
|
97
95
|
|
|
98
96
|
&-orga {
|
|
99
|
-
background-color: $
|
|
97
|
+
background-color: $pix-secondary-orga-80;
|
|
100
98
|
color: $pix-neutral-0;
|
|
101
99
|
}
|
|
102
100
|
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
.pix-button {
|
|
2
2
|
color: $pix-neutral-0;
|
|
3
|
-
font-family: $font-roboto;
|
|
4
3
|
font-size: 0.875rem;
|
|
5
|
-
font-weight:
|
|
4
|
+
font-weight: $font-medium;
|
|
6
5
|
white-space: nowrap;
|
|
7
|
-
letter-spacing: 0.028rem;
|
|
8
6
|
cursor: pointer;
|
|
9
7
|
background-color: $pix-primary;
|
|
10
8
|
border: 1px solid transparent;
|
|
@@ -5,18 +5,14 @@
|
|
|
5
5
|
cursor: pointer;
|
|
6
6
|
|
|
7
7
|
&__label {
|
|
8
|
-
@
|
|
8
|
+
@extend %pix-body-m;
|
|
9
9
|
|
|
10
10
|
&--small {
|
|
11
|
-
@
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&--default {
|
|
15
|
-
@include text;
|
|
11
|
+
@extend %pix-body-s;
|
|
16
12
|
}
|
|
17
13
|
|
|
18
14
|
&--large {
|
|
19
|
-
@
|
|
15
|
+
@extend %pix-body-l;
|
|
20
16
|
}
|
|
21
17
|
}
|
|
22
18
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
justify-content: space-between;
|
|
25
25
|
align-items: center;
|
|
26
26
|
width: 100%;
|
|
27
|
-
padding: $spacing-s;
|
|
27
|
+
padding: $pix-spacing-s;
|
|
28
28
|
border: none;
|
|
29
29
|
color: $pix-neutral-90;
|
|
30
30
|
font-size: 1rem;
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&__icon {
|
|
52
|
-
margin-right: $spacing-xs;
|
|
52
|
+
margin-right: $pix-spacing-xs;
|
|
53
53
|
color: $pix-neutral-50;
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
width: 1rem;
|
|
58
58
|
height: 1rem;
|
|
59
59
|
padding: 0.5rem;
|
|
60
|
-
margin-left: $spacing-xs;
|
|
60
|
+
margin-left: $pix-spacing-xs;
|
|
61
61
|
border-radius: 50%;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.pix-collapsible__content {
|
|
70
|
-
padding: $spacing-s;
|
|
70
|
+
padding: $pix-spacing-s;
|
|
71
71
|
font-size: 0.875rem;
|
|
72
72
|
line-height: 1.25rem;
|
|
73
73
|
color: $pix-neutral-60;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
min-width: 250px;
|
|
25
25
|
min-height: 34px;
|
|
26
26
|
border: 1px solid $pix-neutral-40;
|
|
27
|
-
border-radius: $spacing-xxs;
|
|
27
|
+
border-radius: $pix-spacing-xxs;
|
|
28
28
|
padding: 0;
|
|
29
29
|
background: $pix-neutral-0;
|
|
30
30
|
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
max-height: 300px;
|
|
98
98
|
border: 1px solid $pix-neutral-40;
|
|
99
99
|
border-top: none;
|
|
100
|
-
border-radius: 0 0 $spacing-xxs $spacing-xxs;
|
|
100
|
+
border-radius: 0 0 $pix-spacing-xxs $pix-spacing-xxs;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
&--search {
|
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
position: relative;
|
|
5
|
-
gap: $spacing-xs;
|
|
5
|
+
gap: $pix-spacing-xs;
|
|
6
6
|
width: 100%;
|
|
7
7
|
background-color: $pix-neutral-0;
|
|
8
8
|
box-shadow: 0 2px 5px 0 rgba($pix-neutral-110, 0.05);
|
|
9
9
|
min-height: 64px;
|
|
10
|
-
padding: $spacing-s $spacing-m;
|
|
10
|
+
padding: $pix-spacing-s $pix-spacing-m;
|
|
11
11
|
|
|
12
12
|
&__title {
|
|
13
13
|
color: $pix-neutral-60;
|
|
14
|
-
font-family: $font-roboto;
|
|
15
14
|
font-size: 0.875rem;
|
|
16
15
|
margin: 0;
|
|
17
16
|
}
|
|
@@ -19,7 +18,7 @@
|
|
|
19
18
|
&__container-filter {
|
|
20
19
|
display: flex;
|
|
21
20
|
flex-direction: column;
|
|
22
|
-
gap: $spacing-s;
|
|
21
|
+
gap: $pix-spacing-s;
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
&__container-action {
|
|
@@ -29,12 +28,10 @@
|
|
|
29
28
|
border-top: 1px solid $pix-neutral-15;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
|
-
|
|
33
31
|
&__details {
|
|
34
32
|
color: $pix-neutral-60;
|
|
35
|
-
font-family: $font-roboto;
|
|
36
33
|
font-weight: $font-medium;
|
|
37
|
-
padding: $spacing-xs 0 $spacing-xs 0;
|
|
34
|
+
padding: $pix-spacing-xs 0 $pix-spacing-xs 0;
|
|
38
35
|
margin: 0;
|
|
39
36
|
font-size: 0.875rem;
|
|
40
37
|
}
|
|
@@ -45,14 +42,14 @@
|
|
|
45
42
|
}
|
|
46
43
|
|
|
47
44
|
.pix-filter-banner-button__icon {
|
|
48
|
-
padding-right: $spacing-xxs;
|
|
45
|
+
padding-right: $pix-spacing-xxs;
|
|
49
46
|
}
|
|
50
47
|
|
|
51
48
|
@include device-is('tablet') {
|
|
52
49
|
.pix-filter-banner {
|
|
53
50
|
align-items: center;
|
|
54
51
|
flex-direction: row;
|
|
55
|
-
gap: $spacing-m;
|
|
52
|
+
gap: $pix-spacing-m;
|
|
56
53
|
|
|
57
54
|
&__container-title {
|
|
58
55
|
display: flex;
|
|
@@ -72,14 +69,14 @@
|
|
|
72
69
|
}
|
|
73
70
|
|
|
74
71
|
&__details {
|
|
75
|
-
padding: 0 $spacing-s 0 0;
|
|
72
|
+
padding: 0 $pix-spacing-s 0 0;
|
|
76
73
|
text-align: center;
|
|
77
74
|
border: none;
|
|
78
75
|
}
|
|
79
76
|
|
|
80
77
|
&__button-container {
|
|
81
78
|
border-left: 1px solid $pix-neutral-15;
|
|
82
|
-
padding-left: $spacing-s;
|
|
79
|
+
padding-left: $pix-spacing-s;
|
|
83
80
|
}
|
|
84
81
|
}
|
|
85
82
|
}
|
|
@@ -22,37 +22,35 @@
|
|
|
22
22
|
flex-direction: column;
|
|
23
23
|
justify-content: center;
|
|
24
24
|
color: $pix-neutral-60;
|
|
25
|
-
padding: $spacing-s $spacing-m;
|
|
25
|
+
padding: $pix-spacing-s $pix-spacing-m;
|
|
26
26
|
margin: 0;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&__title {
|
|
30
|
-
@
|
|
30
|
+
@extend %pix-body-l;
|
|
31
31
|
|
|
32
32
|
display: flex;
|
|
33
33
|
align-items: center;
|
|
34
34
|
font-weight: $font-medium;
|
|
35
35
|
font-size: 1rem;
|
|
36
36
|
line-height: 1.375rem;
|
|
37
|
-
margin-bottom: $spacing-xxs;
|
|
37
|
+
margin-bottom: $pix-spacing-xxs;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&__value {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
font-size: 2rem;
|
|
44
|
-
line-height: 2.5rem;
|
|
41
|
+
@extend %pix-title-m;
|
|
42
|
+
|
|
45
43
|
margin: 0;
|
|
46
|
-
margin-bottom: $spacing-xxs;
|
|
44
|
+
margin-bottom: $pix-spacing-xxs;
|
|
47
45
|
}
|
|
48
46
|
|
|
49
47
|
&__sub {
|
|
50
|
-
@
|
|
48
|
+
@extend %pix-body-s;
|
|
51
49
|
|
|
52
50
|
font-weight: $font-normal;
|
|
53
51
|
display: flex;
|
|
54
52
|
gap: 10px;
|
|
55
|
-
margin: 0
|
|
53
|
+
margin: 0;
|
|
56
54
|
}
|
|
57
55
|
|
|
58
56
|
&__tooltip {
|
|
@@ -61,6 +59,6 @@
|
|
|
61
59
|
|
|
62
60
|
&__tooltip-icon {
|
|
63
61
|
color: $pix-neutral-30;
|
|
64
|
-
margin: 0 $spacing-xs;
|
|
62
|
+
margin: 0 $pix-spacing-xs;
|
|
65
63
|
}
|
|
66
64
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
display: flex;
|
|
9
9
|
align-items: center;
|
|
10
10
|
border: 1px solid $pix-neutral-40;
|
|
11
|
-
border-radius: $spacing-xxs;
|
|
11
|
+
border-radius: $pix-spacing-xxs;
|
|
12
12
|
padding: 1px 0 1px 1px;
|
|
13
13
|
|
|
14
14
|
@include hoverFormElement();
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
&__button {
|
|
42
|
-
margin-right: $spacing-xxs;
|
|
42
|
+
margin-right: $pix-spacing-xxs;
|
|
43
43
|
|
|
44
44
|
&:hover,
|
|
45
45
|
&:active,
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
&__error-container {
|
|
53
|
-
padding-right: $spacing-m;
|
|
53
|
+
padding-right: $pix-spacing-m;
|
|
54
54
|
@include formElementInError();
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
&__success-container {
|
|
58
|
-
padding-right: $spacing-m;
|
|
58
|
+
padding-right: $pix-spacing-m;
|
|
59
59
|
@include formElementInSuccess();
|
|
60
60
|
}
|
|
61
61
|
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
padding: 2px;
|
|
68
68
|
right: 12px;
|
|
69
69
|
width: 10px;
|
|
70
|
-
height: 10px
|
|
70
|
+
height: 10px;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
&__error-icon {
|
|
@@ -4,14 +4,12 @@
|
|
|
4
4
|
position: relative;
|
|
5
5
|
|
|
6
6
|
&__label {
|
|
7
|
-
font-family: $font-roboto;
|
|
8
7
|
font-size: 0.875rem;
|
|
9
8
|
color: $pix-neutral-70;
|
|
10
9
|
margin-bottom: 4px;
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
&__information {
|
|
14
|
-
font-family: $font-roboto;
|
|
15
13
|
font-size: 0.75rem;
|
|
16
14
|
margin-top: 4px;
|
|
17
15
|
color: $pix-neutral-60;
|
|
@@ -61,12 +59,12 @@
|
|
|
61
59
|
}
|
|
62
60
|
|
|
63
61
|
&__input--error {
|
|
64
|
-
padding-right: $spacing-l;
|
|
62
|
+
padding-right: $pix-spacing-l;
|
|
65
63
|
@include formElementInError();
|
|
66
64
|
}
|
|
67
65
|
|
|
68
66
|
&__input--success {
|
|
69
|
-
padding-right: $spacing-l;
|
|
67
|
+
padding-right: $pix-spacing-l;
|
|
70
68
|
@include formElementInSuccess();
|
|
71
69
|
}
|
|
72
70
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
right: 0;
|
|
8
8
|
overflow-y: auto;
|
|
9
9
|
text-align: center; // Used to center horizontally the inline-block modal content
|
|
10
|
-
padding: $spacing-xs 0;
|
|
10
|
+
padding: $pix-spacing-xs 0;
|
|
11
11
|
background-color: rgba(52, 69, 99, 0.7);
|
|
12
12
|
transition: all 0.3s ease-in-out;
|
|
13
13
|
|
|
@@ -39,7 +39,7 @@ $button-margin: 16px;
|
|
|
39
39
|
vertical-align: middle; // Centered vertically with the .pix-modal__overlay::after which is 100% height
|
|
40
40
|
width: 512px;
|
|
41
41
|
max-width: calc(
|
|
42
|
-
100% - #{2 * $spacing-xs}
|
|
42
|
+
100% - #{2 * $pix-spacing-xs}
|
|
43
43
|
); // Horizontal margin sets here to have extra space for the .pix-modal__overlay::after on mobile
|
|
44
44
|
|
|
45
45
|
text-align: initial;
|
|
@@ -68,12 +68,10 @@ $button-margin: 16px;
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
&__title {
|
|
71
|
+
@extend %pix-title-s;
|
|
72
|
+
|
|
71
73
|
margin-bottom: 0;
|
|
72
|
-
font-family: $font-open-sans;
|
|
73
74
|
color: $pix-neutral-90;
|
|
74
|
-
font-size: 1.25rem;
|
|
75
|
-
line-height: 1.875rem;
|
|
76
|
-
font-weight: $font-normal;
|
|
77
75
|
padding-right: $mobile-close-button-size + $space-between-title-and-close-button;
|
|
78
76
|
|
|
79
77
|
@include device-is('tablet') {
|
|
@@ -82,12 +80,10 @@ $button-margin: 16px;
|
|
|
82
80
|
}
|
|
83
81
|
|
|
84
82
|
&__content {
|
|
83
|
+
@extend %pix-body-m;
|
|
84
|
+
|
|
85
85
|
padding: $modal-padding;
|
|
86
|
-
font-size: 0.875rem;
|
|
87
86
|
color: $pix-neutral-90;
|
|
88
|
-
line-height: 1.375rem;
|
|
89
|
-
font-family: $font-roboto;
|
|
90
|
-
font-weight: $font-normal;
|
|
91
87
|
|
|
92
88
|
p:last-child {
|
|
93
89
|
margin-bottom: 0;
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
flex-direction: row;
|
|
13
13
|
align-items: center;
|
|
14
|
-
font-family: $font-roboto;
|
|
15
|
-
font-weight: $font-normal;
|
|
16
14
|
position: relative;
|
|
17
15
|
border: 1px $pix-neutral-40 solid;
|
|
18
16
|
height: 36px;
|
|
@@ -56,10 +54,9 @@
|
|
|
56
54
|
}
|
|
57
55
|
|
|
58
56
|
&__dropdown-icon {
|
|
59
|
-
@
|
|
57
|
+
@extend %pix-body-s;
|
|
60
58
|
|
|
61
59
|
color: $pix-neutral-60;
|
|
62
|
-
font-weight: $font-heavy;
|
|
63
60
|
right: 10px;
|
|
64
61
|
top: calc(50% - 6px);
|
|
65
62
|
position: absolute;
|
|
@@ -81,10 +78,10 @@
|
|
|
81
78
|
padding: 0;
|
|
82
79
|
box-shadow: 0 6px 12px rgba(7, 20, 46, 0.08);
|
|
83
80
|
transition: all 0.1s ease-in-out;
|
|
84
|
-
margin-top: $spacing-xxs;
|
|
81
|
+
margin-top: $pix-spacing-xxs;
|
|
85
82
|
|
|
86
83
|
&__item-label {
|
|
87
|
-
padding: $spacing-xs $spacing-m;
|
|
84
|
+
padding: $pix-spacing-xs $pix-spacing-m;
|
|
88
85
|
}
|
|
89
86
|
|
|
90
87
|
&--hidden {
|
|
@@ -115,7 +112,6 @@
|
|
|
115
112
|
position: relative;
|
|
116
113
|
list-style: none;
|
|
117
114
|
|
|
118
|
-
|
|
119
115
|
&:hover,
|
|
120
116
|
&:focus {
|
|
121
117
|
outline: none;
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
&__sub-title {
|
|
8
8
|
font-size: 0.813rem;
|
|
9
|
-
font-weight: $font-light;
|
|
10
9
|
color: $pix-warning-40;
|
|
11
10
|
margin: 6px 0;
|
|
12
11
|
letter-spacing: 0.4px;
|
|
@@ -36,10 +35,8 @@
|
|
|
36
35
|
bottom: calc(100% + 10px);
|
|
37
36
|
border-radius: 5px;
|
|
38
37
|
text-align: center;
|
|
39
|
-
line-height: normal;
|
|
40
38
|
padding: 4px;
|
|
41
39
|
font-size: 0.8rem;
|
|
42
|
-
font-family: $font-open-sans;
|
|
43
40
|
font-weight: $font-bold;
|
|
44
41
|
|
|
45
42
|
&::before {
|
|
@@ -83,11 +80,11 @@
|
|
|
83
80
|
}
|
|
84
81
|
|
|
85
82
|
& .progress-gauge__marker {
|
|
86
|
-
background: $pix-
|
|
83
|
+
background: $pix-secondary-app-gradient;
|
|
87
84
|
}
|
|
88
85
|
|
|
89
86
|
& .progress-gauge__tooltip {
|
|
90
|
-
background: $pix-
|
|
87
|
+
background: $pix-secondary-app-gradient;
|
|
91
88
|
color: $pix-neutral-0;
|
|
92
89
|
|
|
93
90
|
&::before {
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.pix-search-input__label {
|
|
8
|
-
font-family: $font-roboto;
|
|
9
8
|
font-size: 0.875rem;
|
|
10
9
|
color: $pix-neutral-70;
|
|
11
10
|
margin-bottom: 4px;
|
|
@@ -34,10 +33,9 @@
|
|
|
34
33
|
width: 100%;
|
|
35
34
|
height: 36px;
|
|
36
35
|
border: 1px solid $pix-neutral-40;
|
|
37
|
-
padding-left: $spacing-xl;
|
|
36
|
+
padding-left: $pix-spacing-xl;
|
|
38
37
|
|
|
39
38
|
&::placeholder {
|
|
40
39
|
color: $pix-neutral-30;
|
|
41
40
|
}
|
|
42
41
|
}
|
|
43
|
-
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
box-shadow: 0 6px 12px rgba(7, 20, 46, 0.08);
|
|
24
24
|
transition: all 0.1s ease-in-out;
|
|
25
25
|
white-space: nowrap;
|
|
26
|
-
margin-top: $spacing-xxs;
|
|
26
|
+
margin-top: $pix-spacing-xxs;
|
|
27
27
|
|
|
28
28
|
&::-webkit-scrollbar {
|
|
29
29
|
width: 0.5rem;
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
&__empty-search-message {
|
|
55
|
-
@
|
|
55
|
+
@extend %pix-body-s;
|
|
56
56
|
|
|
57
57
|
color: $pix-neutral-70;
|
|
58
58
|
text-align: center;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
&__search {
|
|
62
62
|
display: flex;
|
|
63
63
|
border-bottom: 2px solid $pix-neutral-22;
|
|
64
|
-
margin: $spacing-s $spacing-m;
|
|
64
|
+
margin: $pix-spacing-s $pix-spacing-m;
|
|
65
65
|
color: $pix-neutral-30;
|
|
66
66
|
border-radius: 4px 4px 0 0;
|
|
67
67
|
|
|
@@ -86,11 +86,9 @@
|
|
|
86
86
|
display: flex;
|
|
87
87
|
flex-direction: row;
|
|
88
88
|
align-items: center;
|
|
89
|
-
font-family: $font-roboto;
|
|
90
|
-
font-weight: $font-normal;
|
|
91
89
|
position: relative;
|
|
92
90
|
border: 1px $pix-neutral-45 solid;
|
|
93
|
-
padding: 0 $spacing-s 0 $spacing-s;
|
|
91
|
+
padding: 0 $pix-spacing-s 0 $pix-spacing-s;
|
|
94
92
|
width: 100%;
|
|
95
93
|
background-color: $pix-neutral-0;
|
|
96
94
|
border-radius: 4px;
|
|
@@ -100,7 +98,7 @@
|
|
|
100
98
|
color: $pix-neutral-90;
|
|
101
99
|
justify-content: space-between;
|
|
102
100
|
|
|
103
|
-
@
|
|
101
|
+
@extend %pix-body-s;
|
|
104
102
|
@include hoverFormElement();
|
|
105
103
|
@include focusWithinFormElement();
|
|
106
104
|
|
|
@@ -120,11 +118,10 @@
|
|
|
120
118
|
}
|
|
121
119
|
|
|
122
120
|
&__dropdown-icon {
|
|
123
|
-
@
|
|
121
|
+
@extend %pix-body-s;
|
|
124
122
|
|
|
125
|
-
margin-left: $spacing-xs;
|
|
123
|
+
margin-left: $pix-spacing-xs;
|
|
126
124
|
color: $pix-neutral-60;
|
|
127
|
-
font-weight: $font-heavy;
|
|
128
125
|
pointer-events: none;
|
|
129
126
|
}
|
|
130
127
|
}
|
|
@@ -137,20 +134,19 @@
|
|
|
137
134
|
|
|
138
135
|
.pix-select-options-category {
|
|
139
136
|
&__name {
|
|
140
|
-
@
|
|
137
|
+
@extend %pix-body-s;
|
|
141
138
|
|
|
142
|
-
padding: $spacing-s $spacing-m $spacing-xs $spacing-m;
|
|
139
|
+
padding: $pix-spacing-s $pix-spacing-m $pix-spacing-xs $pix-spacing-m;
|
|
143
140
|
text-transform: uppercase;
|
|
144
|
-
font-family: $font-roboto;
|
|
145
141
|
color: $pix-neutral-45;
|
|
146
142
|
}
|
|
147
143
|
|
|
148
144
|
&__option {
|
|
149
|
-
@
|
|
145
|
+
@extend %pix-body-s;
|
|
150
146
|
|
|
151
147
|
display: flex;
|
|
152
148
|
justify-content: space-between;
|
|
153
|
-
padding: $spacing-xs $spacing-m;
|
|
149
|
+
padding: $pix-spacing-xs $pix-spacing-m;
|
|
154
150
|
color: $pix-neutral-70;
|
|
155
151
|
|
|
156
152
|
&:hover,
|
|
@@ -187,12 +183,12 @@
|
|
|
187
183
|
|
|
188
184
|
.pix-select-search {
|
|
189
185
|
&__input {
|
|
190
|
-
@
|
|
186
|
+
@extend %pix-body-s;
|
|
191
187
|
|
|
192
188
|
width: 100%;
|
|
193
189
|
border: none;
|
|
194
|
-
padding-left: $spacing-xs;
|
|
195
|
-
margin: $spacing-xxs;
|
|
190
|
+
padding-left: $pix-spacing-xs;
|
|
191
|
+
margin: $pix-spacing-xxs;
|
|
196
192
|
|
|
197
193
|
&:focus {
|
|
198
194
|
outline: none;
|
|
@@ -201,6 +197,6 @@
|
|
|
201
197
|
}
|
|
202
198
|
|
|
203
199
|
&__icon {
|
|
204
|
-
margin: auto $spacing-xxs;
|
|
200
|
+
margin: auto $pix-spacing-xxs;
|
|
205
201
|
}
|
|
206
202
|
}
|
|
@@ -26,9 +26,7 @@ $checkmark-width-with-space: $checkmark-width + 0.438rem;
|
|
|
26
26
|
border: $pix-neutral-30 solid 1px;
|
|
27
27
|
color: $pix-neutral-60;
|
|
28
28
|
background-color: $pix-neutral-0;
|
|
29
|
-
font-family: $font-roboto;
|
|
30
29
|
font-size: 0.8125rem;
|
|
31
|
-
font-weight: $font-normal;
|
|
32
30
|
cursor: pointer;
|
|
33
31
|
|
|
34
32
|
input {
|