-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Make middlepanel width optionally customisable #1371
Comments
This is a regression. It's not only a problem on 4K monitors (where that screenshot was taken) |
For Browser user I have this wide css design: @-moz-document url-prefix("https://riot.im/app/"), url-prefix("https://riot.im/develop/"), url-prefix("https://riot.im/beta/"), url-prefix("https://riot.im/staging/")
{
.mx_RoomView_messageListWrapper
{
max-width: 100% !important;
}
.mx_MessageComposer_wrapper
{
max-width: 100% !important;
}
.mx_RoomHeader .mx_RoomHeader_wrapper
{
max-width: 100% !important;
}
.mx_RoomView .mx_RoomView_auxPanel
{
max-width: 100% !important;
max-height: 74% !important;
}
.mx_UserSettings
{
max-width: 100% !important;
}
.mx_TopUnreadMessagesBar
{
max-width: 100% !important;
}
.mx_RoomDirectory
{
max-width: 87% !important;
}
.mx_HomePage
{
max-width: 87% !important;
}
.mx_HomePage_header
{
max-width: 78% !important;
}
.mx_Dialog
{
max-width: 100% !important;
border-radius: 5px !important;
}
.mx_UserSettings_toggle
{
margin-bottom: 6px !important;
}
.mx_UserSettings_advanced
{
line-height: 183% !important;
}
.mx_UserNotifSettings_pushRulesTable
{
line-height: 172% !important;
}
.mx_RoomView_statusAreaBox
{
max-width: 100% !important;
}
} |
Quickfix electron wide version: Insert the following code to the head section of your client via the console (bottom of the head): <style>
.mx_RoomView_messageListWrapper
{
max-width: 100% !important;
}
.mx_MessageComposer_wrapper
{
max-width: 100% !important;
}
.mx_RoomHeader .mx_RoomHeader_wrapper
{
max-width: 100% !important;
}
.mx_RoomView .mx_RoomView_auxPanel
{
max-width: 100% !important;
max-height: 74% !important;
}
.mx_UserSettings
{
max-width: 100% !important;
}
.mx_TopUnreadMessagesBar
{
max-width: 100% !important;
}
.mx_RoomDirectory
{
max-width: 87% !important;
}
.mx_HomePage
{
max-width: 87% !important;
}
.mx_HomePage_header
{
max-width: 78% !important;
}
.mx_Dialog
{
max-width: 100% !important;
border-radius: 5px !important;
}
.mx_UserSettings_toggle
{
margin-bottom: 6px !important;
}
.mx_UserSettings_advanced
{
line-height: 183% !important;
}
.mx_UserNotifSettings_pushRulesTable
{
line-height: 172% !important;
}
.mx_RoomView_statusAreaBox
{
max-width: 100% !important;
}
</style> |
So... can we get this addressed mainline please? :) Milestone maybe? |
Current balance: 0.0 ETH |
@lampholder @ara4n would this be a toggle full/default or something more...granular? |
I'm picturing something that lets you resize with width of the room list panel and the right hand panel, most likely coupled with addressing the bug (design decision?) that the timeline text has a maximum width (so that it fills whatever space is left between the LHS and the RHS). @ara4n what are your thoughts on this? |
@lampholder does this still need work, more than happy to help |
We did this by proxy of making the left and right sides resizable. |
Created by @ matthew:matrix.org.
The text was updated successfully, but these errors were encountered: