diff options
| author | 2022-09-29 21:48:17 +0200 | |
|---|---|---|
| committer | 2022-09-29 21:48:17 +0200 | |
| commit | fc6203a904795d8d74df8ab2d66f8769f2d2a96f (patch) | |
| tree | b95ad10612257071a3ae636ee7ca9fb8d63c5a2d /p/themes/Ansum | |
| parent | fedbda4f6acbc5f5c09ad90a7b7972595695a3de (diff) | |
all themes (#4663)
Diffstat (limited to 'p/themes/Ansum')
| -rw-r--r-- | p/themes/Ansum/_reader-view.scss | 26 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.css | 8 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 8 |
3 files changed, 26 insertions, 16 deletions
diff --git a/p/themes/Ansum/_reader-view.scss b/p/themes/Ansum/_reader-view.scss index 3390985b0..81046aa89 100644 --- a/p/themes/Ansum/_reader-view.scss +++ b/p/themes/Ansum/_reader-view.scss @@ -2,15 +2,21 @@ /*=== READER VIEW */ /*================*/ -#stream.reader .flux { - padding: 0 0 50px; - background: variables.$grey-light; - color: variables.$main-font-color; - border: none; -} +#stream.reader { + .flux { + background: variables.$grey-light; + color: variables.$main-font-color; + border: none; + + .content { + background-color: variables.$white; + border: none; -#stream.reader .flux .author { - margin: 0 0 10px; - color: variables.$grey-medium-dark; - font-size: 90%; + .author { + margin: 0 0 10px; + color: variables.$grey-medium-dark; + font-size: 90%; + } + } + } } diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index c04a16937..ad48d4f8f 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -1104,13 +1104,15 @@ main.prompt { /*=== READER VIEW */ /*================*/ #stream.reader .flux { - padding: 0 0 50px; background: #f5f0ec; color: #363330; border: none; } - -#stream.reader .flux .author { +#stream.reader .flux .content { + background-color: #fff; + border: none; +} +#stream.reader .flux .content .author { margin: 0 0 10px; color: #ba9; font-size: 90%; diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index 623897993..2052a1598 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -1104,13 +1104,15 @@ main.prompt { /*=== READER VIEW */ /*================*/ #stream.reader .flux { - padding: 0 0 50px; background: #f5f0ec; color: #363330; border: none; } - -#stream.reader .flux .author { +#stream.reader .flux .content { + background-color: #fff; + border: none; +} +#stream.reader .flux .content .author { margin: 0 0 10px; color: #ba9; font-size: 90%; |
