diff options
| author | Shpuld Shpludson <shp@cock.li> | 2020-11-03 17:09:10 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2020-11-03 17:09:10 +0000 |
| commit | b485d21ba91629931f2846eafaed7ec04d73c8c8 (patch) | |
| tree | 5252e878a9536b9ee94a3d44062f758f2bbc11d7 /src/components/chat/chat.scss | |
| parent | 22bc0c08402c2aea96ac33680dcc2cef3109ded9 (diff) | |
| parent | 4e4b258c547fd4dba2be02aa66a1fd3aa2bb58ef (diff) | |
Merge branch 'fix-chat-badge' into 'develop'
Few more minor fixes
See merge request pleroma/pleroma-fe!1275
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 { |
