diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-07-31 23:59:17 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-08-01 00:18:42 +0200 |
commit | a0d01119794655dc789eda94905304679de070e8 (patch) | |
tree | ea47c70306d15e6b187ce0d37f9dd2936ee9b29d | |
parent | 7ab46b73bd8f0c1435b2bb0fcd7d90d0f308874e (diff) |
Fix toot styling on public pages
The public pages now use CSS from the WebUI to style toots, but the glitch-soc UI is widely different. Hack around that for now by hardcoding upstream-like values.
-rw-r--r-- | app/javascript/flavours/glitch/styles/stream_entries.scss | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/stream_entries.scss b/app/javascript/flavours/glitch/styles/stream_entries.scss index 9e2aa720c..0094f672c 100644 --- a/app/javascript/flavours/glitch/styles/stream_entries.scss +++ b/app/javascript/flavours/glitch/styles/stream_entries.scss @@ -143,3 +143,43 @@ } } } + +// Styling from upstream's WebUI, as public pages use the same layout +.embed, +.public-layout { + .status { + .status__info .status__display-name { + display: block; + max-width: 100%; + padding-right: 25px; + } + + .status__info { + font-size: 15px; + display: initial; + } + + .status__relative-time { + color: $dark-text-color; + float: right; + font-size: 14px; + width: auto; + margin: initial; + padding: initial; + } + + .status__info .status__display-name { + display: block; + max-width: 100%; + padding-right: 25px; + margin: initial; + } + + .status__avatar { + height: 48px; + position: absolute; + width: 48px; + margin: initial; + } + } +} |