1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php // default button style $default_tb_button_style = "width: 24px; height: 24px;"; // default image style $default_tb_image_style = "width: 4px; height: 4px;"; // default dropdown css class $default_tb_image_css_class = "spaw2dropdown"; // default button events $default_tb_button_events = array( 'onMouseOver' => 'Spaw2Theme.MouseOver' ); // custom toolbar item styles $custom_tbi_styles = array( 'html' => "width: 49px; height: 19px;", 'design' => "width: 53px; height: 19px;", ); ?>
|