diff options
| author | bobzel <zzzman@gmail.com> | 2022-08-22 12:50:52 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-08-22 12:50:52 -0400 |
| commit | d8f2a45a95a14151d3484c3c14f72d217a818786 (patch) | |
| tree | c1e66f518367b28992b6ccc7f7adfca48db19725 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss | |
| parent | 96a15ed27e9b17a77e6cab72d4087ddfe6066d2a (diff) | |
made inkMasks animate when they are turned on /off. fixed inkStrokes to be interpolated when they have an activeFrame set.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss index 010132aa5..d80fcdfc3 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.scss @@ -20,15 +20,20 @@ pointer-events: none; } +.collectionfreeformview-mask-empty, .collectionfreeformview-mask { - mix-blend-mode: multiply; z-index: 5000; width: $INK_MASK_SIZE; height: $INK_MASK_SIZE; transform: translate($INK_MASK_SIZE_HALF, $INK_MASK_SIZE_HALF); - background-color: rgba(0, 0, 0, 0.7); pointer-events: none; position: absolute; + background-color: transparent; + transition: background-color 1s ease 0s; +} +.collectionfreeformview-mask { + mix-blend-mode: multiply; + background-color: rgba(0, 0, 0, 0.7); } .collectionfreeformview-viewdef { |
