ZwiiCMS/module/gallery/ressource/defaultdata.php

23 lines
812 B
PHP
Raw Normal View History

2020-04-18 16:33:48 +02:00
<?php
class theme extends gallery {
2021-04-09 16:42:13 +02:00
public static $defaultTheme = [
2020-04-18 19:18:34 +02:00
'thumbAlign' => 'center',
'thumbWidth' => '18em',
'thumbHeight' => '15em',
'thumbMargin' => '.5em',
2020-04-18 19:18:34 +02:00
'thumbBorder' => '.1em',
'thumbOpacity' => '.7',
'thumbBorderColor' => 'rgba(221, 221, 221, 1)',
'thumbRadius' => '.3em',
'thumbShadows' => '1px 1px 10px',
'thumbShadowsColor'=> 'rgba(125, 125, 125, 1)',
2020-04-18 19:18:34 +02:00
'legendHeight' => '.375em',
'legendAlign' => 'center',
'legendTextColor' => 'rgba(255, 255, 255, 1)',
2021-04-09 16:42:13 +02:00
'legendBgColor' => 'rgba(0, 0, 0, .6)'
];
public static $defaultData = [
'versionData' => '3.0'
2020-04-18 16:33:48 +02:00
];
}