Template:Crossreference/styles.css: Difference between revisions

From All Skies Encyclopaedia
imported>SMcCandlish
(testing attempt to fix the new spacing problem)
imported>SMcCandlish
(Nope, that had no effect at all.)
 
Line 1: Line 1:
/* {{pp-template}} */
/* {{pp-template}} */
/* This snippet just undoes the default spacing of Module:Hatnote. While it's
/* This snippet just undoes the default "padding-left: 1.6em;" imposed by
div.hatnote, when Template:Crossreference is used in block (div) mode.
unlikely our changes here do anything wrong for inline notes, we can't
Ignore the dumb CSS editor's "Element (div.crossreference) is overqualified"
guarantee it forever because the hatnote styles can change. */
warning. It is wrong. We do not want to apply any CSS intended for block
.crossreference {
mode when it is not in block mode. While it's unlikely our "padding-left: 0;"
padding-left: -1.6em;
does anything wrong in inline (span) mode, we can't guarantee it forever. */
margin-bottom: -0.5em;
div.crossreference {
padding-left: 0;
}
}

Latest revision as of 06:50, 12 July 2021

/* {{pp-template}} */
/* This snippet just undoes the default "padding-left: 1.6em;" imposed by
   div.hatnote, when Template:Crossreference is used in block (div) mode.
   Ignore the dumb CSS editor's "Element (div.crossreference) is overqualified"
   warning.  It is wrong.  We do not want to apply any CSS intended for block
   mode when it is not in block mode. While it's unlikely our "padding-left: 0;"
   does anything wrong in inline (span) mode, we can't guarantee it forever.  */
div.crossreference {
    padding-left: 0;
}