HomeHelpTrac

Changeset 15697 for trunk/templates


Ignore:
Timestamp:
11/24/11 02:05:01 (6 months ago)
Author:
Alexander Trofimov
Message:

Form - toggler fix in FF

Location:
trunk/templates/base
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/base/css/forms.css

    r15691 r15697  
    11 
    2 .bx-form-advanced-wrapper .bx-form-section:first-child { 
     2.bx-form-advanced-wrapper .bx-form-section-wrapper:first-child { 
    33    margin-top:0; 
    44} 
     
    1313} 
    1414 
     15.bx-form-section-wrapper { 
     16    position:relative; 
     17} 
     18 
    1519.bx-form-section { 
    1620    padding-top:0px; 
     
    2024 
    2125.bx-form-section { 
     26    margin:0; 
    2227    border-width:2px; 
    2328    border-bottom:none; 
  • trunk/templates/base/scripts/BxBaseFormView.php

    r15691 r15697  
    929929                $sClassesAdd = "bx-form-section-divider"; 
    930930 
    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); 
    932932 
    933933            $this->_isSectionOpened = true; 
    934934 
    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"; 
    936936 
    937937        } else { 
     
    946946 
    947947            $this->_isSectionOpened = false; 
    948             return "</div> </fieldset>\n<!-- form header content ends -->\n"; 
     948            return "</div> </fieldset> </div> \n<!-- form header content ends -->\n"; 
    949949 
    950950        } else { 
Note: See TracChangeset for help on using the changeset viewer.