« MediaWiki:Vector.css » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(62 versions intermédiaires par le même utilisateur non affichées) | |||
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 */ | |||
/* liens standard, vert vif */ | /* liens standard, vert vif */ | ||
a { | a { | ||
color: #25b700; } | color: #25b700; | ||
} | |||
a.external, a.extiw { | |||
color: #25b700 !important; | |||
} | |||
/* | /* liens cliqués, vert foncé */ | ||
/* span { | 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 */ | /* background vert pâle pour le corps de la page */ | ||
body { | body { | ||
background-color: # | 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; | |||
background-image: | } | ||
/* CONTOURS */ | |||
#right-navigation li { | |||
border-right : 1px dotted #25b700; | |||
} | |||
/* contour de la boite de contenu principale */ | /* contour de la boite de contenu principale */ | ||
.mw-body { | .mw-body { | ||
border: 1px solid | 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; | |||
} |
Dernière version du 23 janvier 2023 à 15: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; }