We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774fd38 commit bbae9faCopy full SHA for bbae9fa
packages/block-editor/src/hooks/position.js
@@ -386,8 +386,8 @@ export function PositionPanel( props ) {
386
onChange={ ( { selectedItem } ) => {
387
onChangeType( selectedItem.value );
388
} }
389
- onFocus={ onMouseOverPosition }
390
- onBlur={ onMouseLeavePosition }
+ onMouseOver={ onMouseOverPosition }
+ onMouseOut={ onMouseLeavePosition }
391
size={ '__unstable-large' }
392
/>
393
</BaseControl>
packages/block-editor/src/hooks/position.scss
@@ -36,8 +36,7 @@
36
left: 0;
37
right: 0;
38
opacity: 0.5;
39
- border-color: var(--wp-admin-theme-color);
40
- border-style: dotted;
+ background-color: var(--wp-admin-theme-color);
41
box-sizing: border-box;
42
overflow: hidden;
43
}
0 commit comments