##// END OF EJS Templates
IE ui fixes ref #349
marcink -
r2163:e77fbd3b beta
parent child Browse files
Show More
@@ -322,6 +322,14 b' div.options a {'
322 -moz-border-radius: 0px 0px 0px 0px;
322 -moz-border-radius: 0px 0px 0px 0px;
323 border-radius: 0px 0px 0px 0px;
323 border-radius: 0px 0px 0px 0px;
324 }
324 }
325
326 .ie7 #header #header-inner.hover,
327 .ie8 #header #header-inner.hover,
328 .ie9 #header #header-inner.hover
329 {
330 z-index: auto !important;
331 }
332
325 #header #header-inner #home a {
333 #header #header-inner #home a {
326 height: 40px;
334 height: 40px;
327 width: 46px;
335 width: 46px;
@@ -1,5 +1,5 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <!DOCTYPE html>
3 <html xmlns="http://www.w3.org/1999/xhtml">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
4 <head>
5 <title>${self.title()}</title>
5 <title>${self.title()}</title>
@@ -130,6 +130,17 b''
130 ${self.js()}
130 ${self.js()}
131 </head>
131 </head>
132 <body id="body">
132 <body id="body">
133 ${next.body()}
133 ## IE hacks
134 <!--[if IE 7]>
135 <script>YUD.addClass(document.body,'ie7')</script>
136 <![endif]-->
137 <!--[if IE 8]>
138 <script>YUD.addClass(document.body,'ie8')</script>
139 <![endif]-->
140 <!--[if IE 9]>
141 <script>YUD.addClass(document.body,'ie9')</script>
142 <![endif]-->
143
144 ${next.body()}
134 </body>
145 </body>
135 </html>
146 </html>
General Comments 0
You need to be logged in to leave comments. Login now