From c262d411aedd1803e1a1ebefa0a356b61dbc50cd Mon Sep 17 00:00:00 2001 From: Gwenael-F <114469601+Gwenael-F@users.noreply.github.com> Date: Wed, 28 Sep 2022 09:55:21 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20code=20pour=20la=20fonctionnalit=C3=A9?= =?UTF-8?q?=20=E2=80=98Plus=20d'infos=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- copanier/static/app.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/copanier/static/app.css b/copanier/static/app.css index e362082..bb6a700 100644 --- a/copanier/static/app.css +++ b/copanier/static/app.css @@ -829,3 +829,17 @@ footer { } .big-button { margin: 2em;} + +/* Bouton plus d'infos */ + +.moreinfos { + cursor: pointer; +} + +.infos-hidden { + display: none; +} + +.moreinfos:focus+.infos-hidden { + display: block; +}