Skip to content

Commit

Permalink
Update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
mirka committed Sep 14, 2022
1 parent 21b6b8b commit a21809a
Showing 1 changed file with 72 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
.emotion-8 {
background: #fff;
border: 1px solid transparent;
border-radius: 2px;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -53,6 +52,7 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
transition: transform 100ms linear;
min-height: 36px;
border-color: #757575;
border-radius: 2px;
}
@media ( prefers-reduced-motion: reduce ) {
Expand All @@ -61,21 +61,20 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
}
}
.emotion-8:hover {
border-color: #757575;
}
.emotion-8:focus-within {
border-color: var( --wp-admin-theme-color-darker-10, #006ba1);
box-shadow: 0 0 0 0.5px var( --wp-admin-theme-color, #007cba);
outline: none;
z-index: 1;
}
.emotion-8:hover {
border-color: #757575;
}
.emotion-10 {
background: #1e1e1e;
border-radius: 2px;
box-shadow: transparent;
left: 0;
position: absolute;
top: 2px;
Expand Down Expand Up @@ -142,6 +141,10 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
user-select: none;
width: 100%;
z-index: 2;
width: 30px;
padding-left: 0;
padding-right: 0;
color: #fff;
}
@media ( prefers-reduced-motion: reduce ) {
Expand All @@ -158,23 +161,70 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
background: #fff;
}
.emotion-14:active {
background: transparent;
}
.emotion-15 {
font-size: 13px;
line-height: 1;
}
.emotion-19 {
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
background: transparent;
border: none;
border-radius: 2px;
color: #757575;
fill: currentColor;
cursor: pointer;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-family: inherit;
height: 100%;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
line-height: 100%;
outline: none;
padding: 0 12px;
position: relative;
text-align: center;
-webkit-transition: background 160ms linear,color 160ms linear,font-weight 60ms linear;
transition: background 160ms linear,color 160ms linear,font-weight 60ms linear;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 100%;
z-index: 2;
width: 30px;
padding-left: 0;
padding-right: 0;
}
.emotion-16 {
color: #fff;
@media ( prefers-reduced-motion: reduce ) {
.emotion-19 {
transition-duration: 0ms;
}
}
.emotion-16:active {
background: transparent;
.emotion-19::-moz-focus-inner {
border: 0;
}
.emotion-17 {
font-size: 13px;
line-height: 1;
.emotion-19:active {
background: #fff;
}
<div
Expand Down Expand Up @@ -215,7 +265,7 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
<button
aria-checked="true"
aria-label="Uppercase"
class="emotion-14 emotion-15 components-toggle-group-control-option-base emotion-16"
class="emotion-14 components-toggle-group-control-option-base"
data-value="uppercase"
data-wp-c16t="true"
data-wp-component="ToggleGroupControlOptionBase"
Expand All @@ -224,7 +274,7 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
tabindex="0"
>
<div
class="emotion-17 emotion-18"
class="emotion-15 emotion-16"
>
<svg
aria-hidden="true"
Expand All @@ -247,7 +297,7 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
<button
aria-checked="false"
aria-label="Lowercase"
class="emotion-14 emotion-15 components-toggle-group-control-option-base"
class="emotion-19 components-toggle-group-control-option-base"
data-value="lowercase"
data-wp-c16t="true"
data-wp-component="ToggleGroupControlOptionBase"
Expand All @@ -256,7 +306,7 @@ exports[`ToggleGroupControl should render correctly with icons 1`] = `
tabindex="-1"
>
<div
class="emotion-17 emotion-18"
class="emotion-15 emotion-16"
>
<svg
aria-hidden="true"
Expand Down Expand Up @@ -319,7 +369,6 @@ exports[`ToggleGroupControl should render correctly with text options 1`] = `
.emotion-8 {
background: #fff;
border: 1px solid transparent;
border-radius: 2px;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -331,6 +380,7 @@ exports[`ToggleGroupControl should render correctly with text options 1`] = `
transition: transform 100ms linear;
min-height: 36px;
border-color: #757575;
border-radius: 2px;
}
@media ( prefers-reduced-motion: reduce ) {
Expand All @@ -339,17 +389,17 @@ exports[`ToggleGroupControl should render correctly with text options 1`] = `
}
}
.emotion-8:hover {
border-color: #757575;
}
.emotion-8:focus-within {
border-color: var( --wp-admin-theme-color-darker-10, #006ba1);
box-shadow: 0 0 0 0.5px var( --wp-admin-theme-color, #007cba);
outline: none;
z-index: 1;
}
.emotion-8:hover {
border-color: #757575;
}
.emotion-10 {
display: -webkit-inline-box;
display: -webkit-inline-flex;
Expand Down

0 comments on commit a21809a

Please sign in to comment.