hide square area outline

Hide the square area outline when the drawing area is not reactive.

Fix 58677dc1.
This commit is contained in:
abakkk 2020-10-16 12:15:12 +02:00
parent 28a9d79d03
commit baf5e7c968
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
/* square area */
.draw-on-your-screen-square-area {
.draw-on-your-screen .draw-on-your-screen-square-area {
outline: 2px solid rgba(255, 0, 0, 0.7);
}
.draw-on-your-screen-square-area:insensitive {
.draw-on-your-screen:insensitive .draw-on-your-screen-square-area {
outline: none;
}