forked from ZwiiCMS-Team/ZwiiCMS
17 lines
569 B
PHP
17 lines
569 B
PHP
|
<?php
|
||
|
class theme extends gallery {
|
||
|
public static $defaultData = [
|
||
|
'thumbAlign' => 'center',
|
||
|
'thumbWidth' => '18em',
|
||
|
'thumbHeight' => '15em',
|
||
|
'thumbMargin' => '.6em',
|
||
|
'thumbBorder' => '.1em',
|
||
|
'thumbOpacity' => '.7',
|
||
|
'ThumbBorderColor' => 'rgba(221, 221, 221, 1)',
|
||
|
'legendHeight' => '.375em',
|
||
|
'legendAlign' => 'center',
|
||
|
'legendTextColor'=> 'rgba(255, 255, 255, 1)',
|
||
|
'legendBgColor' => 'rgba(0, 0, 0, .6)'
|
||
|
];
|
||
|
}
|