MediaWiki:Common.css : Différence entre versions

De La Garde de Nuit
Aller à : navigation, rechercher
Ligne 42 : Ligne 42 :
 
}  
 
}  
  
/* Default skin for navigation boxes */
 
table.navbox {            /* Navbox container style */
 
    border: 1px solid #aaa;
 
    width: 100%;
 
    margin: auto;
 
    clear: both;
 
    font-size: 88%;
 
    text-align: center;
 
    padding: 1px;
 
}
 
table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
 
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)      */
 
}
 
.navbox-title,
 
.navbox-abovebelow,
 
table.navbox th {
 
    text-align: center;      /* Title and above/below styles */
 
    padding-left: 1em;
 
    padding-right: 1em;
 
}
 
.navbox-group {              /* Group style */
 
    white-space: nowrap;
 
    /* @noflip */text-align: right;
 
    font-weight: bold;
 
    padding-left: 1em;
 
    padding-right: 1em;
 
}
 
.navbox, .navbox-subgroup {
 
    background: #fdfdfd;    /* Background color */
 
}
 
.navbox-list {
 
    border-color: #fdfdfd;  /* Must match background color */
 
}
 
.navbox-title,
 
table.navbox th {
 
    background: #ccccff;    /* Level 1 color */
 
}
 
.navbox-abovebelow,
 
.navbox-group,
 
.navbox-subgroup .navbox-title {
 
    background: #ddddff;    /* Level 2 color */
 
}
 
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
 
    background: #e6e6ff;    /* Level 3 color */
 
}
 
.navbox-even {
 
    background: #f7f7f7;    /* Even row striping */
 
}
 
.navbox-odd {
 
    background: transparent; /* Odd row striping */
 
}
 
 
.collapseButton {          /* 'show'/'hide' buttons created dynamically */
 
    /* @noflip */float: right;          /* by the CollapsibleTables javascript in    */
 
    font-weight: normal;  /* [[MediaWiki:Common.js]] are styled here  */
 
    /* @noflip */text-align: right;    /* so they can be customised.                */
 
    width: auto;
 
}
 
.navbox .collapseButton {  /* In navboxes, the show/hide button balances */
 
    width: 6em;            /* the vde links from [[Template:Navbar]],    */
 
}                          /* so they need to be the same width.        */
 
 
.navbar {                  /* Navbox template links */
 
    font-size: 88%;        /* Default font-size */
 
    font-weight: normal;
 
}
 
.navbox .navbar {
 
    font-size: 100%;      /* Font-size when nested within navbox */
 
}
 
 
 
/* Horizontal List Class
 
 
/* Style for horizontal lists (separator following item).
 
/* Style for horizontal lists (separator following item).
 
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
 
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
Ligne 122 : Ligne 50 :
 
.hlist ol,
 
.hlist ol,
 
.hlist ul {
 
.hlist ul {
    margin: 0;
+
margin: 0;
    padding: 0;
+
padding: 0;
 
}
 
}
 
/* Display list items inline */
 
/* Display list items inline */
Ligne 129 : Ligne 57 :
 
.hlist dt,
 
.hlist dt,
 
.hlist li {
 
.hlist li {
    margin: 0;
+
margin: 0;
    display: inline;
+
display: inline;
 
}
 
}
 
/* Display nested lists inline */
 
/* Display nested lists inline */
Ligne 140 : Ligne 68 :
 
.hlist ol dl, .hlist ol ol, .hlist ol ul,
 
.hlist ol dl, .hlist ol ol, .hlist ol ul,
 
.hlist ul dl, .hlist ul ol, .hlist ul ul {
 
.hlist ul dl, .hlist ul ol, .hlist ul ul {
    display: inline;
+
display: inline;
 
}
 
}
 
/* Hide empty list items */
 
/* Hide empty list items */
 
.hlist .mw-empty-li {
 
.hlist .mw-empty-li {
    display: none;
+
display: none;
 
}
 
}
 
/* Generate interpuncts */
 
/* Generate interpuncts */
 
.hlist dt:after {
 
.hlist dt:after {
    content: ": ";
+
content: ": ";
 
}
 
}
 
