-
Notifications
You must be signed in to change notification settings - Fork 30
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
What is the css class of the white border to the right of the left sidebar? #10
Comments
Doing this and adding a border-right to left side panel does the trick but is there a better way? (Edited for accuracy) |
@SilverMarcs I just had a quick look, and I think targeting We can make this really obvious by changing the colour of the .mx_MatrixChat > .mx_ResizeHandle, .mx_RightPanel_ResizeWrapper .mx_ResizeHandle {
box-shadow: #f00 1px 0px 0px 0px inset;
} So I think you could just use the following rule (very similar to the one you had, but doesn't touch .mx_MatrixChat > .mx_ResizeHandle, .mx_RightPanel_ResizeWrapper .mx_ResizeHandle {
-webkit-box-shadow: none;
box-shadow: none;
} |
Thanks. |
This is what i mean. Marked with pink arrow
The text was updated successfully, but these errors were encountered: