aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/PreviewCursor.scss
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-03-17 21:58:23 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-03-17 21:58:23 -0400
commit196c991ac857c8df4ddc5458c58c2f69169d5768 (patch)
tree2b86b959d80f45ccf8291f373923a757778e27da /src/client/views/collections/PreviewCursor.scss
parent44d669b46616e561aef874471d2740a4f205d9f0 (diff)
parent8433cc2b1c4d838930c3812d140678011b06e728 (diff)
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into schema_columns
Diffstat (limited to 'src/client/views/collections/PreviewCursor.scss')
-rw-r--r--src/client/views/collections/PreviewCursor.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/client/views/collections/PreviewCursor.scss b/src/client/views/collections/PreviewCursor.scss
new file mode 100644
index 000000000..a797411f6
--- /dev/null
+++ b/src/client/views/collections/PreviewCursor.scss
@@ -0,0 +1,18 @@
+
+.previewCursor {
+ color: black;
+ position: absolute;
+ transform-origin: left top;
+ pointer-events: none;
+}
+
+//this is an animation for the blinking cursor!
+@keyframes blink {
+ 0% {opacity: 0}
+ 49%{opacity: 0}
+ 50% {opacity: 1}
+}
+
+#previewCursor {
+ animation: blink 1s infinite;
+} \ No newline at end of file