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: 8px; height: 8px;"; // 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: 63px; height: 24px;", 'design' => "width: 63px; height: 24px;", ); ?>
|