Bringing some animations to Overleaf!
Currently only cursor in editor is animated ("smooth" typing like MS Word)
Animated overleaf by maicol07
Details
Authormaicol07
LicenseCC Zero
Categoryoverleaf
Created
Updated
Size891 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Animated overleaf
@version 20220822.17.35
@namespace userstyles.world/user/maicol07
@description Bringing some animations to Overleaf!
Currently only cursor in editor is animated ("smooth" typing like MS Word)
@author maicol07
@license CC Zero
==/UserStyle== */
/* ==UserStyle==
@name Animated overleaf
@namespace overleaf.com
@version 1.0.0
@description Bringing some animations to Overleaf!
@author maicol07
==/UserStyle== */
/**
Animated Overleaf cursor in editors
Inspiration from Smooth Cursorify: https://github.com/ewen-lbh/smooth-cursorify
*/
@-moz-document domain("overleaf.com") {
.ace_cursor, .cm-cursor, .CodeMirror-cursor {
transition: all 80ms;
}
.ace-overleaf .ace_marker-layer .ace_active-line, .ace-overleaf .ace_gutter-active-line, .cm-activeLine {
transition: all 110ms;
}
}