Changeset fbeb4689 in github
- Timestamp:
- Jan 21, 2011 12:41:05 PM (2 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- ede1744
- Parents:
- 26e76df
- Files:
-
- 5 edited
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/steps/addressbook/edit.inc (modified) (1 diff)
-
program/steps/addressbook/func.inc (modified) (1 diff)
-
program/steps/addressbook/show.inc (modified) (1 diff)
-
skins/default/addressbook.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/localization/en_US/labels.inc
r0501b63 rfbeb4689 280 280 $labels['contacts'] = 'Contacts'; 281 281 $labels['contactproperties'] = 'Contact properties'; 282 $labels['personalinfo'] = 'Personal information'; 282 283 283 284 $labels['edit'] = 'Edit'; -
program/steps/addressbook/edit.inc
r0501b63 rfbeb4689 96 96 'name' => rcube_label('contactproperties'), 97 97 'content' => array( 98 'gender' => array('visible' => false),99 'maidenname' => array('size' => $i_size),100 98 'email' => array('size' => $i_size, 'visible' => true), 101 99 'phone' => array('size' => $i_size, 'visible' => true), 102 100 'address' => array('visible' => true), 103 'birthday' => array('size' => 12),104 'anniversary' => array('size' => $i_size),105 101 'website' => array('size' => $i_size), 106 102 'im' => array('size' => $i_size), 103 ), 104 ), 105 'personal' => array( 106 'name' => rcube_label('personalinfo'), 107 'content' => array( 108 'gender' => array('visible' => true), 109 'maidenname' => array('size' => $i_size), 110 'birthday' => array('visible' => true), 111 'anniversary' => array('size' => $i_size), 107 112 'manager' => array('size' => $i_size), 108 113 'assistant' => array('size' => $i_size), -
program/steps/addressbook/func.inc
r0501b63 rfbeb4689 498 498 499 499 // wrap rows in fieldgroup container 500 $content .= html::tag('fieldset', array('class' => 'contactfieldgroup contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')),500 $content .= html::tag('fieldset', array('class' => 'contactfieldgroup ' . ($colprop['subtypes'] ? 'contactfieldgroupmulti ' : '') . 'contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')), 501 501 ($colprop['subtypes'] ? html::tag('legend', null, Q($colprop['label'])) : ' ') . 502 502 $rows); -
program/steps/addressbook/show.inc
r0501b63 rfbeb4689 94 94 'name' => rcube_label('contactproperties'), 95 95 'content' => array( 96 'gender' => array('size' => $i_size),97 'maidenname' => array('size' => $i_size),98 96 'email' => array('size' => $i_size, 'render_func' => 'rcmail_render_email_value'), 99 97 'phone' => array('size' => $i_size), 100 98 'address' => array(), 101 'birthday' => array('size' => $i_size),102 'anniversary' => array('size' => $i_size),103 99 'website' => array('size' => $i_size, 'render_func' => 'rcmail_render_url_value'), 104 100 'im' => array('size' => $i_size), 105 'manager' => array('size' => $i_size), 106 'assistant' => array('size' => $i_size), 107 'spouse' => array('size' => $i_size), 101 ), 102 ), 103 'personal' => array( 104 'name' => rcube_label('personalinfo'), 105 'content' => array( 106 'gender' => array('size' => $i_size), 107 'maidenname' => array('size' => $i_size), 108 'birthday' => array('size' => $i_size), 109 'anniversary' => array('size' => $i_size), 110 'manager' => array('size' => $i_size), 111 'assistant' => array('size' => $i_size), 112 'spouse' => array('size' => $i_size), 108 113 ), 109 114 ), -
skins/default/addressbook.css
r0501b63 rfbeb4689 312 312 border: 0; 313 313 margin: 0.5em 0; 314 padding: 0.2em 2px; 315 } 316 317 fieldset.contactfieldgroupmulti 318 { 314 319 padding: 0.5em 2px; 315 320 } … … 323 328 { 324 329 position: relative; 325 margin -bottom: 0.4em;330 margin: 0.2em 0; 326 331 } 327 332
Note: See TracChangeset
for help on using the changeset viewer.
