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

Menu is under the message content zone #928

Closed
Massedil opened this issue Feb 8, 2023 · 1 comment
Closed

Menu is under the message content zone #928

Massedil opened this issue Feb 8, 2023 · 1 comment
Labels
bug Something isn't working workaround

Comments

@Massedil
Copy link

Massedil commented Feb 8, 2023

Describe the bug
A clear and concise description of what the bug is.

To Reproduce

  1. Select one or more emails
  2. Click on the menu button

Expected behavior
The menu is on top of the message content zone.

Screenshots
1

Please complete the following information:

  • Browser: Firefox 109
  • SnappyMail Version: 2.25.4
@the-djmaze the-djmaze added bug Something isn't working workaround labels Feb 8, 2023
the-djmaze pushed a commit that referenced this issue Feb 8, 2023
@the-djmaze
Copy link
Owner

the-djmaze commented Feb 8, 2023

Currently i made a workaround but that disables the native resize corner.

The only way to get that back is using

#rl-right {
	display: flex;
	flex-grow: 1;
	width: 20%;
}
#V-MailMessageList {
	height: 100%;
	position: relative;
}
#V-MailMessageView {
	overflow: auto;
	width: 100%;
}
html.rl-no-preview-pane #V-MailMessageList {
	width: 100%;
}
.rl-side-preview-pane #V-MailMessageList .messageList {
	resize: horizontal; overflow: auto;
	min-width: 320px;
	max-width: 60%;
}

.rl-bottom-preview-pane #rl-right {
	flex-direction: column;
}
html.rl-bottom-preview-pane #V-MailMessageList {
	height: 300px;
}
.rl-bottom-preview-pane #V-MailMessageList .messageList {
	resize: vertical; overflow: auto;
	min-height: 200px;
	max-height: 60%;
}
html.rl-bottom-preview-pane #V-MailMessageView {
	height: 20%;
	flex-grow: 1;
}

But that also has some issues to solve.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working workaround
Projects
None yet
Development

No branches or pull requests

2 participants