[Editor] Make the border of the resizers slightly rounded

It's a part of the UX specifications. There's a drawing issue in Firefox
(see bug https://bugzilla.mozilla.org/1853288) but setting the
background-clip property to content-box seems to be a good workaround.
This commit is contained in:
Calixte Denizet 2023-09-19 09:56:54 +02:00
parent 5ac40b71c0
commit f7870c04ae

View File

@ -254,7 +254,9 @@
width: var(--resizer-size);
height: var(--resizer-size);
background: var(--resizer-bg-color);
background-clip: content-box;
border: var(--focus-outline-around);
border-radius: 2px;
position: absolute;
&.topLeft {