Changeset 13711
- Timestamp:
- 05/12/08 23:02:30 (6 months ago)
- Location:
- dijit/trunk
- Files:
-
- 4 modified
-
tests/form/test_ComboBox.html (modified) (1 diff)
-
tests/form/test_Spinner.html (modified) (1 diff)
-
themes/dijit.css (modified) (1 diff)
-
themes/tundra/form/Common.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/tests/form/test_ComboBox.html
r13661 r13711 8 8 @import "../../../dojo/resources/dojo.css"; 9 9 @import "../css/dijitTests.css"; 10 .dj_ie INPUT#setvaluetest { font-family: Courier; } /* help IE with font inheritance */11 10 </style> 12 11 -
dijit/trunk/tests/form/test_Spinner.html
r13661 r13711 8 8 @import "../../../dojo/resources/dojo.css"; 9 9 @import "../css/dijitTests.css"; 10 .dj_ie INPUT#integerspinner2 { font-family: Courier; } /* help IE with font inheritance */11 10 </style> 12 11 -
dijit/trunk/themes/dijit.css
r13623 r13711 42 42 .dj_ie .dijitInputField INPUT { 43 43 font-size: 100%; 44 font-family: inherit; /* trigger pseudo font-family inheritance */45 behavior: expression( /* if the font-family = inherit, then get the parent's font-family */46 function(self){47 var cs, e;48 try{49 if(self.currentStyle.fontFamily=='inherit'){50 cs = self.parentNode.currentStyle || document.documentElement.currentStyle;51 self.style.fontFamily = cs.fontFamily;52 }53 self.style.behavior = null; /* #5562: prevent re-eval of css expression */54 }catch(e){} /* #6024: random exceptions thrown during init */55 }(this)56 );57 44 } 58 45 -
dijit/trunk/themes/tundra/form/Common.css
r13433 r13711 16 16 .tundra .dijitSpinner { 17 17 margin: 0em 0.1em; 18 } 19 20 .tundra .dijitTextBox, 21 .tundra .dijitComboBox, 22 .tundra .dijitSpinner, 23 .tundra .dijitTextArea { 24 font-family: sans-serif; 25 font-size: 100%; 18 26 } 19 27