| 163 |
'#default_value' => 'white', |
'#default_value' => 'white', |
| 164 |
'#attributes' => array('class' => 'thead-options'), |
'#attributes' => array('class' => 'thead-options'), |
| 165 |
); |
); |
| 166 |
$form['tabs']['thead']['background-color-custom'] = array( |
$form['tabs']['table']['-moz-border-radius'] = array( |
|
'#type' => 'textfield', |
|
|
'#size' => 8, |
|
|
'#value' => '#ffffff', |
|
|
'#name' => 'tabs[thead][background-color-custom]', // set our own name tag as we're using drupal_render |
|
|
'#attributes' => array('class' => 'color_textfield'), // identify so farbtastic can link to it |
|
|
); |
|
|
$form['tabs']['thead']['background-color'] = array( |
|
|
'#type' => 'radios', |
|
|
'#options' => array('white' => 'white', '#FFFFF0' => '#FFFFF0', '#FAF0E6' => '#FAF0E6', '#FFF5EE' => '#FFF5EE', '#FFFAFA' => '#FFFAFA', 'custom' => drupal_render($form['tabs']['thead']['background-color-custom'])), |
|
|
'#title' => t('background-color'), |
|
|
'#default_value' => 'white', |
|
|
'#attributes' => array('class' => 'thead-options'), |
|
|
); |
|
|
$form['tabs']['thead']['-moz-border-radius'] = array( |
|
| 167 |
'#type' => 'radios', |
'#type' => 'radios', |
| 168 |
'#options' => array('0px' => '0px', '3px' => '3px', '6px' => '6px', '9px' => '9px', '12px' => '12px'), |
'#options' => array('0px' => '0px', '3px' => '3px', '6px' => '6px', '9px' => '9px', '12px' => '12px'), |
| 169 |
'#title' => t('-moz-border-radius'), |
'#title' => t('-moz-border-radius'), |