PluginProbe
Meow Gallery / 4.1.5
Meow Gallery v4.1.5
5.5.5 5.5.4 5.5.3 5.5.2 5.5.1 5.5.0 5.4.9 5.4.8 5.4.7 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 All 157 releases
meow-gallery / classes / builders / tiles-php.css.php

tiles-php.css.php in Meow Gallery 4.1.5, at classes/builders/tiles-php.css.php

27 lines 598 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2
3 .mgl-tiles {
4 display: <?php echo ($isPreview ? 'block' : 'none') ?>;
5 }
6
7 <?php echo sanitize_html_class( $class_id ) ?> {
8 margin: <?php echo -1 * ( (int)$gutter / 2 ) ?>px;
9 width: calc(100% + <?php echo (int)$gutter ?>px);
10 }
11
12 <?php echo sanitize_html_class( $class_id ) ?> .mgl-box {
13 padding: <?php echo (int)$gutter / 2 ?>px;
14 }
15
16 @media screen and (max-width: 600px) {
17 <?php echo sanitize_html_class( $class_id ) ?> .mgl-row {
18 height: 100px;
19 }
20
21 <?php echo sanitize_html_class( $class_id ) ?> figcaption {
22 display: none;
23 }
24 }
25
26 </style>
27