diff options
| author | Henry Jameson <me@hjkos.com> | 2020-11-02 21:08:22 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-11-02 21:08:22 +0200 |
| commit | b6a8ca44ef84b6fb78958a2af3bffd467804a061 (patch) | |
| tree | 7c22b70a6668b03c893c5efcdde327686719b899 /src | |
| parent | bdf2f36f11a0768dd21c28ba149de4d5e4cc2ad5 (diff) | |
added comment
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/chat/chat.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/components/chat/chat.scss b/src/components/chat/chat.scss index 4abd94a1..aef58495 100644 --- a/src/components/chat/chat.scss +++ b/src/components/chat/chat.scss @@ -144,8 +144,14 @@ top: 0; margin-top: 0; border-radius: 0; - background: linear-gradient(to top, var(--panel), var(--panel)), - linear-gradient(to top, var(--bg), var(--bg)); + + /* This practically overlays the panel heading color over panel background + * color. This is needed because we allow transparent panel background and + * it doesn't work well in this "disjointed panel header" case + */ + background: + linear-gradient(to top, var(--panel), var(--panel)), + linear-gradient(to top, var(--bg), var(--bg)); height: 50px; } |
