-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Adapt better to narrow screens #1633
Labels
A11y
A-Room-View
O-Occasional
Affects or can be seen by some users regularly or most users rarely
T-Enhancement
Milestone
Comments
Rough sample styles: /* Hide link previews (TODO: switch them off) */
.mx_LinkPreviewWidget {
display: none
}
@media screen and (max-width: 800px) {
/* Reduce spacing */
.mx_EventTile_avatar {
display: none
}
.mx_EventTile {
margin-left: 0;
margin-top: 5px;
}
.mx_EventTile_line {
margin-left: 12px;
margin-right: 10px;
}
.mx_MatrixChat_middlePanel {
padding-right: 0px !important;
padding-left: 5px !important;
}
.mx_RoomView_statusAreaBox {
min-height: 0;
}
.mx_RoomStatusBar {
margin-top: 0;
min-height: 0;
}
.mx_RightPanel {
display: none;
}
.mx_MessageComposer_avatar {
padding-right: 10px;
padding-left: 10px;
}
.mx_MessageComposer_upload,
.mx_MessageComposer_voicecall,
.mx_MessageComposer_videocall {
padding-left: 3px;
padding-right: 3px;
}
} |
Closed
Thanks - totally agreed we need a narrower mode; will look at incorporating this. Thanks! |
completely hiding the userlist has now landed on /develop. |
This was referenced Jul 30, 2017
Closed
Example of how bad Riot is right now with the memberlist: https://twitter.com/Obijuan_cube/status/1239860893539864576 |
Closed
Closed
Compact link previews is tracked by #7897 Related issues: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A11y
A-Room-View
O-Occasional
Affects or can be seen by some users regularly or most users rarely
T-Enhancement
Narrow screens are common on mobile, and when using vector in a narrow sidebar-style window on a desktop. Here are some styling ideas that could help to maximize the content visible on small screens:
The text was updated successfully, but these errors were encountered: