Ignore:
Timestamp:
2021-08-10T18:58:02+12:00 (3 years ago)
Author:
anupama
Message:

When the iframe height=100vh change on weebly finally got published, forgot to activate/update the .shifted-frame dimensions for screen at widths <= bp-small-max which now needs to calc new height of shifted frame with height-header-mobile. The shifted-frame scoller replacing the body scroll now works when at screenwidth of 1024px or smaller (which is wider than mobile). This change not having been active earlier today, it explains why the scroller wasn't visible at bottom full scroll earlier today when we re-tested at <= 1024px screenwidths.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/wmtb/styles/gs-wmtb-custom.css

    r35273 r35281  
    4343Hardcoded values copied from weebly site theme's variables.less file called in header.less */
    4444@media screen and (max-width: 1024px) { /* bp-small-max */
    45     body {
    46     overflow: auto;
    47     }
    48 
     45
     46    /*
     47      body { overflow: auto; }
     48   */
     49   
    4950    div#spacer-for-nav {
    5051    height: var(--height-header-mobile); /*93px;*/
     
    5253
    5354    .shifted-frame {
    54     height: 100vh; /*calc(100vh - 93px);*/
     55    height: calc(100vh - var(--height-header-mobile)); 
     56    /*height: 100vh;*/ /*calc(100vh - 93px);*/
    5557    /*overflow-y: auto;*//* scroll;*/
    5658    }
Note: See TracChangeset for help on using the changeset viewer.