Hide the participants close button on larger screens

We need it for mobile where (eventually) we might have the participants
sidebar occupy the whole screen.
This commit is contained in:
JC Brand 2019-03-27 13:29:35 +01:00
parent 616731b323
commit e3468b3c41
2 changed files with 14 additions and 0 deletions

View File

@ -11800,6 +11800,10 @@ body.converse-fullscreen {
#conversejs.converse-mobile .chatroom .room-invite span .invited-contact {
margin: 0 0 0.5em -1px; }
@media (min-width: 768px) {
.occupants .occupants-header .hide-occupants {
display: none; } }
#conversejs .chatbox.headlines .chat-head.chat-head-chatbox {
background-color: var(--headline-head-color); }

View File

@ -494,3 +494,13 @@
}
}
}
@include media-breakpoint-up(md) {
.occupants {
.occupants-header {
.hide-occupants {
display: none;
}
}
}
}