@phillips/seldon 1.262.0 → 1.264.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.
|
@@ -48,7 +48,7 @@ input[type='radio'].#{$px}-skeleton {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
button.#{$px}-skeleton {
|
|
51
|
-
border-radius: $radius-
|
|
51
|
+
border-radius: $radius-xs !important;
|
|
52
52
|
|
|
53
53
|
svg path {
|
|
54
54
|
fill: transparent !important;
|
|
@@ -58,7 +58,7 @@ button.#{$px}-skeleton {
|
|
|
58
58
|
.#{$px}-toggle-input {
|
|
59
59
|
.#{$px}-skeleton::before,
|
|
60
60
|
.#{$px}-skeleton::after {
|
|
61
|
-
border-radius: $radius-
|
|
61
|
+
border-radius: $radius-xs !important;
|
|
62
62
|
}
|
|
63
63
|
.#{$px}-skeleton::after {
|
|
64
64
|
display: none !important;
|
|
@@ -10,7 +10,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
10
10
|
align-items: center;
|
|
11
11
|
background-color: $pure-black;
|
|
12
12
|
border: 2px solid transparent;
|
|
13
|
-
border-radius: $radius-
|
|
13
|
+
border-radius: $radius-xs;
|
|
14
14
|
color: $pure-white;
|
|
15
15
|
cursor: pointer;
|
|
16
16
|
display: inline-flex;
|
|
@@ -98,7 +98,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
&:focus-visible {
|
|
101
|
-
@include focus-ring($border-radius: $radius-
|
|
101
|
+
@include focus-ring($border-radius: $radius-xs);
|
|
102
102
|
|
|
103
103
|
svg {
|
|
104
104
|
fill: $pure-white;
|
|
@@ -140,7 +140,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
140
140
|
z-index: 0;
|
|
141
141
|
|
|
142
142
|
&::before {
|
|
143
|
-
border-radius: $radius-
|
|
143
|
+
border-radius: $radius-xs;
|
|
144
144
|
box-sizing: border-box;
|
|
145
145
|
content: '';
|
|
146
146
|
display: inline-block;
|
|
@@ -154,7 +154,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
&:focus-visible {
|
|
157
|
-
@include focus-ring($border-radius: $radius-
|
|
157
|
+
@include focus-ring($border-radius: $radius-xs);
|
|
158
158
|
|
|
159
159
|
background-color: $pure-white;
|
|
160
160
|
}
|
|
@@ -188,7 +188,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
188
188
|
|
|
189
189
|
&:focus-visible {
|
|
190
190
|
background-color: $white-100;
|
|
191
|
-
border-radius: $radius-
|
|
191
|
+
border-radius: $radius-xs;
|
|
192
192
|
outline: 2px solid $warning-default;
|
|
193
193
|
outline-offset: 4px;
|
|
194
194
|
}
|
|
@@ -252,7 +252,7 @@ $destructive-hover-disabled: color.adjust($warning-default, $alpha: -0.5);
|
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
&:focus-visible {
|
|
255
|
-
@include focus-ring($border-radius: $radius-
|
|
255
|
+
@include focus-ring($border-radius: $radius-xs);
|
|
256
256
|
|
|
257
257
|
background-color: $pure-white;
|
|
258
258
|
}
|
|
@@ -81,14 +81,7 @@
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
@media (max-width: calc($breakpoint-md - 1px)) {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
height: 0.25rem;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&__label,
|
|
90
|
-
&__hover-tooltip {
|
|
91
|
-
display: none;
|
|
92
|
-
}
|
|
84
|
+
// Design requirement: ProgressBar should not be visible at all on mobile.
|
|
85
|
+
display: none;
|
|
93
86
|
}
|
|
94
87
|
}
|