Jump to content

SeNioR-

Members
  • Posts

    1,144
  • Joined

  • Days Won

    5

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by SeNioR-

  1. Invision Power Board Usage Statistics

    • The most popular in Poland in Forum Software category.
    • 3rd most popular in the Top 10k sites in Forum Software category.
    • 3rd most popular in the Top 100k sites in Forum Software category.
    • 4th most popular in the Top 1 Million sites in Forum Software category.
    • 5th most popular on the Entire Internet in Forum Software category.
    • The most popular in Russia in Forum Software category.
    • The most popular in Romania in Forum Software category.
    • 2nd most popular in Brazil in Forum Software category.
    • 3rd most popular in Australia in Forum Software category.
    • 3rd most popular in Italy in Forum Software category.
  2. They may be small things, but for a perfectionist who pays attention to detail, they are quite important 😛 

    And speaking of small things, is this padding needed here (for non-logged in users)?

    #elUserNav_mobile {
        padding: 15px 0;
    }

    https://forum.invisionize.pl/

    Could contain: Page, Text, File

    From what I noticed the #elUserNav_mobile identifier is dynamically added if we have the Commerce module, and the padding is for the cart icon (correct me if I'm wrong), but I think you can use row-gap here and eliminate this unnecessary space.

    .elMobileDrawer__user {
        row-gap: 15px;
    }
  3. 10 hours ago, Ehren said:

    My guess is that you're using the browser developer tools to resize your window, but the resized window is far smaller than a real life mobile device.

    That's right, but only to take a screenshot.

    I'm using Nokia with Android but with forced enlarged font to 125%. When I reduce it to 100% everything fits, however I can imagine that many people can use larger text on their smartphones.

    I believe that regardless of the font size, these things should fit on the screen even if I increase the font to 150%. I personally tweaked it for my theme.

  4. Sure, I'm using Nokia with Android, but with an enlarged font. When I reduce the font to 100% everything fits, but I can imagine that many people can use larger text on their smartphones.

    The second thing is that a longer phrase will do the same thing and the font size won't matter.

    Thought I'd report it as a bug.

  5. By the way:

    The "Login" button is not responsive and streams are better to put on one line with truncated text:

    Could contain: Text, Page, File

    FIX:

    .ipsDrawer_itemParent > .ipsDrawer_list > li > a:not( .ipsButton ) {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    and for Button:

    .ipsToolList > * {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    Pagination (larger font adds bottom scroll bar)

    Could contain: Text

    FIX:

    @media screen and (max-width: 979px){
    [dir] .ipsPagination:not(.ipsPagination_mini) > li {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: clip;
    }
    }
  6. On 2/15/2023 at 1:40 PM, Marc Stridgen said:

    Ah, indeed. We have a bug report open for this

    Any progress? May we know when it will be fixed? We've been struggling with this for months 😕 

    Quote

    Uncaught TypeError: Cannot read properties of undefined (reading 'reset')
        at baseController.addToStatusFeed (front_front_statuses.js?v=27b94d900c1678047906:4:234)
        at nr (root_library.js?v=27b94d900c1678047906:1:7597)
        at HTMLDocument.<anonymous> (root_library.js?v=27b94d900c1678047906:1:8025)
        at HTMLDocument.<anonymous> (root_library.js?v=27b94d900c1678047906:1:1076)
        at HTMLDocument.dispatch (root_library.js?v=27b94d900c1678047906:2:43090)
        at v.handle (root_library.js?v=27b94d900c1678047906:2:41074)
        at Object.trigger (root_library.js?v=27b94d900c1678047906:2:71513)
        at HTMLLIElement.<anonymous> (root_library.js?v=27b94d900c1678047906:2:72108)
        at Function.each (root_library.js?v=27b94d900c1678047906:2:2976)
        at jQuery.fn.init.each (root_library.js?v=27b94d900c1678047906:2:1454)

  7. Referring to the new changes in 4.7.8 (UI Polish in Invision Community 4.7.8), it's also worth taking a look at:

    Could contain: Page, Text

    This section has far too much padding, the buttons on the mobile version are not next to each other, but below each other, which take up half the phone screen.

    I suggest to use ipsFlex instead of old ipsGrid.

    After a slight modification, I got this look: 

    Could contain: File, Text, Page, Webpage

    Could contain: Page, Text

    Clearer right?

×
×
  • Create New...