r77202 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r77201‎ | r77202 | r77203 >
Date:23:06, 23 November 2010
Author:tparscal
Status:deferred
Tags:
Comment:
Resolves bug #25826 - IE has strange off-by-1 errors when using percentages, so we use a negative margin technique which results in 20% -1px, and thus 5px short of 100% left over. By applying borders to the individual steps instead of the steps container, this extra space is invisible.
Modified paths:
  • /trunk/extensions/UploadWizard/resources/uploadWizard.css (modified) (history)

Diff [purge]

Index: trunk/extensions/UploadWizard/resources/uploadWizard.css
@@ -22,15 +22,25 @@
2323 #mwe-upwiz-steps {
2424 background-color: white;
2525 background-image: none;
26 - border: solid 1px #a7d7f9;
 26+ border: none;
2727 }
2828
2929 #mwe-upwiz-steps li {
3030 color: #666666;
3131 font-size: 1.2em;
3232 margin-right: -1px;
 33+ border-top: solid 1px #a7d7f9;
 34+ border-bottom: solid 1px #a7d7f9;
3335 }
3436
 37+#mwe-upwiz-step-tutorial {
 38+ border-left: solid 1px #a7d7f9;
 39+}
 40+
 41+#mwe-upwiz-step-thanks {
 42+ border-right: solid 1px #a7d7f9;
 43+}
 44+
3545 #mwe-upwiz-steps li.head {
3646 color: #000000;
3747 }

Status & tagging log