aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat/chat.scss
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-11-06 14:57:50 +0200
committerShpuld Shpuldson <shp@cock.li>2020-11-06 14:57:50 +0200
commit56c1d65384603c9a57e16210aca23829235c7893 (patch)
tree99fc4634e8d613e1b630f671a858539bda35f124 /src/components/chat/chat.scss
parent0206b2bcc5cceae937bdad1922c57f8c84621d26 (diff)
parentdbeecd18acfc14920c49324e08600dadba7127d7 (diff)
Merge branch 'develop' into feat/favicon-badge
Diffstat (limited to 'src/components/chat/chat.scss')
-rw-r--r--src/components/chat/chat.scss10
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 {