diff options
| author | laurawilsonri <laura_wilson@brown.edu> | 2019-02-16 15:34:20 -0500 |
|---|---|---|
| committer | laurawilsonri <laura_wilson@brown.edu> | 2019-02-16 15:34:20 -0500 |
| commit | c835f47a32336c12e6ad7497b72694bb06dc2487 (patch) | |
| tree | 0fc567d0d3c30c6e2e89e7a71747aff543bf1caf /src/client/views/collections/CollectionFreeFormView.scss | |
| parent | 9f8653ab3d7f82a5d82b925bf339bef8d6723f5c (diff) | |
added blinking preview text cursor on click
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionFreeFormView.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.scss b/src/client/views/collections/CollectionFreeFormView.scss index e9d134e7b..78d332322 100644 --- a/src/client/views/collections/CollectionFreeFormView.scss +++ b/src/client/views/collections/CollectionFreeFormView.scss @@ -17,4 +17,15 @@ box-sizing: border-box; width: 100%; height: 100%; +} + +//this is an animation for the blinking cursor! +@keyframes blink { + 0% {opacity: 0} + 49%{opacity: 0} + 50% {opacity: 1} +} + +#prevCursor { + animation: blink 1s infinite; }
\ No newline at end of file |