.hlist dd:after,
 
.hlist dd:after,
 
.hlist li:after {
 
.hlist li:after {
    content: " · ";
+
content: " · ";
    font-weight: bold;
+
font-weight: bold;
 
}
 
}
 
.hlist dd:last-child:after,
 
.hlist dd:last-child:after,
 
.hlist dt:last-child:after,
 
.hlist dt:last-child:after,
 
.hlist li:last-child:after {
 
.hlist li:last-child:after {
    content: none;
+
content: none;
 
}
 
}
 
/* Add parentheses around nested lists */
 
/* Add parentheses around nested lists */
Ligne 164 : Ligne 92 :
 
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
 
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
 
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
 
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
    content: " (";
+
content: " (";
    font-weight: normal;
+
font-weight: normal;
 
}
 
}
 
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
 
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
 
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
 
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
 
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
 
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
    content: ")";
+
content: ")";
    font-weight: normal;
+
font-weight: normal;
 
}
 
}
 
/* Put ordinals in front of ordered list items */
 
/* Put ordinals in front of ordered list items */
 
.hlist ol {
 
.hlist ol {
    counter-reset: listitem;
+
counter-reset: listitem;
 
}
 
}
 
.hlist ol > li {
 
.hlist ol > li {
    counter-increment: listitem;
+
counter-increment: listitem;
 
}
 
}
 
.hlist ol > li:before {
 
.hlist ol > li:before {
    content: " " counter(listitem) "\a0";
+
content: " " counter(listitem) "\a0";
 
}
 
}
 
.hlist dd ol > li:first-child:before,
 
.hlist dd ol > li:first-child:before,
 
.hlist dt ol > li:first-child:before,
 
.hlist dt ol > li:first-child:before,
 
