contao-bootstrap / grid

Bootstrap 4 Contao Grid Component
https://contao-bootstrap.de/komponenten/grid.html
GNU Lesser General Public License v3.0
4 stars 12 forks source link

Unterstützung für Größensuffixe bei Alignments #26

Closed RoflCopter24 closed 5 years ago

RoflCopter24 commented 5 years ago

Im Backend kann man bei 'Gridgrößen und -spalten' bei jeder Größe 'Vertikale Ausrichtung' auswählen. Bei der Ausgabe wird dies jedoch nicht berücksichtigt, es wird für alle Größen immer nur mehrfach zum Beispiel align-self-end anstatt align-self-xx-end ausgegeben.

Ich habe die entsprechenden Funktionen ergänzt, sodass nun die Größen wie md, lg usw. richtig ausgegeben werden sofern sie vorhanden sind.

Vorher: ce_bs_gridSeparator col-12 align-self-center col-lg-6 align-self-end Nachher: ce_bs_gridSeparator col-12 align-self-center col-lg-6 align-self-lg-end

dmolineus commented 5 years ago

Nice, I somehow missed that theses classes are also size specific available.

This project uses the contao-community-alliance coding standards which requires that each author is listed in the file header. Besides some alignments in the docs does not fit the coding standard. Would you please address this issues? You can check them local by running a composer update an ant. Or you can have a look at the Travis CI build logs.

RoflCopter24 commented 5 years ago

Sure! The header has been added and phpcbf fixed some spaces.