@phillips/seldon 1.56.0 → 1.57.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/components/Button/types.d.ts +2 -1
- package/dist/components/Button/types.js +1 -1
- package/dist/components/IconButton/IconButton.d.ts +10 -1
- package/dist/components/IconButton/IconButton.js +22 -14
- package/dist/components/Pagination/Pagination.d.ts +5 -1
- package/dist/components/Pagination/Pagination.js +32 -30
- package/dist/scss/_vars.scss +3 -0
- package/dist/scss/components/Button/_button.scss +141 -36
- package/dist/scss/components/IconButton/_iconButton.scss +79 -25
- package/dist/scss/components/Pagination/_pagination.scss +1 -13
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var e = /* @__PURE__ */ ((r) => (r.primary = "primary", r.secondary = "secondary", r.ghost = "ghost", r))(e || {});
|
|
1
|
+
var e = /* @__PURE__ */ ((r) => (r.primary = "primary", r.secondary = "secondary", r.ghost = "ghost", r.tertiary = "tertiary", r))(e || {});
|
|
2
2
|
export {
|
|
3
3
|
e as ButtonVariants
|
|
4
4
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ButtonVariants } from '../Button/types';
|
|
1
2
|
export interface IconButtonProps extends Omit<React.HTMLAttributes<HTMLButtonElement>, 'children'> {
|
|
2
3
|
/**
|
|
3
4
|
* Button contents
|
|
@@ -7,6 +8,14 @@ export interface IconButtonProps extends Omit<React.HTMLAttributes<HTMLButtonEle
|
|
|
7
8
|
* How large should the button be?
|
|
8
9
|
*/
|
|
9
10
|
size?: 'sm' | 'md' | 'lg';
|
|
11
|
+
/**
|
|
12
|
+
* Mainly used for styling
|
|
13
|
+
*/
|
|
14
|
+
variant?: ButtonVariants;
|
|
15
|
+
/**
|
|
16
|
+
* Should the button be disabled?
|
|
17
|
+
*/
|
|
18
|
+
isDisabled?: boolean;
|
|
10
19
|
}
|
|
11
|
-
declare const IconButton: ({ children, size, className, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
declare const IconButton: ({ children, size, variant, isDisabled, className, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
21
|
export default IconButton;
|
|
@@ -1,21 +1,29 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import f from "../../node_modules/classnames/index.js";
|
|
3
|
+
import p from "../Button/Button.js";
|
|
4
4
|
import { getCommonProps as i } from "../../utils/index.js";
|
|
5
|
-
import { ButtonVariants as
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
import { ButtonVariants as l } from "../Button/types.js";
|
|
6
|
+
const C = ({
|
|
7
|
+
children: s,
|
|
8
|
+
size: r = "md",
|
|
9
|
+
variant: m = l.primary,
|
|
10
|
+
isDisabled: a = !1,
|
|
11
|
+
className: n,
|
|
12
|
+
...t
|
|
13
|
+
}) => {
|
|
14
|
+
const { className: o, ...e } = i(t, "IconButton");
|
|
15
|
+
return /* @__PURE__ */ c(
|
|
16
|
+
p,
|
|
10
17
|
{
|
|
11
|
-
...
|
|
12
|
-
variant:
|
|
13
|
-
className:
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
...e,
|
|
19
|
+
variant: m,
|
|
20
|
+
className: f(o, `${o}--${r}`, `${o}--${m}`, n),
|
|
21
|
+
isDisabled: a,
|
|
22
|
+
...t,
|
|
23
|
+
children: s
|
|
16
24
|
}
|
|
17
25
|
);
|
|
18
26
|
};
|
|
19
27
|
export {
|
|
20
|
-
|
|
28
|
+
C as default
|
|
21
29
|
};
|
|
@@ -36,6 +36,10 @@ export interface PaginationProps extends Omit<ComponentProps<'div'>, 'onChange'>
|
|
|
36
36
|
* Option next label
|
|
37
37
|
*/
|
|
38
38
|
nextLabel?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Option select aria-label
|
|
41
|
+
*/
|
|
42
|
+
selectLabel?: string;
|
|
39
43
|
}
|
|
40
44
|
/**
|
|
41
45
|
* ## Overview
|
|
@@ -46,5 +50,5 @@ export interface PaginationProps extends Omit<ComponentProps<'div'>, 'onChange'>
|
|
|
46
50
|
*
|
|
47
51
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-pagination--overview)
|
|
48
52
|
*/
|
|
49
|
-
declare const Pagination: ({ className, onChange, variant, options, value, isDisabled, previousLabel, nextLabel, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
+
declare const Pagination: ({ className, onChange, variant, options, value, isDisabled, previousLabel, nextLabel, selectLabel, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
50
54
|
export default Pagination;
|
|
@@ -1,60 +1,62 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import { getCommonProps as
|
|
4
|
-
import
|
|
5
|
-
import d from "
|
|
6
|
-
import u from "
|
|
7
|
-
const
|
|
1
|
+
import { jsxs as N, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import s from "../../node_modules/classnames/index.js";
|
|
3
|
+
import { getCommonProps as _, px as i } from "../../utils/index.js";
|
|
4
|
+
import P from "../Select/Select.js";
|
|
5
|
+
import d from "../../assets/chevronRight.svg.js";
|
|
6
|
+
import u from "../IconButton/IconButton.js";
|
|
7
|
+
const y = ({
|
|
8
8
|
className: f,
|
|
9
|
-
onChange:
|
|
9
|
+
onChange: n,
|
|
10
10
|
variant: g = "inline",
|
|
11
11
|
options: t = [],
|
|
12
12
|
value: r,
|
|
13
13
|
isDisabled: l,
|
|
14
14
|
previousLabel: $ = "Previous",
|
|
15
|
-
nextLabel:
|
|
15
|
+
nextLabel: b = "Next",
|
|
16
|
+
selectLabel: p = "Select",
|
|
16
17
|
...o
|
|
17
18
|
}) => {
|
|
18
|
-
const
|
|
19
|
-
return /* @__PURE__ */
|
|
19
|
+
const h = "pagination", { className: c, ...x } = _(o, "Pagination"), { id: m } = o;
|
|
20
|
+
return /* @__PURE__ */ N(
|
|
20
21
|
"div",
|
|
21
22
|
{
|
|
22
|
-
className:
|
|
23
|
-
...
|
|
23
|
+
className: s(`${i}-${h}`, { [`${c}__wrapper`]: c }, f),
|
|
24
|
+
...x,
|
|
24
25
|
...o,
|
|
25
26
|
children: [
|
|
26
|
-
/* @__PURE__ */
|
|
27
|
-
|
|
27
|
+
/* @__PURE__ */ e(
|
|
28
|
+
u,
|
|
28
29
|
{
|
|
29
|
-
className:
|
|
30
|
-
onClick: () =>
|
|
30
|
+
className: s(`${i}__pagination-button`, `${i}-left-arrow`),
|
|
31
|
+
onClick: () => n(t.at(t.findIndex((a) => a === r) - 1) || ""),
|
|
31
32
|
"data-testid": `${m}-previous-button`,
|
|
32
33
|
isDisabled: l,
|
|
33
34
|
"aria-label": $,
|
|
34
|
-
children: /* @__PURE__ */
|
|
35
|
+
children: /* @__PURE__ */ e(d, {})
|
|
35
36
|
}
|
|
36
37
|
),
|
|
37
|
-
/* @__PURE__ */
|
|
38
|
-
|
|
38
|
+
/* @__PURE__ */ e(
|
|
39
|
+
P,
|
|
39
40
|
{
|
|
40
|
-
className: g === "inline" && `${
|
|
41
|
+
className: g === "inline" && `${i}--inline-pagination`,
|
|
42
|
+
"aria-label": p,
|
|
41
43
|
value: r,
|
|
42
|
-
onChange: (a) =>
|
|
44
|
+
onChange: (a) => n(a == null ? void 0 : a.currentTarget.value, a),
|
|
43
45
|
"data-testid": `${m}-select-button`,
|
|
44
46
|
hideLabel: !0,
|
|
45
47
|
disabled: l,
|
|
46
|
-
children: t.map((a) => /* @__PURE__ */
|
|
48
|
+
children: t.map((a) => /* @__PURE__ */ e("option", { value: a, children: a }, a))
|
|
47
49
|
}
|
|
48
50
|
),
|
|
49
|
-
/* @__PURE__ */
|
|
50
|
-
|
|
51
|
+
/* @__PURE__ */ e(
|
|
52
|
+
u,
|
|
51
53
|
{
|
|
52
|
-
className: `${
|
|
53
|
-
onClick: () =>
|
|
54
|
+
className: `${i}__pagination-button`,
|
|
55
|
+
onClick: () => n(t[(t.findIndex((a) => a === r) + 1) % t.length] || ""),
|
|
54
56
|
"data-testid": `${m}-next-button`,
|
|
55
57
|
isDisabled: l,
|
|
56
|
-
"aria-label":
|
|
57
|
-
children: /* @__PURE__ */
|
|
58
|
+
"aria-label": b,
|
|
59
|
+
children: /* @__PURE__ */ e(d, {})
|
|
58
60
|
}
|
|
59
61
|
)
|
|
60
62
|
]
|
|
@@ -62,5 +64,5 @@ const S = ({
|
|
|
62
64
|
);
|
|
63
65
|
};
|
|
64
66
|
export {
|
|
65
|
-
|
|
67
|
+
y as default
|
|
66
68
|
};
|
package/dist/scss/_vars.scss
CHANGED
|
@@ -5,52 +5,123 @@
|
|
|
5
5
|
|
|
6
6
|
align-items: center;
|
|
7
7
|
background-color: $pure-black;
|
|
8
|
-
border:
|
|
9
|
-
border-radius:
|
|
10
|
-
color: white;
|
|
8
|
+
border: 1px solid transparent;
|
|
9
|
+
border-radius: 100px;
|
|
10
|
+
color: $pure-white;
|
|
11
11
|
cursor: pointer;
|
|
12
12
|
display: inline-flex;
|
|
13
|
+
font-weight: 600;
|
|
14
|
+
gap: $margin-xsm;
|
|
13
15
|
justify-content: center;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
padding: 0 $padding-md;
|
|
17
|
+
position: relative;
|
|
16
18
|
transition:
|
|
17
19
|
color 0.25s,
|
|
18
|
-
background-color 0.25s
|
|
19
|
-
|
|
20
|
+
background-color 0.25s;
|
|
21
|
+
|
|
22
|
+
svg {
|
|
23
|
+
fill: $pure-white;
|
|
24
|
+
|
|
25
|
+
path {
|
|
26
|
+
fill: $pure-white;
|
|
27
|
+
transition: 0.25s;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:hover {
|
|
32
|
+
background-color: $button-hover;
|
|
33
|
+
|
|
34
|
+
svg {
|
|
35
|
+
fill: $pure-white;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
20
38
|
|
|
21
|
-
&:hover,
|
|
22
39
|
&:focus-visible {
|
|
23
|
-
|
|
40
|
+
outline: 0.5px solid $pure-white;
|
|
41
|
+
outline-offset: -4.5px;
|
|
24
42
|
|
|
25
43
|
svg {
|
|
26
44
|
fill: $pure-white;
|
|
27
45
|
}
|
|
28
46
|
}
|
|
29
47
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
48
|
+
&--sm {
|
|
49
|
+
font-size: 0.75rem;
|
|
50
|
+
height: 44px;
|
|
51
|
+
|
|
52
|
+
svg {
|
|
53
|
+
height: 1rem;
|
|
54
|
+
width: 1rem;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&--md,
|
|
59
|
+
&--lg {
|
|
60
|
+
font-size: 1rem;
|
|
61
|
+
height: 48px;
|
|
62
|
+
|
|
63
|
+
svg {
|
|
64
|
+
height: 1.25rem;
|
|
65
|
+
width: 1.25rem;
|
|
66
|
+
}
|
|
35
67
|
}
|
|
36
68
|
|
|
37
69
|
&--secondary,
|
|
38
70
|
&--ghost {
|
|
39
|
-
background-color:
|
|
40
|
-
border: 1px solid;
|
|
41
|
-
color: $
|
|
71
|
+
background-color: $pure-white;
|
|
72
|
+
border: 1px solid $pure-black;
|
|
73
|
+
color: $pure-black;
|
|
74
|
+
mix-blend-mode: difference;
|
|
75
|
+
position: relative;
|
|
76
|
+
transition: border 0.3s ease-out;
|
|
77
|
+
|
|
78
|
+
&::before {
|
|
79
|
+
border-radius: 100px;
|
|
80
|
+
box-sizing: border-box;
|
|
81
|
+
content: '';
|
|
82
|
+
display: inline-block;
|
|
83
|
+
height: 0;
|
|
84
|
+
left: 50%;
|
|
85
|
+
position: absolute;
|
|
86
|
+
top: 50%;
|
|
87
|
+
transition: all 0.25s ease;
|
|
88
|
+
width: 0;
|
|
89
|
+
z-index: -2;
|
|
90
|
+
}
|
|
42
91
|
|
|
43
|
-
&:hover
|
|
44
|
-
|
|
92
|
+
&:hover {
|
|
93
|
+
background-color: transparent;
|
|
94
|
+
border: 1px solid transparent;
|
|
45
95
|
color: $pure-white;
|
|
46
96
|
|
|
47
97
|
svg {
|
|
48
98
|
fill: $pure-white;
|
|
99
|
+
|
|
100
|
+
path {
|
|
101
|
+
fill: $pure-white;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&::before {
|
|
106
|
+
background: $button-hover;
|
|
107
|
+
height: 100%;
|
|
108
|
+
left: 0;
|
|
109
|
+
top: 0;
|
|
110
|
+
width: 100%;
|
|
49
111
|
}
|
|
50
112
|
}
|
|
51
113
|
|
|
114
|
+
&:focus-visible {
|
|
115
|
+
background-color: $pure-white;
|
|
116
|
+
outline-color: $soft-black;
|
|
117
|
+
}
|
|
118
|
+
|
|
52
119
|
svg {
|
|
53
|
-
fill: $
|
|
120
|
+
fill: $pure-black;
|
|
121
|
+
|
|
122
|
+
path {
|
|
123
|
+
fill: $pure-black;
|
|
124
|
+
}
|
|
54
125
|
}
|
|
55
126
|
}
|
|
56
127
|
|
|
@@ -58,35 +129,69 @@
|
|
|
58
129
|
border-color: transparent;
|
|
59
130
|
}
|
|
60
131
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
132
|
+
&--tertiary {
|
|
133
|
+
background-color: transparent;
|
|
134
|
+
border: 0;
|
|
135
|
+
color: $pure-black;
|
|
136
|
+
height: 28px;
|
|
137
|
+
padding: 0;
|
|
65
138
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
139
|
+
svg {
|
|
140
|
+
fill: $pure-black;
|
|
69
141
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
142
|
+
path {
|
|
143
|
+
fill: $pure-black;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
73
146
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
147
|
+
&:hover {
|
|
148
|
+
background-color: transparent;
|
|
149
|
+
color: $button-hover;
|
|
150
|
+
|
|
151
|
+
svg {
|
|
152
|
+
fill: $button-hover;
|
|
153
|
+
|
|
154
|
+
path {
|
|
155
|
+
fill: $button-hover;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&:focus-visible {
|
|
161
|
+
background-color: $pure-white;
|
|
162
|
+
border-radius: 0;
|
|
163
|
+
outline-color: $soft-black;
|
|
164
|
+
outline-offset: 4.5px;
|
|
165
|
+
padding: 0 4px;
|
|
166
|
+
}
|
|
77
167
|
}
|
|
78
168
|
|
|
79
169
|
&:disabled {
|
|
80
170
|
background-color: $white;
|
|
81
|
-
border: 1px solid $
|
|
82
|
-
color: $
|
|
171
|
+
border: 1px solid $light-gray;
|
|
172
|
+
color: $light-gray;
|
|
83
173
|
cursor: default;
|
|
84
174
|
|
|
175
|
+
&:hover {
|
|
176
|
+
&::before {
|
|
177
|
+
all: unset;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
85
181
|
svg {
|
|
86
|
-
fill: $
|
|
182
|
+
fill: $light-gray;
|
|
183
|
+
|
|
184
|
+
path {
|
|
185
|
+
fill: $light-gray;
|
|
186
|
+
}
|
|
87
187
|
}
|
|
88
188
|
}
|
|
89
189
|
|
|
190
|
+
&--ghost:disabled,
|
|
191
|
+
&--tertiary:disabled {
|
|
192
|
+
border-color: transparent;
|
|
193
|
+
}
|
|
194
|
+
|
|
90
195
|
* {
|
|
91
196
|
margin: 0;
|
|
92
197
|
}
|
|
@@ -1,49 +1,103 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-icon-button {
|
|
4
|
-
|
|
5
|
-
border: unset;
|
|
6
|
-
color: $text-color;
|
|
7
|
-
min-width: unset;
|
|
8
|
-
padding: unset;
|
|
4
|
+
padding: 0;
|
|
9
5
|
|
|
10
6
|
& > svg {
|
|
11
|
-
|
|
12
|
-
height: 100%;
|
|
13
|
-
margin-inline-end: unset;
|
|
14
|
-
width: 100%;
|
|
7
|
+
position: absolute;
|
|
15
8
|
}
|
|
16
9
|
|
|
17
|
-
&:
|
|
18
|
-
|
|
19
|
-
|
|
10
|
+
&:focus {
|
|
11
|
+
&:focus {
|
|
12
|
+
outline: 0.5px solid $soft-black;
|
|
13
|
+
outline-offset: -4.5px;
|
|
14
|
+
|
|
15
|
+
svg {
|
|
16
|
+
fill: $pure-white;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&--primary,
|
|
22
|
+
&--ghost {
|
|
23
|
+
background: $pure-white;
|
|
24
|
+
color: $pure-black;
|
|
25
|
+
height: 44px;
|
|
26
|
+
width: 44px;
|
|
20
27
|
|
|
21
28
|
& > svg {
|
|
22
29
|
fill: $pure-black;
|
|
30
|
+
height: 100%;
|
|
31
|
+
height: 1.5rem;
|
|
32
|
+
margin-inline-end: unset;
|
|
33
|
+
position: absolute;
|
|
34
|
+
width: 100%;
|
|
35
|
+
width: 1.5rem;
|
|
36
|
+
|
|
37
|
+
path {
|
|
38
|
+
fill: $pure-black;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
svg {
|
|
44
|
+
fill: $pure-white;
|
|
45
|
+
|
|
46
|
+
path {
|
|
47
|
+
fill: $pure-white;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
23
50
|
}
|
|
24
51
|
}
|
|
25
52
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
53
|
+
&--ghost {
|
|
54
|
+
border-color: transparent;
|
|
55
|
+
|
|
56
|
+
svg {
|
|
57
|
+
fill: $keyline-gray;
|
|
58
|
+
|
|
59
|
+
path {
|
|
60
|
+
fill: $keyline-gray;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&--secondary,
|
|
66
|
+
&--tertiary {
|
|
67
|
+
height: 28px;
|
|
68
|
+
width: 28px;
|
|
29
69
|
|
|
30
70
|
& > svg {
|
|
31
71
|
fill: $pure-black;
|
|
72
|
+
height: 100%;
|
|
73
|
+
height: 1rem;
|
|
74
|
+
margin-inline-end: unset;
|
|
75
|
+
position: absolute;
|
|
76
|
+
width: 100%;
|
|
77
|
+
width: 1rem;
|
|
78
|
+
|
|
79
|
+
path {
|
|
80
|
+
fill: $pure-black;
|
|
81
|
+
}
|
|
32
82
|
}
|
|
33
83
|
}
|
|
34
84
|
|
|
35
|
-
&--
|
|
36
|
-
|
|
37
|
-
|
|
85
|
+
&--tertiary {
|
|
86
|
+
&:focus {
|
|
87
|
+
border-radius: 100px;
|
|
88
|
+
}
|
|
38
89
|
}
|
|
39
90
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
91
|
+
&:disabled {
|
|
92
|
+
background-color: $white;
|
|
93
|
+
border: 1px solid $light-gray;
|
|
44
94
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
95
|
+
svg {
|
|
96
|
+
fill: $light-gray;
|
|
97
|
+
|
|
98
|
+
path {
|
|
99
|
+
fill: $light-gray;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
48
102
|
}
|
|
49
103
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-pagination {
|
|
4
|
+
align-items: center;
|
|
4
5
|
display: flex;
|
|
5
6
|
flex-direction: row;
|
|
6
7
|
gap: $spacing-md;
|
|
@@ -47,10 +48,6 @@
|
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
.#{$px}__pagination-button {
|
|
50
|
-
background: none;
|
|
51
|
-
flex-direction: row;
|
|
52
|
-
padding: 0;
|
|
53
|
-
|
|
54
51
|
svg {
|
|
55
52
|
width: 2rem;
|
|
56
53
|
|
|
@@ -58,15 +55,6 @@
|
|
|
58
55
|
width: 1rem;
|
|
59
56
|
}
|
|
60
57
|
}
|
|
61
|
-
|
|
62
|
-
&:hover,
|
|
63
|
-
&:focus {
|
|
64
|
-
background: none;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
&:disabled {
|
|
68
|
-
border: none;
|
|
69
|
-
}
|
|
70
58
|
}
|
|
71
59
|
|
|
72
60
|
.#{$px}-left-arrow {
|