Changeset 13721

Show
Ignore:
Timestamp:
05/13/08 03:37:25 (2 months ago)
Author:
bill
Message:

Remove definition of "medium" from dijitTests.css since it messes up demos. Fixes #6326.

Location:
dijit/trunk/tests
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/css/dijitTests.css

    r13660 r13721  
    7474} 
    7575 
    76 body .medium { 
    77         font-size: larger; /* help test widget sizing */ 
    78 } 
    79  
    8076#testMatrix { 
    8177        width:100%; 
  • dijit/trunk/tests/form/test_ComboBox.html

    r13711 r13721  
    8383                                name="state1" 
    8484                                dojoType="dijit.form.ComboBox" 
    85                                 class="medium" 
    8685                                style="width:50%;font-size:200%;font-family:Courier;" 
    8786                                name="foo.bar1" 
     
    169168                <input dojoType="dijit.form.ComboBox" 
    170169                                value="California" 
    171                                 class="medium" 
    172170                                store="stateStore" 
    173171                                searchAttr="name" 
     
    182180                <input dojoType="dijit.form.ComboBox" 
    183181                                value="dijit.Editor" 
    184                                 class="medium" 
    185182                                store="dijitStore" 
    186183                                searchAttr="className" 
     
    197194                                dojoType="dijit.form.ComboBox" 
    198195                                value="California" 
    199                                 class="medium" 
    200196                                store="stateStore" 
    201197                                searchAttr="name" 
     
    215211                <input dojoType="dijit.form.ComboBox" 
    216212                                value="" 
    217                                 class="medium" 
    218213                                store="stateStore" 
    219214                                searchAttr="name" 
  • dijit/trunk/tests/form/test_Spinner.html

    r13711 r13721  
    88                        @import "../../../dojo/resources/dojo.css"; 
    99                        @import "../css/dijitTests.css"; 
     10 
     11                        body .bigFont { 
     12                                font-size: larger; /* help test widget sizing */ 
     13                        } 
     14 
    1015                </style> 
    1116 
     
    3439                        <h1>number spinner</h1> 
    3540                        <br> 
    36                         initial value=900, no delta specified, no min specified, max=1550, onChange captured<br> 
     41                        initial value=900, no delta specified, no min specified, max=1550, onChange captured, big font<br> 
    3742                        <label for="integerspinner1">Spinbox #1: </label><br> 
    3843                        <input dojoType="dijit.form.NumberSpinner" 
    3944                                onChange="dojo.byId('oc1').value=arguments[0]" 
    4045                                value="900" 
    41                                 class="medium" 
     46                                class="bigFont" 
    4247                                constraints="{max:1550,places:0}" 
    4348                                name="integerspinner1"