diff options
| author | bobzel <zzzman@gmail.com> | 2021-11-16 20:36:25 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-11-16 20:36:25 -0500 |
| commit | 80b27ef548936dbddaecc62f1068fff12546bf32 (patch) | |
| tree | 6b4490b77188ab5042f10e3f4998d63ddc5204c1 /src/client/views/InkStroke.scss | |
| parent | dcd2fd6f3030f7b57000536005f6005a0abaa482 (diff) | |
added textboxes inside closed ink strokes
Diffstat (limited to 'src/client/views/InkStroke.scss')
| -rw-r--r-- | src/client/views/InkStroke.scss | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/src/client/views/InkStroke.scss b/src/client/views/InkStroke.scss index 55e06c6ca..2127826b4 100644 --- a/src/client/views/InkStroke.scss +++ b/src/client/views/InkStroke.scss @@ -13,16 +13,25 @@ } } -.inkStroke { - mix-blend-mode: multiply; - stroke-linejoin: round; - stroke-linecap: round; - overflow: visible !important; - transform-origin: top left; - width: 100%; - height: 100%; +.inkStroke-wrapper { + .inkStroke { + mix-blend-mode: multiply; + stroke-linejoin: round; + stroke-linecap: round; + overflow: visible !important; + transform-origin: top left; + width: 100%; + height: 100%; - svg:not(:root) { - overflow: visible !important; - } + svg:not(:root) { + overflow: visible !important; + } + } + + .inkStroke-text { + position: absolute; + &:hover { + background: #9f9f9f0a; + } + } } |
