Skip to content

Instantly share code, notes, and snippets.

@catrope
Created September 20, 2011 19:29
Show Gist options
  • Save catrope/1230081 to your computer and use it in GitHub Desktop.
Save catrope/1230081 to your computer and use it in GitHub Desktop.
Undo RTL flipping for IE60Fixes rules
Index: skins/monobook/IE60Fixes.css
===================================================================
--- skins/monobook/IE60Fixes.css (revision 97651)
+++ skins/monobook/IE60Fixes.css (working copy)
@@ -11,16 +11,30 @@
margin-top: 3em;
height: 1%;
}
+.rtl div#column-content div#content {
+ margin-right: 12.2em;
+ margin-left: 0;
+}
div#column-one {
position: absolute;
top: 0;
left: 0;
z-index: 4;
}
+.rtl div#column-one {
+ left: auto;
+ right: 0;
+}
div#footer {
margin-left: 13.6em;
border-left: 1px solid #fabd23;
}
+.rtl div#footer {
+ margin-left: 0;
+ margin-right: 13.6em;
+ border-left: none;
+ border-right: 1px solid #fabd23;
+}
/* the tabs */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment