« MediaWiki:Common.css » : différence entre les versions

De wiki.sjm.ovh
Aller à :navigation, rechercher
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 38 : Ligne 38 :
.wikiEditor-ui-toolbar {
.wikiEditor-ui-toolbar {
     background-color: #ddd;
     background-color: #ddd;
}
/**
* Styling for links generated by [[MediaWiki:Edittools]] in WikimediaUI inspired theme.
* @source https://www.mediawiki.org/wiki/Extension:CharInsert#Styling
* @updated 2020-03-17
*/
.mw-charinsert-buttons {
margin-top: 8px;
border: 1px solid #c8ccd1;
padding: 2px 4px 4px;
font-size: 1.1em;
text-align: center;
}
.mw-charinsert-buttons a {
background-color: #f8f9fa !important;
color: #202122;
border: thin #36c outset;
padding: 0 1px 2px;
font-size: 0.9em;
font-weight: bold;
text-decoration: none;
}
.mw-charinsert-buttons a:hover {
background-color: #fff;
    color: #404244;
}
.mw-charinsert-buttons a:active {
background-color: #c8ccd1;
border-style: inset;
}
.client-js .mw-edittools-section {
display: inline;
}
.client-js .mw-edittools-section input[type="button"] {
background-color: #f8f9fa;
color: #202122;
margin-left: 1px;
    border-radius: 2px;
padding: 1px 6px;
font-size: 0.9em;
    /* Apply pointer cursor to all interactive elements. */
    cursor: pointer;
}
.client-js .mw-edittools-section input[type="button"]:hover {
background-color: #fff;
    color: #404244;
}
.client-js .mw-edittools-section input[type="button"]:active {
background-color: #c8ccd1;
    color: #000;
}
}

Version du 19 avril 2024 à 08:46

/* Le CSS placé ici sera appliqué à tous les habillages. */
body {
    font-family: "Lato", "Open Sans", Arial, sans-serif;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

a, a.external, a.extiw, a:visited, a.external:visited, .mw-parser-output a.extiw:visited, .mw-parser-output a.external:visited {
    color: #ffc107;
}

a:hover {
	color: #b98c05;
}

.catlinks {
    background-color: transparent;
}

.mw-content-ltr.mw-highlight-lines pre, .mw-content-ltr.content .mw-highlight-lines pre {
    box-shadow: inset 2.75em 0 0 #222222;
}

pre {
    color: #eeeeee;
    background-color: #000000;
}

code, .mw-code {
    color: #eeeeee;
    background-color: #000000;
    border: 1px solid #222222;
}

.wikiEditor-ui-toolbar {
    background-color: #ddd;
}

/**
 * Styling for links generated by [[MediaWiki:Edittools]] in WikimediaUI inspired theme.
 * @source https://www.mediawiki.org/wiki/Extension:CharInsert#Styling
 * @updated 2020-03-17
 */
.mw-charinsert-buttons {
	margin-top: 8px;
	border: 1px solid #c8ccd1;
	padding: 2px 4px 4px;
	font-size: 1.1em;
	text-align: center;
}

.mw-charinsert-buttons a {
	background-color: #f8f9fa !important;
	color: #202122;
	border: thin #36c outset;
	padding: 0 1px 2px;
	font-size: 0.9em;
	font-weight: bold;
	text-decoration: none;
}

.mw-charinsert-buttons a:hover {
	background-color: #fff;
    color: #404244;
}

.mw-charinsert-buttons a:active {
	background-color: #c8ccd1;
	border-style: inset;
}

.client-js .mw-edittools-section {
	display: inline;
}

.client-js .mw-edittools-section input[type="button"] {
	background-color: #f8f9fa;
	color: #202122;
	margin-left: 1px;
    border-radius: 2px;
	padding: 1px 6px;
	font-size: 0.9em;
    /* Apply pointer cursor to all interactive elements. */
    cursor: pointer;
}

.client-js .mw-edittools-section input[type="button"]:hover {
	background-color: #fff;
    color: #404244;
}

.client-js .mw-edittools-section input[type="button"]:active {
	background-color: #c8ccd1;
    color: #000;
}