You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I checked your Demo website as a guest and also as a demo user. I noticed the way in which your buttons were being displayed when you have enough that needs to be presented on multiple lines (as it would appear).
These buttons are controlled via the CSS btn, btn-light and btn-sm and they have been assigned padding, but not margins. In order to separate them, a simple whitespace has been applied (don't understand why when already using CSS).
These buttons display too close together when needing to wrap on the same line because the width distinguishes the space available.
What I find interesting is this happens when logged in, yet when viewing as guest, you get a nicer layout with spacing:
Although, this spacing is not equal because of the use of whitespace instead of correctly using CSS Margins.
View as guest and made the window smaller by shrinking the width of your browser OR
View as registered user and you can see the tags as an example
Expected behavior
I would have expected the spacing to be equal around the button styling using CSS. Instead, no control of margins have been applied when buttons need to wrap. This causes them to be way closer (touching) and makes it much harder to read and distinguish.
I would expect for the whitespace not to be used (not really needed when already using CSS)
When you have also removed the whitespace, you get this much better layout:
Allowing the CSS wrap condition to correctly perform its job but not using whitespace to add layout, and controlling how close each button is when wrapped one under the other.
Logs
N/A
Screenshots
Already provided above.
LinkAce version
Demo Website
Setup Method
Docker
Operating System
Linux (Ubuntu, CentOS,...)
Client details
Ubuntu
Firefox
Chromium
Brave
All recent and up to date as of this issue.
The text was updated successfully, but these errors were encountered:
Thanks for the feedback. I did view as guest but also logged in to the guest demo site too. So not just guest viewing, but also logged in too. However, the guest pages look good when not logged in but when you do log in, the layout becomes skewed as demonstrated above. It will be a simple fix as I only added a single line in the CSS property to fix everything regardless because it would appear, the CSS is used across both statuses.
Again, thanks for coming back to me. Appreciate your time.
Bug Description
I checked your Demo website as a guest and also as a demo user. I noticed the way in which your buttons were being displayed when you have enough that needs to be presented on multiple lines (as it would appear).
These buttons are controlled via the CSS
btn
,btn-light
andbtn-sm
and they have been assigned padding, but not margins. In order to separate them, a simplewhitespace
has been applied (don't understand why when already using CSS).These buttons display too close together when needing to wrap on the same line because the width distinguishes the space available.
What I find interesting is this happens when logged in, yet when viewing as guest, you get a nicer layout with spacing:
Although, this spacing is not equal because of the use of
whitespace
instead of correctly using CSS Margins.How to reproduce
Expected behavior
I would have expected the spacing to be equal around the button styling using CSS. Instead, no control of margins have been applied when buttons need to wrap. This causes them to be way closer (touching) and makes it much harder to read and distinguish.
whitespace
not to be used (not really needed when already using CSS)Example code used:
You are clearly using
word-wrap: break-word;
conditions within the.card
elements already.btn
element id to create1px
margin and remove thewhitespace
:Example change:
When you have also removed the
whitespace
, you get this much better layout:Allowing the CSS wrap condition to correctly perform its job but not using
whitespace
to add layout, and controlling how close each button is when wrapped one under the other.Logs
Screenshots
Already provided above.
LinkAce version
Demo Website
Setup Method
Docker
Operating System
Linux (Ubuntu, CentOS,...)
Client details
All recent and up to date as of this issue.
The text was updated successfully, but these errors were encountered: