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

Icons only for quick links #327

Open
jmain33 opened this issue Mar 17, 2024 · 7 comments
Open

Icons only for quick links #327

jmain33 opened this issue Mar 17, 2024 · 7 comments
Labels
enhancement New feature or request Not planned yet Might be worked on in the future

Comments

@jmain33
Copy link

jmain33 commented Mar 17, 2024

It would be good to have the choice to show only icons without text.

I can delete the text for all icons, but it then is not easy to revert back to having the names shown.

{I tried tinkering with the CSS editor but couldn't make this work}

@victrme
Copy link
Owner

victrme commented Mar 17, 2024

A good trick to find the best CSS selector is to use the element inspector, select the element you want, and copy the highest selector you see in the devtools:

image

Which means this is the CSS:

#linkblocks.large li.block span {
  display: none;
}

@victrme
Copy link
Owner

victrme commented Mar 17, 2024

I was wondering how we could hide titles for all styles without adding another full option, but I don't know how. It is going to stay CSS only for now !

@victrme victrme added enhancement New feature or request Not planned yet Might be worked on in the future labels Mar 17, 2024
@jmain33
Copy link
Author

jmain33 commented Mar 18, 2024

Thanks for the tip. I'm not too adept at CSS coding.
This is what I was using, lol:

li.block > a > span {
    display: none;
}

@victrme
Copy link
Owner

victrme commented Mar 18, 2024

This selector is not bad, it would have worked if it wasn't for #linkblocks !

@jmain33
Copy link
Author

jmain33 commented Apr 1, 2024

Looking for a bit of CSS help…
Needing to have larger elements on the screen for interaction, I increased the scaling %tage in Windows. Of course, this doesn't exclude the options menu of Bonjourr, which I now find to be overinflated for my needs.

My attempts to scale down the menu result in it either not being the full length of the page or skewing everything out of proportion. Could you please provide me with some CSS coding assistance, to reduce the size of the settings menu?

@victrme
Copy link
Owner

victrme commented Apr 2, 2024

That's tricky, most of the sizes in the menu are in px (absolute size) because we want it to stay the same no matter what.

I think it would be easier to zoom out the page, and change the interface font size how you want it.

@jmain33
Copy link
Author

jmain33 commented Apr 2, 2024

I've done exactly as you suggested. There's no problem using it how you say, thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Not planned yet Might be worked on in the future
Projects
None yet
Development

No branches or pull requests

2 participants