Difference between revisions of "User:Stargazer/common.css"

From The Coppermind
Jump to navigation Jump to search
m (Silly me, the class isn't on the entire blockquote element; that would make things worse)
m (It works, but I don't actually want this to implement for me in Vector, so I'm commenting it out)
Line 7: Line 7:
 
}
 
}
   
  +
/* Fix to allow quotes from the Stormfather (and all other span elements) in {{t|quote}} in Pivot, but still remove the purple quote marks. To implement, add:
blockquote span.quote-mark {
 
  +
class="quote-mark"
display:none;
 
  +
to the span elements around the quote marks in {{t|quote}} and replace:
}
 
 
blockquote span { display: none; }
  +
in MediaWiki:Pivot.css with:
 
blockquote span.quote-mark { display:none; }
  +
*/

Revision as of 06:15, 16 August 2020

div[id*='mw-indicator-series'] {
    float: left;
}

#top-notice-ns {
    display:none;
}

/* Fix to allow quotes from the Stormfather (and all other span elements) in {{t|quote}} in Pivot, but still remove the purple quote marks. To implement, add:
    class="quote-mark"
to the span elements around the quote marks in {{t|quote}} and replace:
    blockquote span { display: none; }
in MediaWiki:Pivot.css with:
    blockquote span.quote-mark { display:none; }
*/