PluginProbe
Meow Gallery / 5.5.5
Meow Gallery v5.5.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 / horizontal.css.php

horizontal.css.php in Meow Gallery 5.5.5, at classes/builders/horizontal.css.php

27 lines 763 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2
3 <?php echo esc_attr( $class_id ) ?> {
4 min-height: <?php echo $image_height ?>px;
5 }
6
7 <?php echo esc_attr( $class_id ) ?> .meow-horizontal-track {
8 height: <?php echo $image_height ?>px;
9 }
10
11 <?php echo esc_attr( $class_id ) ?> .meow-horizontal-prev-btn, <?php echo esc_attr( $class_id ) ?> .meow-horizontal-next-btn {
12 top: <?php echo $image_height/2 ?>px;
13 }
14
15 <?php echo esc_attr( $class_id ) ?> .mgl-item {
16 padding: 0 <?php echo (int)$gutter - 20 ?>px;
17 }
18
19 <?php echo esc_attr( $class_id ) ?> .mgl-item figcaption {
20 width: calc(100% - <?php echo (int)$gutter*2 ?>px);
21 padding: 0 <?php echo (int)$gutter / 2 ?>px;
22 left: <?php echo (int)$gutter / 2 ?>px;
23 bottom: <?php echo (int)$gutter / 2 ?>px;
24 }
25
26 </style>
27