diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-01-15 03:59:32 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-15 03:59:32 +0100 |
commit | de195c2fca2f4b77a54be68fb58cd0ccee10a5b7 (patch) | |
tree | a0717b936d4b1474cc766b85578e42d94ad7e512 /assets | |
parent | 8130427ec508f1d66553b52052c840c311081061 (diff) | |
download | wcms-de195c2fca2f4b77a54be68fb58cd0ccee10a5b7.tar.gz wcms-de195c2fca2f4b77a54be68fb58cd0ccee10a5b7.zip |
timeline is ok for messaging
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/home.css | 49 |
1 files changed, 48 insertions, 1 deletions
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; +} + + + + + |