summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css')
-rw-r--r--js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css b/js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css
new file mode 100644
index 0000000..fb2a1b2
--- /dev/null
+++ b/js/dojo-1.7.2/dojox/mobile/themes/custom/TabBar-compat.css
@@ -0,0 +1,55 @@
+/* dojox.mobile.TabBarButton */
+.dj_ie6 .mblTabBarButtonDiv, .dj_ie7 .mblTabBarButtonDiv {
+ left: auto;
+}
+.dj_ie6 .mblTabBar .mblTabBarButton {
+ display: inline; /* IE bug*/
+}
+.mblTabPanelHeader {
+ background-image: url(compat/heading-bg.png);
+}
+.mblTabBar {
+ background-image: url(compat/ui-widget-bg.png);
+}
+.mblTabBarButton, .mblTabButton {
+ background-image: url(compat/ui-widget-bg.png);
+ _background-image: none; /* IE6 */
+}
+.mblTabBar .mblTabBarButton.mblTabButtonSelected {
+ -moz-border-radius: 2px;
+ -o-border-radius: 2px;
+ -ms-border-radius: 2px;
+ border-radius: 2px;
+}
+.mblTabButton:first-child {
+ -moz-border-radius-topleft: 2px;
+ -moz-border-radius-bottomleft: 2px;
+ -o-border-top-left-radius: 2px;
+ -o-border-bottom-left-radius: 2px;
+ -ms-border-top-left-radius: 2px;
+ -ms-border-bottom-left-radius: 2px;
+ border-top-left-radius: 2px;
+ border-bottom-left-radius: 2px;
+}
+.mblTabButton:last-child {
+ -moz-border-radius-topright: 2px;
+ -moz-border-radius-bottomright: 2px;
+ -o-border-top-right-radius: 2px;
+ -o-border-bottom-right-radius: 2px;
+ -ms-border-top-right-radius: 2px;
+ -ms-border-bottom-right-radius: 2px;
+ border-top-right-radius: 2px;
+ border-bottom-right-radius: 2px;
+}
+*html .mblTabButton { /* IE6 hack */
+ behavior: expression(
+ (function(el){
+ if(!el.previousSibling)
+ el.style.borderWidth = "1px";
+ el.style.behavior = "none";
+ })(this)
+ );
+}
+.dj_ie6 .mblTabPanelHeader .mblDomButton {
+ left: 0px;
+}