I've got a very simple page, with one dijit button. I'm trying to override the font on the button with blue, times, bold. It works fine in FF, but in IE, I'm just seeing black, arial, normal text. If I look in IE Dev Toolbar, it shows the rule as applying, but not in the display. Am I doing something wrong? Here's the code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Theme Test</title>
<link href="js/dojo/resources/dojo.css" rel="stylesheet" type="text/css">
<link href="js/dijit/themes/tundra/tundra.css" rel="stylesheet" type="text/css">
<style type="text/css">
.tundra .dijitButton {
font-family:'Times New Roman',Times,serif;
color:#3a7bb8;
font-weight:bold;
}
</style>
<script type="text/javascript" src="js/dojo/dojo.js" djConfig="parseOnLoad:true, isDebug:false"></script>
<script type="text/javascript">
dojo.require("dijit.form.Button");
dojo.require("dojo.parser");
</script>
</head>
<body class="tundra">
<button dojoType="dijit.form.Button">This should be Times, Bold, Blue</button>
</body>
</html>