.hlist li ol > li:first-child:before {
 
.hlist li ol > li:first-child:before {
    content: " (" counter(listitem) "\a0";
+
content: " (" counter(listitem) "\a0";
 +
}
 +
 
 +
/* Unbulleted lists */
 +
.plainlist ol,
 +
.plainlist ul {
 +
line-height: inherit;
 +
list-style: none none;
 +
margin: 0;
 +
}
 +
.plainlist ol li,
 +
.plainlist ul li {
 +
margin-bottom: 0;
 +
}
 +
 
 +
/* Default style for navigation boxes */
 +
.navbox {                    /* Navbox container style */
 +
box-sizing: border-box;
 +
border: 1px solid #a2a9b1;
 +
width: 100%;
 +
clear: both;
 +
font-size: 88%;
 +
text-align: center;
 +
padding: 1px;
 +
margin: 1em auto 0;      /* Prevent preceding content from clinging to navboxes */
 +
}
 +
.navbox .navbox {
 +
margin-top: 0;            /* No top margin for nested navboxes */
 +
}
 +
.navbox + .navbox {
 +
margin-top: -1px;        /* Single pixel border between adjacent navboxes */
 +
}
 +
.navbox-inner,
 +
.navbox-subgroup {
 +
width: 100%;
 +
}
 +
.navbox-group,
 +
.navbox-title,
 +
.navbox-abovebelow {
 +
padding: 0.25em 1em;      /* Title, group and above/below styles */
 +
line-height: 1.5em;
 +
text-align: center;
 +
}
 +
th.navbox-group {            /* Group style */
 +
white-space: nowrap;
 +
/* @noflip */
 +
text-align: right;
 +
}
 +
.navbox,
 +
.navbox-subgroup {
 +
background: #fdfdfd;      /* Background color */
 +
}
 +
.navbox-list {
 +
line-height: 1.5em;
 +
border-color: #fdfdfd;    /* Must match background color */
 +
}
 +
/* cell spacing for navbox cells */
 +
tr + tr > .navbox-abovebelow,
 +
tr + tr > .navbox-group,
 +
tr + tr > .navbox-image,
 +
tr + tr > .navbox-list {    /* Borders above 2nd, 3rd, etc. rows */
 +
border-top: 2px solid #fdfdfd; /* Must match background color */
 +
}
 +
.navbox th,
 +
.navbox-title {
 +
background: #ccccff;      /* Level 1 color */
 +
}
 +
.navbox-abovebelow,
 +
th.navbox-group,
 +
.navbox-subgroup .navbox-title {
 +
background: #ddddff;      /* Level 2 color */
 +
}
 +
.navbox-subgroup .navbox-group,
 +
.navbox-subgroup .navbox-abovebelow {
 +
background: #e6e6ff;      /* Level 3 color */
 +
}
 +
.navbox-even {
 +
background: #f7f7f7;      /* Even row striping */
 +
}
 +
.navbox-odd {
 +
background: transparent;  /* Odd row striping */
 +
}
 +
.navbox .hlist td dl,
 +
.navbox .hlist td ol,
 +
.navbox .hlist td ul,
 +
.navbox td.hlist dl,
 +
.navbox td.hlist ol,
 +
.navbox td.hlist ul {
 +
padding: 0.125em 0;      /* Adjust hlist padding in navboxes */
 +
}
 +
 
 +
/* Default styling for Navbar template */
 +
.navbar {
 +
display: inline;
 +
font-size: 88%;
 +
font-weight: normal;
 +
}
 +
.navbar ul {
 +
display: inline;
 +
white-space: nowrap;
 +
}
 +
.mw-body-content .navbar ul {
 +
line-height: inherit;
 +
}
 +
.navbar li {
 +
word-spacing: -0.125em;
 +
}
 +
.navbar.mini li abbr[title] {
 +
font-variant: small-caps;
 +
border-bottom: none;
 +
text-decoration: none;
 +
cursor: inherit;
 +
}
 +
/* Navbar styling when nested in infobox and navbox */
 +
.infobox .navbar {
 +
font-size: 100%;
 +
}
 +
.navbox .navbar {
 +
display: block;
 +
font-size: 100%;
 +
}
 +
.navbox-title .navbar {
 +
/* @noflip */
 +
float: left;
 +
/* @noflip */
 +
text-align: left;
 +
/* @noflip */
 +
margin-right: 0.5em;
 +
}
 +
 
 +
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
 +
  in [[MediaWiki:Common.js]] are styled here so they can be customised. */
 +
.collapseButton {
 +
/* @noflip */
 +
float: right;
 +
font-weight: normal;
 +
/* @noflip */
 +
margin-left: 0.5em;
 +
/* @noflip */
 +
text-align: right;
 +
width: auto;
 +
}
 +
 
 +
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
 +
.mw-parser-output .mw-collapsible-toggle {
 +
font-weight: normal;
 +
/* @noflip */
 +
text-align: right;
 +
padding-right: 0.2em;
 +
padding-left: 0.2em;
 +
}
 +
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
 +
/* @noflip */
 +
float: left;
 +
/* @noflip */
 +
text-align: left;
 +
}
 +
 
 +
/* Infobox template style */
 +
.infobox {
 +
border: 1px solid #a2a9b1;
 +
border-spacing: 3px;
 +
background-color: #f8f9fa;
 +
color: black;
 +
/* @noflip */
 +
margin: 0.5em 0 0.5em 1em;
 +
padding: 0.2em;
 +
/* @noflip */
 +
float: right;
 +
/* @noflip */
 +
clear: right;
 +
font-size: 88%;
 +
line-height: 1.5em;
 +
}
 +
.infobox caption {
 +
font-size: 125%;
 +
font-weight: bold;
 +
padding: 0.2em;
 +
text-align: center;
 +
}
 +
.infobox td,
 +
.infobox th {
 +
vertical-align: top;
 +
/* @noflip */
 +
text-align: left;
 +
}
 +
.infobox.bordered {
 +
border-collapse: collapse;
 +
}
 +
.infobox.bordered td,
 +
.infobox.bordered th {
 +
border: 1px solid #a2a9b1;
 +
}
 +
.infobox.bordered .borderless td,
 +
.infobox.bordered .borderless th {
 +
border: 0;
 +
}
 +
 
 +
.infobox.sisterproject {
 +
width: 20em;
 +
font-size: 90%;
 +
}
 +
 
 +
