Merge "SpecialPreferences: Remove invalid <strong> tag in successbox"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 3 May 2013 13:56:10 +0000 (13:56 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 3 May 2013 13:56:10 +0000 (13:56 +0000)
1  2 
skins/common/oldshared.css
skins/common/shared.css

@@@ -11,9 -11,8 +11,9 @@@
  h1 { font-size: 2em; }
  h2 { font-size: 1.5em; }
  h3 { font-size: 1.17em; }
 -h5 { font-size: .83em; }
 -h6 { font-size: .75em; }
 +h4 { font-size: 1.11em; }
 +h5 { font-size: 1.05em; }
 +h6 { font-size: 1em; }
  h1, h2, h3, h4, h5, h6 {
        font-weight: bolder;
  }
@@@ -162,9 -161,6 +162,6 @@@ img { border: none; 
  }
  
  /* preference page with js-genrated toc */
- #mw-pref-clear {
-       clear: both;
- }
  #preftoc {
        float: left;
        margin: 1em 1em 1em 1em;
@@@ -459,4 -455,4 +456,4 @@@ html > body.rtl div#bodyContent ul#file
        display: block;
  }
  
 -/* RTL specific CSS ends here **/
 +/* RTL specific CSS ends here **/
diff --combined skins/common/shared.css
@@@ -546,6 -546,7 +546,7 @@@ table.collapsed tr.collapsable 
        float: left;
        margin-bottom: 2em;
        color: #000;
+       font-weight: bold;
  }
  .errorbox {
        border-color: red;
@@@ -1092,36 -1093,9 +1093,36 @@@ table.floatleft 
        z-index: 99;
  }
  
 -.editsection, .toctoggle {
 +.mw-editsection, .editsection, .toctoggle {
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
  }
 +
 +/* Display editsection links smaller and next to headings */
 +.mw-editsection {
 +      font-size: small;
 +      font-weight: normal;
 +      margin-left: 1em;
 +      vertical-align: baseline;
 +      /* Reset line-height; headings tend to have it set to larger values */
 +      line-height: 1em;
 +      /* As .mw-editsection is a <span> (inline element), it is treated as part */
 +      /* of the heading content when selecting text by multiple clicks and thus */
 +      /* selected together with heading content, despite the user-select: none; */
 +      /* rule set above. This enforces non-selection without changing the look. */
 +      display: inline-block;
 +}
 +
 +/* Correct directionality when page dir is different from site/user dir */
 +/* @noflip */
 +.mw-content-ltr .mw-editsection,
 +.mw-content-rtl .mw-content-ltr .mw-editsection {
 +      margin-left: 1em;
 +}
 +/* @noflip */
 +.mw-content-rtl .mw-editsection,
 +.mw-content-ltr .mw-content-rtl .mw-editsection {
 +      margin-right: 1em;
 +}