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

De BQAM-E - Documentation
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
 
(4 versions intermédiaires par le même utilisateur non affichées)
Ligne 4 : Ligne 4 :


/* liens standard, vert vif */
/* liens standard, vert vif */
a, a.external {
a {
color: #25b700;  
color: #25b700;
}
a.external, a.extiw {
color: #25b700 !important;  
}
}


/* liens cliqués, vert foncé */
/* liens cliqués, vert foncé */
a:visited, a.external:visited {
a:visited, a.external:visited, .exiw:visited {
color: #275e00;
color: #275e00 !important;
}
}


/* mettre tous les liens sur la sidebar, le header  et le footer de la même couleur (indépendamment de s'ils ont été cliqués ou non) */
/* mettre tous les liens sur la sidebar, le header  et le footer de la même couleur (indépendamment de s'ils ont été cliqués ou non) */
#mw-panel a, #mw-head a, #footer-places a, #mw-panel a:visited, #mw-head a:visited, #footer-places a:visited {
#mw-panel a, #mw-head a, #footer-places a, #mw-panel a:visited, #mw-head a:visited, #footer-places a:visited {
color: #153300;
color: #153300 !important;
}
}


Ligne 43 : Ligne 46 :
border-bottom: 1px solid #25b700;
border-bottom: 1px solid #25b700;
}
}


/* onglets en haut de la page non-actifs */
/* onglets en haut de la page non-actifs */
li.mw-list-item a, li.vector-menu-tabs a, li.new.mw-list-item a {
li.mw-list-item a, li.vector-menu-tabs a, li.new.mw-list-item a {
background-color : rgba(0, 0, 0, 0) !important;
background-color : transparent !important;
background-image : none !important;
background-image : none !important;
}
}
#right-navigation li {
border-right : 1px dotted #25b700;}


.vector-menu-tabs .selected {
.vector-menu-tabs .selected {
background-image : linear-gradient(white, rgba(0, 0, 0, 0,)) !important;
background-image : linear-gradient(white, rgba(0, 0, 0, 0,)) !important;
border-radius: 25px 25px 0 0;
border-radius: 25px 25px 0 0;
border-bottom: 2px solid white;
border-bottom: 2px solid white;
border-left : 1px solid #25b700;
border-left : 1px solid #25b700;
border-top : 1px solid #25b700;
border-top : 1px solid #25b700;
border-right : 1px solid #25b700 !important;}
border-right : 1px solid #25b700 !important;}


.vector-menu-tabs li {
.vector-menu-tabs li {
background-image: none !important;}
background-image: none !important;
}




/* CONTOURS */
/* CONTOURS */
#right-navigation li {
border-right : 1px dotted #25b700;
}


/* contour de la boite de contenu principale */
/* contour de la boite de contenu principale */
Ligne 73 : Ligne 77 :
}
}


/* contours orange des images dans les articles et de la barre de recherche */
#searchInput, .thumbimage, .thumbinner {
border-color: orange !important;
}


#searchInput, .thumbimage, .thumbinner {
/* couleur autour des images dans les articles */
border-color: orange !important;}
.thumbinner {
background-color: #ffff7f !important;
}

Dernière version du 23 janvier 2023 à 16:47

/* Tout CSS placé ici sera chargé avec les pages accédées par les utilisateurs de l’habillage Vector */

/* COULEUR ET STYLE DES LIENS */

/* liens standard, vert vif */
a {
	color: #25b700;
}
a.external, a.extiw {
	color: #25b700 !important; 
}

/* liens cliqués, vert foncé */
a:visited, a.external:visited, .exiw:visited {
	color: #275e00 !important;
}

/* mettre tous les liens sur la sidebar, le header  et le footer de la même couleur (indépendamment de s'ils ont été cliqués ou non) */
#mw-panel a, #mw-head a, #footer-places a, #mw-panel a:visited, #mw-head a:visited, #footer-places a:visited {
	color: #153300 !important;
}

/* AUTRES ÉLÉMENTS DE NAVIGATION */

/* couleur des titres dans la sidebar */
.vector-menu-heading-label {
	color: #2f2f2f;
	font-weight: bold;
}

/* onglets actifs ont le titre en gras */
li.selected a span {
	font-weight: bold;
}

/* BACKGROUNDS */

/* background vert pâle pour le corps de la page */
body {
	background-color: #cdffa9;
}

/* background vert pâle dégradé sur le header */
#mw-head {
	background-image: linear-gradient(white, #cdffa9);
	border-bottom: 1px solid #25b700;
}

/* onglets en haut de la page non-actifs */
li.mw-list-item a, li.vector-menu-tabs a, li.new.mw-list-item a {
	background-color : transparent !important;
	background-image : none !important;
}

.vector-menu-tabs .selected {
	background-image : linear-gradient(white, rgba(0, 0, 0, 0,)) !important;
	border-radius: 25px 25px 0 0;
	border-bottom: 2px solid white;
	border-left : 1px solid #25b700;
	border-top : 1px solid #25b700;
	border-right : 1px solid #25b700 !important;}

.vector-menu-tabs li {
	background-image: none !important;
}


/* CONTOURS */

#right-navigation li {
	border-right : 1px dotted #25b700;
}

/* contour de la boite de contenu principale */
.mw-body {
border: 1px solid #25b700 !important;
}

/* contours orange des images dans les articles et de la barre de recherche */
#searchInput, .thumbimage, .thumbinner {
	border-color: orange !important;
}

/* couleur autour des images dans les articles */
.thumbinner {
	background-color: #ffff7f !important;
}