.infobox.standard-talk {
 +
border: 1px solid #c0c090;
 +
background-color: #f8eaba;
 +
}
 +
.infobox.standard-talk.bordered td,
 +
.infobox.standard-talk.bordered th {
 +
border: 1px solid #c0c090;
 +
}
 +
 
 +
/* styles for bordered infobox with merged rows */
 +
.infobox.bordered .mergedtoprow td,
 +
.infobox.bordered .mergedtoprow th {
 +
border: 0;
 +
border-top: 1px solid #a2a9b1;
 +
/* @noflip */
 +
border-right: 1px solid #a2a9b1;
 +
}
 +
 
 +
.infobox.bordered .mergedrow td,
 +
.infobox.bordered .mergedrow th {
 +
border: 0;
 +
/* @noflip */
 +
border-right: 1px solid #a2a9b1;
 
}
 
}

Version du 12 janvier 2018 à 10:54

/* Le CSS placé ici sera appliqué à tous les habillages. */

/* make the list of references look smaller */ ol.references { 

   font-size: 100%;

} 

.references-small { font-size: 90%;} 

/* wikitable/prettytable class for skinning normal tables */ 

table.wikitable, table.prettytable { 

  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaa solid;
  border-collapse: collapse;

} 

table.wikitable th, table.wikitable td, table.prettytable th, table.prettytable td { 

  border: 1px #aaa solid;
  padding: 0.2em;

} 

table.wikitable th, table.prettytable th { 

  background: #f2f2f2;
  text-align: center;

} 

table.wikitable caption, table.prettytable caption { 

  margin-left: inherit;
  margin-right: inherit;
  font-weight: bold;

} 

/* Style for horizontal lists (separator following item).
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
   @revision 8 (2016-05-21)
   @author [[User:Edokter]]
 */
.hlist dl,
.hlist ol,
.hlist ul {
	margin: 0;
	padding: 0;
}
/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
	margin: 0;
	display: inline;
}
/* Display nested lists inline */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
.hlist dl dl, .hlist dl ol, .hlist dl ul,
.hlist ol dl, .hlist ol ol, .hlist ol ul,
.hlist ul dl, .hlist ul ol, .hlist ul ul {
	display: inline;
}
/* Hide empty list items */
.hlist .mw-empty-li {
	display: none;
}
/* Generate interpuncts */
.hlist dt:after {
	content: ": ";
}
.hlist dd:after,
.hlist li:after {
	content: " · ";
	font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
	content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
	content: " (";
	font-weight: normal;
}
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
	content: ")";
	font-weight: normal;
}
/* Put ordinals in front of ordered list items */
.hlist ol {
	counter-reset: listitem;
}
.hlist ol > li {
	counter-increment: listitem;
}
.hlist ol > li:before {
	content: " " counter(listitem) "\a0";
}
.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
	content: " (" counter(listitem) "\a0";
}

/* Unbulleted lists */
.plainlist ol,
.plainlist ul {
	line-height: inherit;
	list-style: none none;
	margin: 0;
}
.plainlist ol li,
.plainlist ul li {
	margin-bottom: 0;
}

