@skyscanner/backpack-web 38.22.0 → 39.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/bpk-mixins/_badges-v2.scss +37 -36
- package/bpk-mixins/_badges.scss +37 -36
- package/bpk-mixins/_borders.scss +16 -16
- package/bpk-mixins/_breakpoints.scss +11 -11
- package/bpk-mixins/_buttons.scss +141 -137
- package/bpk-mixins/_cards.scss +13 -13
- package/bpk-mixins/_chips.scss +66 -66
- package/bpk-mixins/_forms.scss +214 -202
- package/bpk-mixins/_icons.scss +7 -4
- package/bpk-mixins/_index.scss +19 -19
- package/bpk-mixins/_layers.scss +34 -34
- package/bpk-mixins/_margins.scss +3 -3
- package/bpk-mixins/_panels.scss +9 -9
- package/bpk-mixins/_radii.scss +6 -6
- package/bpk-mixins/_scroll-indicators.scss +2 -2
- package/bpk-mixins/_shadows.scss +4 -4
- package/bpk-mixins/_spinners.scss +10 -10
- package/bpk-mixins/_tokens.scss +1 -3
- package/bpk-mixins/_typography.scss +204 -195
- package/bpk-mixins/_utils.scss +17 -12
- package/bpk-stylesheets/index.scss +13 -14
- package/bpk-stylesheets/normalize.css +18 -422
- package/bpk-stylesheets/normalize.scss +422 -0
- package/package.json +1 -5
- package/unstable__bpk-mixins/_badges-v2.scss +0 -240
- package/unstable__bpk-mixins/_badges.scss +0 -240
- package/unstable__bpk-mixins/_borders.scss +0 -268
- package/unstable__bpk-mixins/_breakpoints.scss +0 -221
- package/unstable__bpk-mixins/_buttons.scss +0 -587
- package/unstable__bpk-mixins/_cards.scss +0 -94
- package/unstable__bpk-mixins/_chips.scss +0 -249
- package/unstable__bpk-mixins/_forms.scss +0 -1045
- package/unstable__bpk-mixins/_icons.scss +0 -88
- package/unstable__bpk-mixins/_index.scss +0 -38
- package/unstable__bpk-mixins/_layers.scss +0 -199
- package/unstable__bpk-mixins/_margins.scss +0 -75
- package/unstable__bpk-mixins/_panels.scss +0 -96
- package/unstable__bpk-mixins/_radii.scss +0 -80
- package/unstable__bpk-mixins/_scroll-indicators.scss +0 -79
- package/unstable__bpk-mixins/_shadows.scss +0 -58
- package/unstable__bpk-mixins/_spinners.scss +0 -102
- package/unstable__bpk-mixins/_tokens.scss +0 -19
- package/unstable__bpk-mixins/_typography.scss +0 -1225
- package/unstable__bpk-mixins/_utils.scss +0 -267
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'tokens.scss';
|
|
22
|
-
@use 'utils.scss';
|
|
23
|
-
|
|
24
|
-
////
|
|
25
|
-
/// @group svgs
|
|
26
|
-
////
|
|
27
|
-
|
|
28
|
-
/// Button alignment utility.
|
|
29
|
-
///
|
|
30
|
-
/// @access private
|
|
31
|
-
|
|
32
|
-
@mixin _bpk-svg--align-to-button() {
|
|
33
|
-
vertical-align: text-bottom;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/// Large button alignment utility.
|
|
37
|
-
///
|
|
38
|
-
/// @access private
|
|
39
|
-
|
|
40
|
-
@mixin _bpk-svg--align-to-large-button() {
|
|
41
|
-
margin-top: (tokens.$bpk-private-button-line-height - tokens.$bpk-icon-size-lg) * 0.5;
|
|
42
|
-
vertical-align: top;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/// Align to button. Modifies the bpk-icon-sm mixin.
|
|
46
|
-
///
|
|
47
|
-
/// @require {mixin} bpk-icon-sm
|
|
48
|
-
///
|
|
49
|
-
/// @example scss
|
|
50
|
-
/// .selector {
|
|
51
|
-
/// @include bpk-icon-sm(flight-sky-gray-tint-02);
|
|
52
|
-
/// @include bpk-icon-sm--align-to-button();
|
|
53
|
-
/// }
|
|
54
|
-
|
|
55
|
-
@mixin bpk-icon-sm--align-to-button() {
|
|
56
|
-
@include _bpk-svg--align-to-button;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/// Align to large button. Modifies the bpk-icon-lg mixin.
|
|
60
|
-
///
|
|
61
|
-
/// @require {mixin} bpk-icon-lg
|
|
62
|
-
///
|
|
63
|
-
/// @example scss
|
|
64
|
-
/// .selector {
|
|
65
|
-
/// @include bpk-icon-lg(flight-sky-gray-tint-02);
|
|
66
|
-
/// @include bpk-icon-lg--align-to-large-button();
|
|
67
|
-
/// }
|
|
68
|
-
|
|
69
|
-
@mixin bpk-icon-lg--align-to-large-button() {
|
|
70
|
-
@include _bpk-svg--align-to-large-button;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/// RTL support. Modifies the bpk-icon-sm or bpk-icon-lg mixin.
|
|
74
|
-
///
|
|
75
|
-
/// @require {mixin} bpk-icon-sm
|
|
76
|
-
/// @require {mixin} bpk-icon-lg
|
|
77
|
-
///
|
|
78
|
-
/// @example scss
|
|
79
|
-
/// .selector {
|
|
80
|
-
/// @include bpk-icon-sm(flight-sky-gray-tint-02);
|
|
81
|
-
/// @include bpk-icon--rtl-support();
|
|
82
|
-
/// }
|
|
83
|
-
|
|
84
|
-
@mixin bpk-icon--rtl-support() {
|
|
85
|
-
@include utils.bpk-rtl {
|
|
86
|
-
transform: scaleX(-1);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
@forward 'tokens';
|
|
20
|
-
@forward 'badges';
|
|
21
|
-
@forward 'borders';
|
|
22
|
-
@forward 'breakpoints';
|
|
23
|
-
@forward 'buttons';
|
|
24
|
-
@forward 'cards';
|
|
25
|
-
@forward 'chips';
|
|
26
|
-
@forward 'forms';
|
|
27
|
-
@forward 'icons';
|
|
28
|
-
@forward 'layers';
|
|
29
|
-
@forward 'margins';
|
|
30
|
-
@forward 'panels';
|
|
31
|
-
@forward 'radii';
|
|
32
|
-
@forward 'scroll-indicators';
|
|
33
|
-
@forward 'shadows';
|
|
34
|
-
@forward 'spinners';
|
|
35
|
-
@forward 'typography';
|
|
36
|
-
@forward 'utils';
|
|
37
|
-
|
|
38
|
-
@warn "You're using blank import of all mixins. This might affect performance of your build tool and your bundle size. \nConsider switching to more granular imports, e.g. @use '@skyscanner/backpack-web/bpk-mixins/buttons'";
|
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'tokens.scss';
|
|
22
|
-
@use 'radii.scss';
|
|
23
|
-
@use 'shadows.scss';
|
|
24
|
-
@use 'utils.scss';
|
|
25
|
-
|
|
26
|
-
////
|
|
27
|
-
/// @group layers
|
|
28
|
-
////
|
|
29
|
-
|
|
30
|
-
/// Layer base styles.
|
|
31
|
-
///
|
|
32
|
-
/// @example scss
|
|
33
|
-
/// .selector {
|
|
34
|
-
/// @include bpk-layer;
|
|
35
|
-
/// }
|
|
36
|
-
|
|
37
|
-
@mixin bpk-layer(
|
|
38
|
-
$background-color: tokens.$bpk-color-white,
|
|
39
|
-
$border-color: tokens.$bpk-surface-highlight-day
|
|
40
|
-
) {
|
|
41
|
-
border: tokens.$bpk-one-pixel-rem solid $border-color;
|
|
42
|
-
background-color: $background-color;
|
|
43
|
-
|
|
44
|
-
@include radii.bpk-border-radius-sm;
|
|
45
|
-
@include shadows.bpk-box-shadow-lg;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/// Layer arrow base styles.
|
|
49
|
-
///
|
|
50
|
-
/// @example scss
|
|
51
|
-
/// .selector {
|
|
52
|
-
/// @include bpk-layer-arrow(1rem);
|
|
53
|
-
/// }
|
|
54
|
-
|
|
55
|
-
@mixin bpk-layer-arrow($arrow-size) {
|
|
56
|
-
position: absolute;
|
|
57
|
-
pointer-events: none;
|
|
58
|
-
|
|
59
|
-
&::before,
|
|
60
|
-
&::after {
|
|
61
|
-
position: absolute;
|
|
62
|
-
content: '';
|
|
63
|
-
display: block;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
&::before {
|
|
67
|
-
border: ($arrow-size + tokens.$bpk-one-pixel-rem) solid transparent;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
&::after {
|
|
71
|
-
border: $arrow-size solid transparent;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/// Layer top arrow.
|
|
76
|
-
///
|
|
77
|
-
/// @example scss
|
|
78
|
-
/// .selector {
|
|
79
|
-
/// @include bpk-layer-arrow(1rem);
|
|
80
|
-
/// @include bpk-layer-arrow-top(1rem);
|
|
81
|
-
/// }
|
|
82
|
-
|
|
83
|
-
@mixin bpk-layer-arrow-top(
|
|
84
|
-
$arrow-size,
|
|
85
|
-
$arrow-color: tokens.$bpk-color-white,
|
|
86
|
-
$border-color: tokens.$bpk-color-sky-gray-tint-06
|
|
87
|
-
) {
|
|
88
|
-
bottom: 100%;
|
|
89
|
-
width: ($arrow-size * 2);
|
|
90
|
-
height: $arrow-size;
|
|
91
|
-
|
|
92
|
-
&::before {
|
|
93
|
-
top: -1 * ($arrow-size + tokens.$bpk-one-pixel-rem);
|
|
94
|
-
margin-left: -1 * tokens.$bpk-one-pixel-rem;
|
|
95
|
-
border-bottom-color: $border-color;
|
|
96
|
-
|
|
97
|
-
@include utils.bpk-rtl {
|
|
98
|
-
margin-right: -1 * tokens.$bpk-one-pixel-rem;
|
|
99
|
-
margin-left: 0;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
&::after {
|
|
104
|
-
top: -1 * $arrow-size + tokens.$bpk-one-pixel-rem;
|
|
105
|
-
border-bottom-color: $arrow-color;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/// Layer right arrow.
|
|
110
|
-
///
|
|
111
|
-
/// @example scss
|
|
112
|
-
/// .selector {
|
|
113
|
-
/// @include bpk-layer-arrow(1rem);
|
|
114
|
-
/// @include bpk-layer-arrow-right(1rem);
|
|
115
|
-
/// }
|
|
116
|
-
|
|
117
|
-
@mixin bpk-layer-arrow-right(
|
|
118
|
-
$arrow-size,
|
|
119
|
-
$arrow-color: tokens.$bpk-color-white,
|
|
120
|
-
$border-color: tokens.$bpk-color-sky-gray-tint-06
|
|
121
|
-
) {
|
|
122
|
-
left: 100%;
|
|
123
|
-
width: $arrow-size;
|
|
124
|
-
height: ($arrow-size * 2);
|
|
125
|
-
|
|
126
|
-
&::before {
|
|
127
|
-
right: -1 * ($arrow-size + tokens.$bpk-one-pixel-rem);
|
|
128
|
-
margin-top: -1 * tokens.$bpk-one-pixel-rem;
|
|
129
|
-
border-left-color: $border-color;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
&::after {
|
|
133
|
-
right: -1 * $arrow-size + tokens.$bpk-one-pixel-rem;
|
|
134
|
-
border-left-color: $arrow-color;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
/// Layer bottom arrow.
|
|
139
|
-
///
|
|
140
|
-
/// @example scss
|
|
141
|
-
/// .selector {
|
|
142
|
-
/// @include bpk-layer-arrow(1rem);
|
|
143
|
-
/// @include bpk-layer-arrow-bottom(1rem);
|
|
144
|
-
/// }
|
|
145
|
-
|
|
146
|
-
@mixin bpk-layer-arrow-bottom(
|
|
147
|
-
$arrow-size,
|
|
148
|
-
$arrow-color: tokens.$bpk-color-white,
|
|
149
|
-
$border-color: tokens.$bpk-color-sky-gray-tint-06
|
|
150
|
-
) {
|
|
151
|
-
top: 100%;
|
|
152
|
-
width: ($arrow-size * 2);
|
|
153
|
-
height: $arrow-size;
|
|
154
|
-
|
|
155
|
-
&::before {
|
|
156
|
-
bottom: -1 * ($arrow-size + tokens.$bpk-one-pixel-rem);
|
|
157
|
-
margin-left: -1 * tokens.$bpk-one-pixel-rem;
|
|
158
|
-
border-top-color: $border-color;
|
|
159
|
-
|
|
160
|
-
@include utils.bpk-rtl {
|
|
161
|
-
margin-right: -1 * tokens.$bpk-one-pixel-rem;
|
|
162
|
-
margin-left: 0;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
&::after {
|
|
167
|
-
bottom: -1 * $arrow-size + tokens.$bpk-one-pixel-rem;
|
|
168
|
-
border-top-color: $arrow-color;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
/// Layer left arrow.
|
|
173
|
-
///
|
|
174
|
-
/// @example scss
|
|
175
|
-
/// .selector {
|
|
176
|
-
/// @include bpk-layer-arrow(1rem);
|
|
177
|
-
/// @include bpk-layer-arrow-left(1rem);
|
|
178
|
-
/// }
|
|
179
|
-
|
|
180
|
-
@mixin bpk-layer-arrow-left(
|
|
181
|
-
$arrow-size,
|
|
182
|
-
$arrow-color: tokens.$bpk-color-white,
|
|
183
|
-
$border-color: tokens.$bpk-color-sky-gray-tint-06
|
|
184
|
-
) {
|
|
185
|
-
right: 100%;
|
|
186
|
-
width: $arrow-size;
|
|
187
|
-
height: ($arrow-size * 2);
|
|
188
|
-
|
|
189
|
-
&::before {
|
|
190
|
-
left: -1 * ($arrow-size + tokens.$bpk-one-pixel-rem);
|
|
191
|
-
margin-top: -1 * tokens.$bpk-one-pixel-rem;
|
|
192
|
-
border-right-color: $border-color;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
&::after {
|
|
196
|
-
left: -1 * $arrow-size + tokens.$bpk-one-pixel-rem;
|
|
197
|
-
border-right-color: $arrow-color;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'utils.scss';
|
|
22
|
-
|
|
23
|
-
/// RTL aware leading margin
|
|
24
|
-
///
|
|
25
|
-
/// @param {string} $margin The desired leading margin.
|
|
26
|
-
/// @param {boolean} $resetOppositeMargin [true] Whether to reset the opposite margin to 0.
|
|
27
|
-
///
|
|
28
|
-
/// @content
|
|
29
|
-
///
|
|
30
|
-
/// @example scss
|
|
31
|
-
/// .selector {
|
|
32
|
-
/// @include bpk-margin-leading(bpk-spacing-base());
|
|
33
|
-
/// }
|
|
34
|
-
@mixin bpk-margin-leading($margin, $resetOppositeMargin: true) {
|
|
35
|
-
margin-left: $margin;
|
|
36
|
-
|
|
37
|
-
@if $resetOppositeMargin {
|
|
38
|
-
margin-right: 0;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@include utils.bpk-rtl {
|
|
42
|
-
@if $resetOppositeMargin {
|
|
43
|
-
margin-left: 0;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
margin-right: $margin;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/// RTL aware trailing margin
|
|
51
|
-
///
|
|
52
|
-
/// @param {string} $margin The desired trailing margin.
|
|
53
|
-
/// @param {boolean} $resetOppositeMargin [true] Whether to reset the opposite margin to 0.
|
|
54
|
-
///
|
|
55
|
-
/// @content
|
|
56
|
-
///
|
|
57
|
-
/// @example scss
|
|
58
|
-
/// .selector {
|
|
59
|
-
/// @include bpk-margin-trailing(bpk-spacing-base());
|
|
60
|
-
/// }
|
|
61
|
-
@mixin bpk-margin-trailing($margin, $resetOppositeMargin: true) {
|
|
62
|
-
@if $resetOppositeMargin {
|
|
63
|
-
margin-left: 0;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
margin-right: $margin;
|
|
67
|
-
|
|
68
|
-
@include utils.bpk-rtl {
|
|
69
|
-
margin-left: $margin;
|
|
70
|
-
|
|
71
|
-
@if $resetOppositeMargin {
|
|
72
|
-
margin-right: 0;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'tokens.scss';
|
|
22
|
-
@use 'borders.scss';
|
|
23
|
-
@use 'radii.scss';
|
|
24
|
-
|
|
25
|
-
////
|
|
26
|
-
/// @group panels
|
|
27
|
-
////
|
|
28
|
-
|
|
29
|
-
/// Basic panel.
|
|
30
|
-
///
|
|
31
|
-
/// @example scss
|
|
32
|
-
/// .selector {
|
|
33
|
-
/// @include @bpk-panel()
|
|
34
|
-
/// }
|
|
35
|
-
@mixin bpk-panel {
|
|
36
|
-
display: block;
|
|
37
|
-
background-color: tokens.$bpk-card-background-color;
|
|
38
|
-
|
|
39
|
-
@include radii.bpk-border-radius-md;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/// Adds padding to panels. Modifies the bpk-panel mixin.
|
|
43
|
-
///
|
|
44
|
-
/// @require {mixin} bpk-panel
|
|
45
|
-
///
|
|
46
|
-
/// @example scss
|
|
47
|
-
/// .selector {
|
|
48
|
-
/// @include bpk-panel();
|
|
49
|
-
/// @include bpk-panel--padded();
|
|
50
|
-
/// }
|
|
51
|
-
@mixin bpk-panel--padded {
|
|
52
|
-
padding: tokens.$bpk-card-padding;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/// Controls if we have a keyline or not on the panel
|
|
56
|
-
/// Modifies the bpk-panel mixin.
|
|
57
|
-
///
|
|
58
|
-
/// @require {mixin} bpk-panel
|
|
59
|
-
///
|
|
60
|
-
/// @example scss
|
|
61
|
-
/// .selector {
|
|
62
|
-
/// @include bpk-panel();
|
|
63
|
-
/// @include bpk-panel--keyline();
|
|
64
|
-
/// }
|
|
65
|
-
@mixin bpk-panel--keyline {
|
|
66
|
-
@include borders.bpk-border-sm(tokens.$bpk-panel-border-color);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/// Makes panel full width by removing the border radius
|
|
70
|
-
/// Modifies the bpk-panel mixin.
|
|
71
|
-
///
|
|
72
|
-
/// @require {mixin} bpk-panel
|
|
73
|
-
///
|
|
74
|
-
/// @example scss
|
|
75
|
-
/// .selector {
|
|
76
|
-
/// @include bpk-panel();
|
|
77
|
-
/// @include bpk-panel--full-width();
|
|
78
|
-
/// }
|
|
79
|
-
@mixin bpk-panel--full-width {
|
|
80
|
-
border-radius: 0;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/// Sets the keyline to only show on the top and bottom when full
|
|
84
|
-
///
|
|
85
|
-
/// @require {mixin} bpk-panel
|
|
86
|
-
///
|
|
87
|
-
/// @example scss
|
|
88
|
-
/// .selector {
|
|
89
|
-
/// @include bpk-panel();
|
|
90
|
-
/// @include bpk-panel--full-width-keyline();
|
|
91
|
-
/// }
|
|
92
|
-
@mixin bpk-panel--full-width-keyline {
|
|
93
|
-
box-shadow:
|
|
94
|
-
tokens.$bpk-panel-border-color 0 -1 * tokens.$bpk-one-pixel-rem 0 0 inset,
|
|
95
|
-
tokens.$bpk-panel-border-color 0 tokens.$bpk-one-pixel-rem 0 0 inset;
|
|
96
|
-
}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'tokens.scss';
|
|
22
|
-
|
|
23
|
-
////
|
|
24
|
-
/// @group radii
|
|
25
|
-
////
|
|
26
|
-
|
|
27
|
-
/// Extra small border radius.
|
|
28
|
-
///
|
|
29
|
-
/// @example scss
|
|
30
|
-
/// .selector {
|
|
31
|
-
/// @include bpk-border-radius-xs();
|
|
32
|
-
/// }
|
|
33
|
-
|
|
34
|
-
@mixin bpk-border-radius-xs {
|
|
35
|
-
border-radius: tokens.$bpk-border-radius-xs;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/// Small border radius.
|
|
39
|
-
///
|
|
40
|
-
/// @example scss
|
|
41
|
-
/// .selector {
|
|
42
|
-
/// @include bpk-border-radius-sm();
|
|
43
|
-
/// }
|
|
44
|
-
|
|
45
|
-
@mixin bpk-border-radius-sm {
|
|
46
|
-
border-radius: tokens.$bpk-border-radius-sm;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/// Medium border radius.
|
|
50
|
-
///
|
|
51
|
-
/// @example scss
|
|
52
|
-
/// .selector {
|
|
53
|
-
/// @include bpk-border-radius-md();
|
|
54
|
-
/// }
|
|
55
|
-
|
|
56
|
-
@mixin bpk-border-radius-md {
|
|
57
|
-
border-radius: tokens.$bpk-border-radius-md;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/// Large border radius.
|
|
61
|
-
///
|
|
62
|
-
/// @example scss
|
|
63
|
-
/// .selector {
|
|
64
|
-
/// @include bpk-border-radius-lg();
|
|
65
|
-
/// }
|
|
66
|
-
|
|
67
|
-
@mixin bpk-border-radius-lg {
|
|
68
|
-
border-radius: tokens.$bpk-border-radius-lg;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
/// Extra large border radius.
|
|
72
|
-
///
|
|
73
|
-
/// @example scss
|
|
74
|
-
/// .selector {
|
|
75
|
-
/// @include bpk-border-radius-xl();
|
|
76
|
-
/// }
|
|
77
|
-
|
|
78
|
-
@mixin bpk-border-radius-xl {
|
|
79
|
-
border-radius: tokens.$bpk-border-radius-xl;
|
|
80
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Backpack - Skyscanner's Design System
|
|
3
|
-
*
|
|
4
|
-
* Copyright 2016 Skyscanner Ltd
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* stylelint-disable at-rule-disallowed-list */
|
|
20
|
-
|
|
21
|
-
@use 'tokens.scss';
|
|
22
|
-
|
|
23
|
-
////
|
|
24
|
-
/// @group scroll-indicator
|
|
25
|
-
////
|
|
26
|
-
|
|
27
|
-
/// Scroll indicator utility.
|
|
28
|
-
///
|
|
29
|
-
/// @access private
|
|
30
|
-
|
|
31
|
-
@mixin _bpk-scroll-indicator($gradient-color, $direction: 'left') {
|
|
32
|
-
$gradient-direction: if($direction == 'left', 90deg, 270deg);
|
|
33
|
-
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: 0;
|
|
36
|
-
bottom: 0;
|
|
37
|
-
content: ' ';
|
|
38
|
-
display: block;
|
|
39
|
-
z-index: 1;
|
|
40
|
-
width: tokens.bpk-spacing-xl();
|
|
41
|
-
background-image: linear-gradient(
|
|
42
|
-
$gradient-direction,
|
|
43
|
-
rgba($gradient-color, 1),
|
|
44
|
-
rgba($gradient-color, 0)
|
|
45
|
-
);
|
|
46
|
-
pointer-events: none;
|
|
47
|
-
|
|
48
|
-
@if $direction == 'left' {
|
|
49
|
-
left: 0;
|
|
50
|
-
} @else {
|
|
51
|
-
right: 0;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/// Left-sided scroll indicator.
|
|
56
|
-
///
|
|
57
|
-
/// @example scss
|
|
58
|
-
/// .selector {
|
|
59
|
-
/// @include bpk-scroll-indicator-left($bpk-color-grey-100);
|
|
60
|
-
/// }
|
|
61
|
-
|
|
62
|
-
@mixin bpk-scroll-indicator-left($gradient-color) {
|
|
63
|
-
&::before {
|
|
64
|
-
@include _bpk-scroll-indicator($gradient-color, 'left');
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
/// Right-sided scroll indicator.
|
|
69
|
-
///
|
|
70
|
-
/// @example scss
|
|
71
|
-
/// .selector {
|
|
72
|
-
/// @include bpk-scroll-indicator-right($bpk-color-grey-100);
|
|
73
|
-
/// }
|
|
74
|
-
|
|
75
|
-
@mixin bpk-scroll-indicator-right($gradient-color) {
|
|
76
|
-
&::after {
|
|
77
|
-
@include _bpk-scroll-indicator($gradient-color, 'right');
|
|
78
|
-
}
|
|
79
|
-
}
|