From d52dfd14da06b413b9ea1fcab76fc0b0eba65014 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 5 Jun 2020 23:02:23 +0200 Subject: [PATCH] make quickedit save button sticky --- chloro/phyll/static/css/style.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/chloro/phyll/static/css/style.scss b/chloro/phyll/static/css/style.scss index 8650e13..473c22f 100644 --- a/chloro/phyll/static/css/style.scss +++ b/chloro/phyll/static/css/style.scss @@ -186,6 +186,9 @@ footer { div[contenteditable=true]:focus-within { outline: 1px solid gray; outline-offset: 3px; + ~ button#save { + display: block; + } } .style-popup { @@ -225,3 +228,9 @@ div[contenteditable=true]:focus-within { width: 2em; } } + +button#save { + position: sticky; + bottom: 10px; + display: none; +} -- 2.39.2