From d9758157b9bb8e00b77f20ad87b07e85d80797d5 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 30 Jul 2019 13:10:35 -0500 Subject: add an optional blinking cursor to console formatting --- app/views/layouts/application.html.haml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/views/layouts') diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 1110942ac..f21d8dd97 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -81,5 +81,10 @@ .status__content .emojione { width: 24px !important; height: 24px !important } .status__content .hoverplay:hover { padding-left: 24px !important } + -if current_account&.user_shows_cursor? + :css + span.cursor { animation: t_blink 1s linear infinite } + span.cursor::before { content: " █" } + %body{ class: body_classes } = content_for?(:content) ? yield(:content) : yield -- cgit