From d3127a2686b6b80fa901d6ff74bb2201553f2416 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Wed, 9 May 2012 09:39:41 -0700 Subject: [PATCH] slowed cursor blink down --- static/editor.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/editor.css b/static/editor.css index f26861567..9ce42143b 100644 --- a/static/editor.css +++ b/static/editor.css @@ -65,8 +65,8 @@ @-webkit-keyframes blink { 0% { opacity: .7; } - 49% { opacity: .7; } - 51% { opacity: 0; } + 60% { opacity: .7; } + 61% { opacity: 0; } 100% { opacity: 0; } } @@ -81,7 +81,7 @@ } .editor.focused .cursor.idle { - -webkit-animation: blink 0.6s; + -webkit-animation: blink 0.8s; -webkit-animation-iteration-count: infinite; }