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 / cascade.css.php

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

22 lines 439 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2
3 .mgl-cascade {
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 }
10
11 <?php echo sanitize_html_class( $class_id ) ?> .mgl-box {
12 padding: <?php echo (int)$gutter / 2 ?>px;
13 }
14
15 @media screen and (max-width: 600px) {
16 <?php echo sanitize_html_class( $class_id ) ?> figcaption {
17 display: none
18 }
19 }
20
21 </style>
22