/* Default style for navigation boxes */
.navbox {                     /* Navbox container style */
	box-sizing: border-box;
	border: 1px solid #a2a9b1;
	width: 100%;
	clear: both;
	font-size: 88%;
	text-align: center;
	padding: 1px;
	margin: 1em auto 0;       /* Prevent preceding content from clinging to navboxes */
}
.navbox .navbox {
	margin-top: 0;            /* No top margin for nested navboxes */
}
.navbox + .navbox {
	margin-top: -1px;         /* Single pixel border between adjacent navboxes */
}
.navbox-inner,
.navbox-subgroup {
	width: 100%;
}
.navbox-group,
.navbox-title,
.navbox-abovebelow {
	padding: 0.25em 1em;      /* Title, group and above/below styles */
	line-height: 1.5em;
	text-align: center;
}
th.navbox-group {             /* Group style */
	white-space: nowrap;
	/* @noflip */
	text-align: right;
}
.navbox,
.navbox-subgroup {
	background: #fdfdfd;      /* Background color */
}
.navbox-list {
	line-height: 1.5em;
	border-color: #fdfdfd;    /* Must match background color */
}
/* cell spacing for navbox cells */
tr + tr > .navbox-abovebelow,
tr + tr > .navbox-group,
tr + tr > .navbox-image,
tr + tr > .navbox-list {    /* Borders above 2nd, 3rd, etc. rows */
	border-top: 2px solid #fdfdfd; /* Must match background color */
}
.navbox th,
.navbox-title {
	background: #ccccff;      /* Level 1 color */
}
.navbox-abovebelow,
th.navbox-group,
.navbox-subgroup .navbox-title {
	background: #ddddff;      /* Level 2 color */
}
.navbox-subgroup .navbox-group,
.navbox-subgroup .navbox-abovebelow {
	background: #e6e6ff;      /* Level 3 color */
}
.navbox-even {
	background: #f7f7f7;      /* Even row striping */
}
.navbox-odd {
	background: transparent;  /* Odd row striping */
}
.navbox .hlist td dl,
.navbox .hlist td ol,
.navbox .hlist td ul,
.navbox td.hlist dl,
.navbox td.hlist ol,
.navbox td.hlist ul {
	padding: 0.125em 0;       /* Adjust hlist padding in navboxes */
}

/* Default styling for Navbar template */
.navbar {
	display: inline;
	font-size: 88%;
	font-weight: normal;
}
.navbar ul {
	display: inline;
	white-space: nowrap;
}
.mw-body-content .navbar ul {
	line-height: inherit;
}
.navbar li {
	word-spacing: -0.125em;
}
.navbar.mini li abbr[title] {
	font-variant: small-caps;
	border-bottom: none;
	text-decoration: none;
	cursor: inherit;
}
/* Navbar styling when nested in infobox and navbox */
.infobox .navbar {
	font-size: 100%;
}
.navbox .navbar {
	display: block;
	font-size: 100%;
}
.navbox-title .navbar {
	/* @noflip */
	float: left;
	/* @noflip */
	text-align: left;
	/* @noflip */
	margin-right: 0.5em;
}

/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
   in [[MediaWiki:Common.js]] are styled here so they can be customised. */
.collapseButton {
	/* @noflip */
	float: right;
	font-weight: normal;
	/* @noflip */
	margin-left: 0.5em;
	/* @noflip */
	text-align: right;
	width: auto;
}

/* Styling for JQuery makeCollapsible, matching that of collapseButton */
.mw-parser-output .mw-collapsible-toggle {
	font-weight: normal;
	/* @noflip */
	text-align: right;
	padding-right: 0.2em;
	padding-left: 0.2em;
}
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
	/* @noflip */
	float: left;
	/* @noflip */
	text-align: left;
}

/* Infobox template style */
.infobox {
	border: 1px solid #a2a9b1;
	border-spacing: 3px;
	background-color: #f8f9fa;
	color: black;
	/* @noflip */
	margin: 0.5em 0 0.5em 1em;
	padding: 0.2em;
	/* @noflip */
	float: right;
	/* @noflip */
	clear: right;
	font-size: 88%;
	line-height: 1.5em;
}
.infobox caption {
	font-size: 125%;
	font-weight: bold;
	padding: 0.2em;
	text-align: center;
}
.infobox td,
.infobox th {
	vertical-align: top;
	/* @noflip */
	text-align: left;
}
.infobox.bordered {
	border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
	border: 1px solid #a2a9b1;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
	border: 0;
}

.infobox.sisterproject {
	width: 20em;
	font-size: 90%;
}

.infobox.standard-talk {
	border: 1px solid #c0c090;
	background-color: #f8eaba;
}
.infobox.standard-talk.bordered td,
.infobox.standard-talk.bordered th {
	border: 1px solid #c0c090;
}

/* styles for bordered infobox with merged rows */
.infobox.bordered .mergedtoprow td,
.infobox.bordered .mergedtoprow th {
	border: 0;
	border-top: 1px solid #a2a9b1;
	/* @noflip */
	border-right: 1px solid #a2a9b1;
}

.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
	border: 0;
	/* @noflip */
	border-right: 1px solid #a2a9b1;
}