Merge branch 'feature/messages-header-name-ellipsis' of https://git.startinblox.com/applications/hubl into feature/messages-header-name-ellipsis
This commit is contained in:
commit
47e4698c0e
@ -17,7 +17,7 @@ if componentSet.has("autoLogin") || componentSet.has("registering")
|
|||||||
//- script(type="module" src="/lib/sib-auth/index.js" defer)
|
//- script(type="module" src="/lib/sib-auth/index.js" defer)
|
||||||
|
|
||||||
if componentSet.has("chat") || componentSet.has("circles") || componentSet.has("projects")
|
if componentSet.has("chat") || componentSet.has("circles") || componentSet.has("projects")
|
||||||
script(type="module" src="https://cdn.skypack.dev/@startinblox/component-chat@6.2" defer)
|
script(type="module" src="https://cdn.skypack.dev/@startinblox/component-chat@6.3" defer)
|
||||||
//- script(type="module" src="/lib/solid-xmpp-chat/dist/index.js" defer)
|
//- script(type="module" src="/lib/solid-xmpp-chat/dist/index.js" defer)
|
||||||
|
|
||||||
if componentSet.has("communities")
|
if componentSet.has("communities")
|
||||||
|
@ -1,8 +1,43 @@
|
|||||||
.chat-view {
|
#messages {
|
||||||
height: calc(100vh - 50px - 78px);
|
|
||||||
|
.chat-view {
|
||||||
|
height: calc(100vh - 50px - 78px);
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
height: calc(100vh - 50px - 68px);
|
|
||||||
|
height: calc(100vh - 50px - 58px);
|
||||||
|
|
||||||
|
.messages-header {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
solid-set-default[name="segment2"] {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
orbit-user-avatar {
|
||||||
|
height: 31px;
|
||||||
|
width: 31px;
|
||||||
|
}
|
||||||
|
|
||||||
|
solid-display-value[name="name"] {
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 210px;
|
||||||
|
}
|
||||||
|
|
||||||
|
solid-display-value[name="hyphen"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
solid-link {
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user