Skip to content

Commit

Permalink
fix(media): fix media full screen in servers chat and some aside bar …
Browse files Browse the repository at this point in the history
…bugs
  • Loading branch information
IvanM3x committed Sep 14, 2021
1 parent d8e4823 commit 1f0871f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/tailored/core/group/aside/Aside.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<font-awesome-icon :icon="['far', 'info-circle']" class="info-toggle" v-on:click="toggle" />
<div id="top-info">
<TypographyTitle :size="6" :text="selectedGroup.name" />
<InteractablesClose v-on:click="toggle" />
<InteractablesClose :action="toggle" />
</div>
<div id="actions">
<!-- <font-awesome-icon :icon="['far', 'user-plus']" class="action-icon" /> -->
Expand Down
4 changes: 2 additions & 2 deletions components/tailored/core/group/aside/Aside.less
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
background: @semitransparent-lightest-gradient !important;
cursor: pointer;
font-size: @tiny-icon-size !important;

&:hover {
background: @primary-gradient !important;
box-shadow: @primary-glow;
Expand All @@ -88,7 +88,7 @@
position: fixed;
right: 0px;
top: 0px;
z-index: 2;
z-index: @base-z-index + 101;
background: @dark-gradient;
}
.is-open {
Expand Down
2 changes: 1 addition & 1 deletion layouts/server/Server.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<InteractablesContextMenu v-if="$store.state.ui.contextMenuStatus"/>
<TailoredCoreServersList :servers="$mock.servers" :unreads="$mock.unreads" />
<TailoredServersSidebar :toggle="() => $data.sidebar = !$data.sidebar" />
<div class="dynamic-content">
<div :class="`dynamic-content ${$store.state.ui.fullscreen ? 'fullscreen-media' : ''}`">
<TailoredCoreStatusbar
id="statusbar"
:server="{ name: 'Test Server', address: '0x0', desc: 'Just a test server' }"
Expand Down

0 comments on commit 1f0871f

Please sign in to comment.