aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionFreeFormView.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.scss')
-rw-r--r--src/client/views/collections/CollectionFreeFormView.scss116
1 files changed, 0 insertions, 116 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.scss b/src/client/views/collections/CollectionFreeFormView.scss
deleted file mode 100644
index 7012ce6b9..000000000
--- a/src/client/views/collections/CollectionFreeFormView.scss
+++ /dev/null
@@ -1,116 +0,0 @@
-@import "../global_variables";
-
-.collectionfreeformview-linkLine {
- stroke: black;
- stroke-width: 3;
- transform: translate(10000px,10000px);
- pointer-events: all;
-}
-.collectionfreeformview-svgCanvas{
- transform: translate(-10000px,-10000px);
- position: absolute;
- width: 20000px;
- height: 20000px;
- pointer-events: none;
-}
-.collectionfreeformview-container {
- .collectionfreeformview > .jsx-parser {
- position: absolute;
- height: 100%;
- width: 100%;
- }
-
- .inking-canvas {
- transform-origin: 50000px 50000px;
- }
- //nested freeform views
- // .collectionfreeformview-container {
- // background-image: linear-gradient(to right, $light-color-secondary 1px, transparent 1px),
- // linear-gradient(to bottom, $light-color-secondary 1px, transparent 1px);
- // background-size: 30px 30px;
- // }
-
- box-shadow: $intermediate-color 0.2vw 0.2vw 0.8vw;
- border: 0px solid $light-color-secondary;
- border-radius: $border-radius;
- box-sizing: border-box;
- position: relative;
- overflow: hidden;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- .collectionfreeformview {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- .inking-canvas {
- transform-origin: 50000px 50000px;
- }
- }
-}
-.collectionfreeformview-overlay {
- .collectionfreeformview > .jsx-parser {
- position: absolute;
- height: 100%;
- }
- .formattedTextBox-cont {
- background: $light-color-secondary;
- }
-
- .inking-canvas {
- transform-origin: 50000px 50000px;
- }
-
- opacity: 0.99;
- border: 0px solid transparent;
- border-radius: $border-radius;
- box-sizing: border-box;
- position:relative;
- overflow: hidden;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- .collectionfreeformview {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- .inking-canvas {
- transform-origin: 50000px 50000px;
- }
- .formattedTextBox-cont {
- background:yellow;
- }
- }
-}
-
-// selection border...?
-.border {
- border-style: solid;
- box-sizing: border-box;
- width: 98%;
- height: 98%;
- border-radius: $border-radius;
-}
-
-//this is an animation for the blinking cursor!
-@keyframes blink {
- 0% {
- opacity: 0;
- }
- 49% {
- opacity: 0;
- }
- 50% {
- opacity: 1;
- }
-}
-
-#prevCursor {
- animation: blink 1s infinite;
-}