From 42e2cc6a7e40dffcfb6ae7e822ade671bac13821 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Thu, 11 Apr 2019 23:26:14 +0200 Subject: [PATCH] Fixes #1530. Muted user can't close MUC participants view Fixed by showing the participants sidebar hide button on larger screen sizes as well. --- css/converse.css | 4 ---- sass/_chatrooms.scss | 14 -------------- 2 files changed, 18 deletions(-) diff --git a/css/converse.css b/css/converse.css index 79fed49c3..494924feb 100644 --- a/css/converse.css +++ b/css/converse.css @@ -11818,10 +11818,6 @@ body.converse-fullscreen { #conversejs.converse-mobile .chatroom .room-invite span .invited-contact { margin: 0 0 0.5em -1px; } -@media (min-width: 768px) { - .chatroom .box-flyout .occupants .occupants-header .hide-occupants { - display: none; } } - #conversejs .chatbox.headlines .chat-head.chat-head-chatbox { background-color: var(--headline-head-color); } diff --git a/sass/_chatrooms.scss b/sass/_chatrooms.scss index a71c53475..e35e81385 100644 --- a/sass/_chatrooms.scss +++ b/sass/_chatrooms.scss @@ -512,17 +512,3 @@ } } } - -@include media-breakpoint-up(md) { - .chatroom { - .box-flyout { - .occupants { - .occupants-header { - .hide-occupants { - display: none; - } - } - } - } - } -}