Browse Source

Always place the tools above the highlighter (#5736)

Component highlight indicators display above RTE tools on hover. This sets the z-index 1 above the indicators.
pull/5750/head
Brian Ernesto 2 years ago
committed by GitHub
parent
commit
f1165ce0e3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/styles/scss/_gjs_canvas.scss

4
src/styles/scss/_gjs_canvas.scss

@ -271,6 +271,10 @@ $guide_pad: 5px !default;
outline: none;
z-index: 1;
}
/* Always place the tools above the highlighter */
##{$app-prefix}tools {
z-index: 2;
}
/* This simulate body behaviour */
// > div:first-child {

Loading…
Cancel
Save