[Libreoffice-commits] online.git: loleaflet/dist

Jan Holesovsky kendy at collabora.com
Thu Jun 25 09:32:02 PDT 2015


 loleaflet/dist/leaflet.css |   30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

New commits:
commit be6b89d1aa3a53e7c54e20b2ed1305da71f53d9a
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Thu Jun 25 18:30:49 2015 +0200

    More tweaks wrt. cursor blinking.

diff --git a/loleaflet/dist/leaflet.css b/loleaflet/dist/leaflet.css
index 8b938e8..c9ddf55 100644
--- a/loleaflet/dist/leaflet.css
+++ b/loleaflet/dist/leaflet.css
@@ -560,55 +560,55 @@
 
 .blinking-cursor {
   color: #2E3D48;
-  -webkit-animation: 1s blink linear 0s infinite;
-  -moz-animation: 1s blink linear 0s infinite;
-  -ms-animation: 1s blink linear 0s infinite;
-  -o-animation: 1s blink linear 0s infinite;
-  animation: 1s blink linear 0s infinite;
+  -webkit-animation: 1s blink step-end 0s infinite;
+  -moz-animation: 1s blink step-end 0s infinite;
+  -ms-animation: 1s blink step-end 0s infinite;
+  -o-animation: 1s blink step-end 0s infinite;
+  animation: 1s blink step-end 0s infinite;
 }
 
 @keyframes "blink" {
   from, to {
-    color: transparent;
+    color: black;
   }
   50% {
-    color: black;
+    color: transparent;
   }
 }
 
 @-moz-keyframes blink {
   from, to {
-    color: transparent;
+    color: black;
   }
   50% {
-    color: black;
+    color: transparent;
   }
 }
 
 @-webkit-keyframes "blink" {
   from, to {
-    color: transparent;
+    color: black;
   }
   50% {
-    color: black;
+    color: transparent;
   }
 }
 
 @-ms-keyframes "blink" {
   from, to {
-    color: transparent;
+    color: black;
   }
   50% {
-    color: black;
+    color: transparent;
   }
 }
 
 @-o-keyframes "blink" {
   from, to {
-    color: transparent;
+    color: black;
   }
   50% {
-    color: black;
+    color: transparent;
   }
 }
 


More information about the Libreoffice-commits mailing list