Changeset 378:a103e2765a14 for themes/ductile/_config.php
- Timestamp:
- 06/16/11 23:11:22 (14 years ago)
- Branch:
- themes
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
themes/ductile/_config.php
r376 r378 52 52 53 53 $ductile_base = array( 54 'body_link_ c' => null,54 'body_link_w' => null, 55 55 'body_link_v_c' => null, 56 56 'body_link_f_c' => null, … … 71 71 try 72 72 { 73 $ductile_user['body_link_c'] = adjustColor($_POST['body_link_c']); 73 $ductile_user['body_link_w'] = (integer) !empty($_POST['body_link_w']); 74 75 $ductile_user['body_link_v_c'] = adjustColor($_POST['body_link_v_c']); 74 76 $ductile_user['body_link_f_c'] = adjustColor($_POST['body_link_f_c']); 75 $ductile_user['body_link_v_c'] = adjustColor($_POST['body_link_v_c']);76 77 77 78 $ductile_user['body_font'] = $_POST['body_font']; … … 97 98 form::combo('body_font',$fonts,$ductile_user['body_font']).'</label></p>'. 98 99 99 '<p class="field"><label for="alternate_font">'.__(' Alternatefont:').' '.100 '<p class="field"><label for="alternate_font">'.__('Secondary font:').' '. 100 101 form::combo('alternate_font',$fonts,$ductile_user['alternate_font']).'</label></p>'. 101 102 '</fieldset>'; 102 103 103 echo '<fieldset><legend>'.__(' Links').'</legend>'.104 '<p class="field"><label for="body_link_ c">'.__('Links color:').' '.105 form:: field('body_link_c',7,7,$ductile_user['body_link_c'],'colorpicker').'</label></p>'.104 echo '<fieldset><legend>'.__('Inside posts links').'</legend>'. 105 '<p class="field"><label for="body_link_w">'.__('Links in bold:').' '. 106 form::checkbox('body_link_w',1,$ductile_user['body_link_w']).'</label>'.'</p>'. 106 107 107 '<p class="field"><label for="body_link_v_c">'.__(' Visited links color:').''.108 form::field('body_link_v_c',7,7,$ductile_user['body_link_v_c'],'colorpicker').'</ label></p>'.108 '<p class="field"><label for="body_link_v_c">'.__('Normal and visited links color:').'</label> '. 109 form::field('body_link_v_c',7,7,$ductile_user['body_link_v_c'],'colorpicker').'</p>'. 109 110 110 '<p class="field"><label for="body_link_f_c">'.__(' Focus links color:').''.111 form::field('body_link_f_c',7,7,$ductile_user['body_link_f_c'],'colorpicker').'</ label></p>'.111 '<p class="field"><label for="body_link_f_c">'.__('Active, hover and focus links color:').'</label> '. 112 form::field('body_link_f_c',7,7,$ductile_user['body_link_f_c'],'colorpicker').'</p>'. 112 113 '</fieldset>'; 113 114
Note: See TracChangeset
for help on using the changeset viewer.