Fixed responsive break-out points issue and refactored css files to use one set of media vars

in #utopian-io6 years ago

Hello, In this development contribution I will report a issue I fixed for the awesome Busy.org website.


contribution9.png

The issue was that at the responsive break-out points (768px and 998px) there were 3 states instead of two.

This happened because there were 2 sets of media vars and they both used the same px values. But the first set used min-width and the second used max-width to handle different responsive states. Yet one set should have had the value one pixel lower than the other in order to avoid this issue.

Needless to say, I saw that this issue was easily fixable and I made a PR with changing the values of one set of the media vars to properly match the other. Thus fixing the issue.

Here is how the media vars looked, for a quick review:


responsive-vars.png

After my initial commit to fix the issue @Sekhmet mentioned that there should probably be just one set of media vars and not two. In order to avoid confusion and to avoid introducing possible future UI bugs.

The other members agreed. The problem was the both sets of the media vars we're used in other LESS files, so it was not just a matter of deleting 2 media vars. The files in which they we're used needed to be modified to use the remaining ones while the layout should remain exactly as before.

After a while I modified all related files and deleted one set of the media vars. I tested locally that all pages relevant to the changed files looked identical to the main busy site. I made the commit and waited for others to test my changes.

I was happy to see that the there we're no inconsistencies found in the layout. Also, @fabien suggested a small padding change for the site's layout relevant only after 998px but not for large screens.

To fix this I added a needed, in my opinion, additional media var @large that is relevant on screens larger than 1200px and uses the same logic as the remaining vars. And I made the padding fix between @medium and @large dimentions.

The logic of the design(css) on busy is now mobile-first only.
Which means that the first CSS rules are actually defined for small screen (all screens in case there are no other media vars involved). To better explain this, let us have this example code:

.box {
     margin-left: 0px;

    @media @small {
        margin-left: 5px;
    }

    @media @medium {
        margin-left: 10px;
    }

    @media @large {
        margin-left: 15px;
    }
}

In the above code the .box will have left margin:

  • 0px between 0 and 767px (default)
  • 5px between 768px and 997px
  • 10px between 998px and1199px`
  • 15px from 1200px upwards

Pull request: https://github.com/busyorg/busy/pull/1077
Issue it fixes: https://github.com/busyorg/busy/issues/1029

Also here is a screenshot of the merged pull request:

busy-pull-1077.png



Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Thank you for the contribution. It has been approved.

You can contact us on Discord.
[utopian-moderator]

Hey @sirrius I am @utopian-io. I have just upvoted you!

Achievements

  • You have less than 500 followers. Just gave you a gift to help you succeed!
  • Seems like you contribute quite often. AMAZING!

Community-Driven Witness!

I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!

mooncryption-utopian-witness-gif

Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x

Coin Marketplace

STEEM 0.30
TRX 0.12
JST 0.034
BTC 63799.64
ETH 3130.40
USDT 1.00
SBD 3.97