X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=blobdiff_plain;f=editor.coffee;h=870c61bb6b91fb21b111b805509e99085fb3724d;hp=a5cd8d6fb2d4635d21b82cb246b072975c15f7a7;hb=dac5189783f7b082e0baf790c859aae9f28c5412;hpb=2c684978b6657acd19ac5a1a6016ed5761a260d2 diff --git a/editor.coffee b/editor.coffee index a5cd8d6..870c61b 100644 --- a/editor.coffee +++ b/editor.coffee @@ -245,14 +245,20 @@ outer_css = (args) -> ret += 'height: 1em;' # FIXME adjust for hight of text ret += 'width: 2px;' ret += 'background: #444;' - ret += '-webkit-animation: blink 1s steps(2, start) infinite;' - ret += 'animation: blink 1s steps(2, start) infinite;' + ret += '-webkit-animation: blink 1s linear infinite;' + ret += 'animation: blink 1s linear infinite;' ret += '}' ret += '@-webkit-keyframes blink {' - ret += 'to { visibility: hidden; }' + ret += '0% { background-color: rgba(0,0,0,0.7); }' + ret += '50% { background-color: rgba(0,0,0,0.7); }' + ret += '50.001% { background-color: rgba(255,255,255,0.7); }' + ret += '100% { background-color: rgba(255,255,255,0.7); }' ret += '}' ret += '@keyframes blink {' - ret += 'to { visibility: hidden; }' + ret += '0% { background-color: rgba(0,0,0,0.7); }' + ret += '50% { background-color: rgba(0,0,0,0.7); }' + ret += '50.001% { background-color: rgba(255,255,255,0.7); }' + ret += '100% { background-color: rgba(255,255,255,0.7); }' ret += '}' ret += '.ann_box {' ret += 'z-index: 5;'