From eb30a63c819ca50ebbc896eb293a0745dcd043be Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Sat, 12 Jan 2019 19:49:41 +0100 Subject: timeline message working --- assets/css/home.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'assets') diff --git a/assets/css/home.css b/assets/css/home.css index 9d1c5a7..b58ad5b 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -258,6 +258,16 @@ main.user table form { + + + +li.self.event { + text-align: right; +} + + + + @media (max-width: 600px) { main.home .summary, main.home .linkfrom, main.home .linkto, main.home .delete, main.home .datecreation, main.home .date, main.home .log, main.home .secure, main.home .tag { display: none; @@ -274,3 +284,5 @@ main.user table form { } + + -- cgit v1.2.3 From 8130427ec508f1d66553b52052c840c311081061 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Mon, 14 Jan 2019 19:24:19 +0100 Subject: fix save art out of session --- assets/css/edit.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'assets') diff --git a/assets/css/edit.css b/assets/css/edit.css index 7f7553c..5598aa5 100644 --- a/assets/css/edit.css +++ b/assets/css/edit.css @@ -212,7 +212,7 @@ details { } input#fontsize { - width: 36px; + width: 50px; } span#headid {color: white;} -- cgit v1.2.3 From de195c2fca2f4b77a54be68fb58cd0ccee10a5b7 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Tue, 15 Jan 2019 03:59:32 +0100 Subject: timeline is ok for messaging --- assets/css/home.css | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) (limited to 'assets') diff --git a/assets/css/home.css b/assets/css/home.css index b58ad5b..79f82d1 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -261,10 +261,57 @@ main.user table form { -li.self.event { + + +main.timeline ul { + list-style: none; + padding-inline-start: 0; +} + + +li.self.user { text-align: right; } +main.timeline li.event .eline { + display: inline-block; + margin: 0; +} + + + +main.timeline p.eline { + background-color: white; + border-radius: 10px; + padding: 3px 7px; + font-family: sans-serif; +} + + + +main.timeline textarea#message { + width: 100%; + max-width: unset; +} + + + +li.event:hover span.details { + display: inline; +} + +span.details { + display: none; +} + +main.timeline li.event { + margin: 7px; +} + + + + + -- cgit v1.2.3