diff --git a/view/global.css b/view/global.css index 4101f0fe0..81a1ba209 100644 --- a/view/global.css +++ b/view/global.css @@ -680,3 +680,33 @@ span.required { audio { width: 100%; } + +/** + * Image grid settings START + **/ +.imagegrid-row { + display: -ms-flexbox; /* IE10 */ + display: flex; + -ms-flex-wrap: wrap; /* IE10 */ + flex-wrap: wrap; + padding: 0 4px; + box-sizing: border-box; +} + +/* Create four equal columns that sits next to each other */ +.imagegrid-column { + -ms-flex: 50%; /* IE10 */ + flex: 50%; + max-width: 50%; + padding: 0 4px; + box-sizing: border-box; +} + +.imagegrid-column img { + margin-top: 8px; + vertical-align: middle; + width: 100%; +} +/** + * Image grid settings END + **/ \ No newline at end of file diff --git a/view/templates/content/image_grid.tpl b/view/templates/content/image_grid.tpl index 8f5cbabca..95e49ee3e 100644 --- a/view/templates/content/image_grid.tpl +++ b/view/templates/content/image_grid.tpl @@ -1,13 +1,11 @@ - - -
-
- {{foreach $columns.fc as $img}} - {{include file="content/image.tpl" image=$img}} +
+
+ {{foreach $columns.fc as $img}} + {{include file="content/image.tpl" image=$img}} {{/foreach}}
-
- {{foreach $columns.sc as $img}} +
+ {{foreach $columns.sc as $img}} {{include file="content/image.tpl" image=$img}} {{/foreach}}
diff --git a/view/theme/frio/css/image_grid.css b/view/theme/frio/css/image_grid.css deleted file mode 100644 index 2ecbcafea..000000000 --- a/view/theme/frio/css/image_grid.css +++ /dev/null @@ -1,25 +0,0 @@ -* { - box-sizing: border-box; -} - -.row { - display: -ms-flexbox; /* IE10 */ - display: flex; - -ms-flex-wrap: wrap; /* IE10 */ - flex-wrap: wrap; - padding: 0 4px; -} - -/* Create four equal columns that sits next to each other */ -.column { - -ms-flex: 50%; /* IE10 */ - flex: 50%; - max-width: 50%; - padding: 0 4px; -} - -.column img { - margin-top: 8px; - vertical-align: middle; - width: 100%; -}