Changeset 1391
- Timestamp:
- 03/04/2010 04:27:04 AM (2 years ago)
- Location:
- branches/omcollab_zhongzhen2/wiki/extensions/Help
- Files:
-
- 2 edited
-
HelpExtention.css (modified) (2 diffs)
-
Help_Guide.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/omcollab_zhongzhen2/wiki/extensions/Help/HelpExtention.css
r1389 r1391 13 13 14 14 #helpArea { 15 width: 30%; 16 float: right; 17 display: none; 15 width: 100%; 16 position: relative; 17 border: 1px solid #AEAEAE; 18 left: -5px; 19 top: -5px; 20 background-color: #FFFFFF; 21 font-size: 11px; 22 } 23 24 #shadow { 25 background-color: #EFEFEF; 26 float: right; 27 display: none; 28 margin: 5px; 29 width: 30%; 18 30 } 19 31 … … 22 34 #editpage-copywarn {clear: both;} 23 35 24 .help_menu_ul {list-style-type: none; margin: 0px; padding: 5px 5px 0px 5px; background-color: #EEEEEE; border-top: 1px solid #AEAEAE; border-left: 1px solid #AEAEAE; border-right: 1px solid #AEAEAE;}36 .help_menu_ul {list-style-type: none; margin: 0px; padding: 5px 5px 0px 5px; background-color: #EEEEEE; } 25 37 .help_menu_ul li {display: inline; text-align: center; padding: 3px; font-size: 10px; margin-right: 3px;} 26 38 .tab_active {background-color: #FFFFFF; border-left: 1px solid #AEAEAE; border-top: 1px solid #AEAEAE; border-right: 1px solid #AEAEAE; border-bottom: 1px solid #FFFFFF; color: #000000;} 27 39 .tab_normal {color: #666666; cursor: pointer;} 28 40 29 .button_class {float: right; padding-right: 10px;}41 .button_class {float: right; text-align: center; width: 7%;} 30 42 .help_content {padding: 10px; display: none;} 31 43 -
branches/omcollab_zhongzhen2/wiki/extensions/Help/Help_Guide.php
r1389 r1391 22 22 if (source.search('button_help') > -1) { 23 23 obj.src = 'extensions/Help/images/button_hide.gif'; 24 $('# helpArea').css('display', 'block');25 $('#wpTextbox1').css('width', '6 3%');24 $('#shadow').css('display', 'block'); 25 $('#wpTextbox1').css('width', '60%'); 26 26 } 27 27 else { 28 28 obj.src = 'extensions/Help/images/button_help.gif'; 29 $('# helpArea').css('display', 'none');29 $('#shadow').css('display', 'none'); 30 30 $('#wpTextbox1').css('width', '92%'); 31 31 } … … 66 66 67 67 //Help content area 68 $editPage->editFormTextBeforeContent .= '<div id=" helpArea">' . $html . '</div>';68 $editPage->editFormTextBeforeContent .= '<div id="shadow"><div id="helpArea">' . $html . '</div></div>'; 69 69 // Help button 70 70 $editPage->editFormTextBeforeContent .= '<div class="button_class"><img src="extensions/Help/images/button_help.gif" style="cursor: pointer;" onclick="changeIcon(this)"/></div>';
Note: See TracChangeset
for help on using the changeset viewer.
