Plugin Directory

Changeset 2597643


Ignore:
Timestamp:
09/12/2021 06:18:46 PM (5 years ago)
Author:
jweathe
Message:

Correct the readme documentation. It wasn't technically correct /cry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • no-bs-image-slider/trunk/readme.txt

    r2597642 r2597643  
    6161Sliders are ID'd with `no-bs-image-slider-<slug>` and slides are ID'd with `nbis-slide-<slideId>`.
    6262
    63 An approach would be to style the slider as Flexbox, and set the order on the slides.
    64 >    \#no-bs-image-slider-slug {
    65 >        display: flex;
    66 >    }
    67 >    \#no-bs-image-slider-slug #nbis-slide-1 {
    68 >        order: 1;
    69 >    }
    70 >    \#no-bs-image-slider-slug #nbis-slide-2 {
    71 >        order: 0;
    72 >    }
     63An approach would be to style the slider scrollpane as Flexbox, and set the order on the slides.
     64>   \#no-bs-image-slider-slug .scrollpane {
     65>       display: flex;
     66>   }
     67>   \#no-bs-image-slider-slug .scrollpane #nbis-slide-1 {
     68>       order: 1;
     69>   }
     70>   \#no-bs-image-slider-slug .scrollpane #nbis-slide-2 {
     71>       order: 0;
     72>   }
    7373
    7474== Changelog ==
Note: See TracChangeset for help on using the changeset viewer.