Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Channel Leader Bar is in the way of Thread Header #14443

Merged
merged 1 commit into from
May 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/theme/client/imports/components/contextual-bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
@media (width <= 1100px) {
.contextual-bar {
position: absolute;
z-index: 10;
right: 0;
}

Expand Down
7 changes: 5 additions & 2 deletions app/theme/client/imports/general/base_old.css
Original file line number Diff line number Diff line change
Expand Up @@ -5366,7 +5366,6 @@ rc-old select,

.room-leader .chat-now {
position: absolute;
top: 15px;
right: 25px;

width: 80px;
Expand Down Expand Up @@ -5395,14 +5394,18 @@ rc-old select,
right: 0;
left: 0;

display: flex;

visibility: visible;
flex-direction: column;

height: 57px;
padding-bottom: 8px;

transition: transform 0.15s cubic-bezier(0.5, 0, 0.1, 1), visibility 0.15s cubic-bezier(0.5, 0, 0.1, 1);

border-bottom: 1px solid;
border-bottom: 1px solid var(--color-gray-lightest);
justify-content: center;

&.message:hover {
background-color: #ffffff;
Expand Down