Diferencia entre revisiones de «Usuario:Stargazer/common.css»

De La Coppermind
Ir a la navegación Ir a la búsqueda
m (Undo revision 139472 by Stargazer (talk))
Etiqueta: Deshacer
m (Disambig links in green)
Línea 1: Línea 1:
  +
// Hide ns-wide notices at the top of the page (like the RoW spoiler warning)
div[id*='mw-indicator-series'] {
 
float: left;
 
}
 
 
 
#top-notice-ns {
 
#top-notice-ns {
 
display:none;
 
display:none;
 
}
  +
  +
// Highlight disambig links in green so that they stand out
  +
.mw-disambig {
  +
background-color: #90EE90
  +
}
  +
  +
// Would allow multiple series indicators on a page
 
div[id*='mw-indicator-series'] {
 
float: left;
 
}
 
}
   

Revisión del 20:10 6 mar 2021

// Hide ns-wide notices at the top of the page (like the RoW spoiler warning)
#top-notice-ns {
    display:none;
}

// Highlight disambig links in green so that they stand out
.mw-disambig {
    background-color: #90EE90
}

// Would allow multiple series indicators on a page
div[id*='mw-indicator-series'] {
    float: left;
}

/* 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; }
*/