Changeset 15697 for trunk/templates
- Timestamp:
- 11/24/11 02:05:01 (6 months ago)
- Location:
- trunk/templates/base
- Files:
-
- 2 edited
-
css/forms.css (modified) (3 diffs)
-
scripts/BxBaseFormView.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/base/css/forms.css
r15691 r15697 1 1 2 .bx-form-advanced-wrapper .bx-form-section :first-child {2 .bx-form-advanced-wrapper .bx-form-section-wrapper:first-child { 3 3 margin-top:0; 4 4 } … … 13 13 } 14 14 15 .bx-form-section-wrapper { 16 position:relative; 17 } 18 15 19 .bx-form-section { 16 20 padding-top:0px; … … 20 24 21 25 .bx-form-section { 26 margin:0; 22 27 border-width:2px; 23 28 border-bottom:none; -
trunk/templates/base/scripts/BxBaseFormView.php
r15691 r15697 929 929 $sClassesAdd = "bx-form-section-divider"; 930 930 931 $sAttrs = bx_convert_array2attrs($aAttrs, "bx-form-section bx-def- margin-top bx-def-padding-sec-top bx-def-border-top " . $sClassesAdd);931 $sAttrs = bx_convert_array2attrs($aAttrs, "bx-form-section bx-def-padding-sec-top bx-def-border-top " . $sClassesAdd); 932 932 933 933 $this->_isSectionOpened = true; 934 934 935 return "<!-- form header content begins -->\n < fieldset $sAttrs> $sLegend <div class=\"bx-form-section-content bx-def-padding-top bx-def-padding-bottom" . ($sLegend ? ' bx-def-padding-left bx-def-padding-right' : '') . "\">\n";935 return "<!-- form header content begins -->\n <div class=\"bx-form-section-wrapper bx-def-margin-top\"> <fieldset $sAttrs> $sLegend <div class=\"bx-form-section-content bx-def-padding-top bx-def-padding-bottom" . ($sLegend ? ' bx-def-padding-left bx-def-padding-right' : '') . "\">\n"; 936 936 937 937 } else { … … 946 946 947 947 $this->_isSectionOpened = false; 948 return "</div> </fieldset> \n<!-- form header content ends -->\n";948 return "</div> </fieldset> </div> \n<!-- form header content ends -->\n"; 949 949 950 950 } else {
Note: See TracChangeset
for help on using the changeset viewer.