« MediaWiki:Vector.css » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
/* Tout CSS placé ici sera chargé avec les pages accédées par les utilisateurs de l’habillage Vector */ | /* Tout CSS placé ici sera chargé avec les pages accédées par les utilisateurs de l’habillage Vector */ | ||
/* COULEUR ET STYLE DES LIENS */ | /* COULEUR ET STYLE DES LIENS */ | ||
/* liens standard, vert vif | /* liens standard, vert vif */ | ||
a | a, a.external { | ||
color: #25b700; | |||
a.external { | } | ||
color: #25b700 | |||
/* liens cliqués, vert foncé */ | /* liens cliqués, vert foncé */ | ||
a:visited, a.external:visited { | a:visited, a.external:visited { | ||
color: #275e00 | color: #275e00; | ||
} | |||
/* 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; | ||
} | |||
/* AUTRES ÉLÉMENTS DE NAVIGATION */ | |||
/* couleur des titres dans la sidebar */ | /* couleur des titres dans la sidebar */ | ||
.vector-menu-heading-label { | .vector-menu-heading-label { | ||
color: #2f2f2f; | color: #2f2f2f; | ||
font-weight: bold;} | font-weight: bold; | ||
} | |||
/* onglets actifs ont le titre en gras */ | /* onglets actifs ont le titre en gras */ | ||
li.selected a span { | li.selected a span { | ||
font-weight: bold | font-weight: bold; | ||
} | |||
/* BACKGROUNDS */ | /* BACKGROUNDS */ | ||
Ligne 37 : | Ligne 35 : | ||
/* background vert pâle pour le corps de la page */ | /* background vert pâle pour le corps de la page */ | ||
body { | body { | ||
background-color: #cdffa9;} | background-color: #cdffa9; | ||
} | |||
/* background vert pâle dégradé sur le header */ | /* background vert pâle dégradé sur le header */ | ||
#mw-head { | #mw-head { | ||
background-image: linear-gradient(white, #cdffa9); | background-image: linear-gradient(white, #cdffa9); | ||
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 : rgba(0, 0, 0, 0) !important; | ||
background-image : none !important;} | background-image : none !important; | ||
} | |||
#right-navigation li { | #right-navigation li { | ||
Ligne 78 : | Ligne 76 : | ||
#searchInput, .thumbimage, .thumbinner { | #searchInput, .thumbimage, .thumbinner { | ||
border-color: orange !important;} | border-color: orange !important;} | ||
Version du 23 janvier 2023 à 15:19
/* 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, a.external { color: #25b700; } /* liens cliqués, vert foncé */ a:visited, a.external:visited { color: #275e00; } /* 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; } /* 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 : rgba(0, 0, 0, 0) !important; background-image : none !important; } #right-navigation li { border-right : 1px dotted #25b700;} .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 */ /* contour de la boite de contenu principale */ .mw-body { border: 1px solid #25b700 !important; } #searchInput, .thumbimage, .thumbinner { border-color: orange !important;}