diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-11-06 14:57:50 +0200 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-11-06 14:57:50 +0200 |
| commit | 56c1d65384603c9a57e16210aca23829235c7893 (patch) | |
| tree | 99fc4634e8d613e1b630f671a858539bda35f124 /src/components/chat/chat.scss | |
| parent | 0206b2bcc5cceae937bdad1922c57f8c84621d26 (diff) | |
| parent | dbeecd18acfc14920c49324e08600dadba7127d7 (diff) | |
Merge branch 'develop' into feat/favicon-badge
Diffstat (limited to 'src/components/chat/chat.scss')
| -rw-r--r-- | src/components/chat/chat.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/chat/chat.scss b/src/components/chat/chat.scss index 787514c8..aef58495 100644 --- a/src/components/chat/chat.scss +++ b/src/components/chat/chat.scss @@ -138,11 +138,21 @@ } .chat-view-heading { + box-sizing: border-box; position: static; z-index: 9999; top: 0; margin-top: 0; border-radius: 0; + + /* 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; } .scrollable-message-list { |
