Use default cursor for everything in select and tree components (#49048)
This commit is contained in:
parent
780f27256f
commit
ac915f6905
|
@ -0,0 +1,5 @@
|
|||
Significance: patch
|
||||
Type: tweak
|
||||
Comment: Use default cursor for everything in select and tree components
|
||||
|
||||
|
|
@ -17,5 +17,8 @@
|
|||
|
||||
.woocommerce-tag {
|
||||
margin: 0;
|
||||
.woocommerce-tag__remove {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@ $control-size: $gap-large;
|
|||
svg.components-checkbox-control__checked,
|
||||
svg.components-checkbox-control__indeterminate,
|
||||
.components-checkbox-control__input[type='checkbox'] {
|
||||
cursor: default;
|
||||
&:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
|
@ -56,6 +57,7 @@ $control-size: $gap-large;
|
|||
align-items: center;
|
||||
|
||||
.components-button {
|
||||
cursor: default;
|
||||
padding: 0;
|
||||
height: $control-size;
|
||||
width: $control-size;
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
}
|
||||
&__button {
|
||||
width: 100%;
|
||||
cursor: default;
|
||||
&:hover,
|
||||
&:focus-within {
|
||||
outline: 1.5px solid var( --wp-admin-theme-color );
|
||||
|
|
Loading…
Reference in New Issue