Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Requires APC Customize UI++ Extension for VSCodium/VSCode
- "apc.stylesheet": {
- ".monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor" : {
- "transition": "all 0.15s"
- },
- ".monaco-editor .cursors-layer.cursor-underline-style > .cursor": {
- "border-bottom": "2px solid rgb(220, 138, 120)",
- "border-top": "2px solid rgb(220, 138, 120)",
- "border-radius" : "3px",
- "background": "transparent !important",
- "height": "1rem !important",
- "width": "1em !important",
- "overflow": "visible !important",
- "margin-top": "-1rem",
- "box-sizing": "content-box",
- "animations-name": "none !important"
- },
- ".cursor-smooth" : {
- "animation": "vdos-right 0.5s ease-in-out 0s 20 alternate;"
- },
- ".monaco-editor .cursors-layer.cursor-underline-style" : {
- "overflow":"visible"
- },
- ".monaco-editor .cursors-layer.cursor-underline-style > .cursor::before": {
- "height":"0.9rem !important",
- "background": "transparent !important",
- "border-right-width": "2px !important",
- "border-right-style": "solid !important",
- "border-right":"2px solid rgb(220, 138, 120)",
- "border-bottom" : "3px solid red",
- "border-radius" : "2px",
- "display": "block",
- "content": "' '",
- "position": "absolute",
- "box-sizing": "content-box",
- "width": "1em",
- "left": "-1em",
- "transition" : "all 1s !important",
- "animation": "monaco-cursor-smooth 0.5s ease-in-out 0s infinite alternate"
- },
- "@keyframes vdos-right": {
- "0%" : {
- "opacity" : "100%"
- }
- }
- },
- "editor.cursorSmoothCaretAnimation": "on",
- "editor.cursorBlinking": "smooth",
- "editor.cursorStyle": "underline",
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement