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

change the close min max 3 dots postion on macos #4

Open
everpromos opened this issue Aug 24, 2024 · 8 comments
Open

change the close min max 3 dots postion on macos #4

everpromos opened this issue Aug 24, 2024 · 8 comments

Comments

@everpromos
Copy link

How to move the 3 dots a bit higher on Macos
Screenshot 2024-08-24 at 10 01 34

@ImMainTheme
Copy link
Owner

ImMainTheme commented Aug 24, 2024

You may try to change line 48-50 from
#browser:not(.fullscreen) .mainbar > *, .mainbar .window-buttongroup.on-mainbar, .mainbar .window-buttongroup.on-mainbar > button{
to
#browser:not(.fullscreen) .mainbar > * {

@everpromos
Copy link
Author

Thanks, changed the css but the 3dots position still as before.
As long as I set the interface zoom to 135% its align center, but 135% is way too big for me, the max is 110% for my display.

thank you again for help.
Screen Shot 2024-08-25 at 07 44 05

@ImMainTheme
Copy link
Owner

I dont have a mac device to test. The following code is the last thing I can try to fix.
If that doesnt work, than I have no idea how to fix it right now.
I am so sorry about that.

Try to replace

#browser:not(.fullscreen) .mainbar > * {
	min-height: 34px !important;
	max-height: 34px !important;
	height: 34px !important;
	scale: 1 !important;
}

to

#browser:not(.fullscreen):not(.is-settingspage) {
	.toolbar-mainbar, &.win .window-buttongroup {
		min-height: 34px !important;
		max-height: 34px !important;
		height: 34px !important;
	}
	&.win .window-buttongroup {scale: 1 !important;}
	&.mac .window-buttongroup, &.mac .window-buttongroup button {
		align-items: center !important;
		align-self: center !important;
		max-height: 34px !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}

@everpromos
Copy link
Author

delete this part, its now perfect. thank you so much buddy.

@everpromos
Copy link
Author

everpromos commented Aug 25, 2024

I see the height too large if delete the whole part of codes, so i change the 34px of height to 43px, now seems much better.

===

#browser:not(.fullscreen) .mainbar > * {
min-height: 43px !important;
max-height: 43px !important;
height: 43px !important;
scale: 1 !important;
}

@everpromos
Copy link
Author

everpromos commented Aug 25, 2024

sorry, but its now the browser in fullscreen mode automatically every time when startup, by chance can you help. Thank you in advance!

@everpromos
Copy link
Author

Please ignore the message above, after re-install into a new profile, its now everything goes well. thank you @ImMainTheme

@ImMainTheme
Copy link
Owner

Thanks for the feedback. I world change that part as windows specific code for better mac implement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants