Mudanças entre as edições de "MediaWiki:Common.css"
Página de Interface do MediaWiki
| Linha 16: | Linha 16: | ||
li#ca-viewsource{ | li#ca-viewsource{ | ||
display: none; | display: none; | ||
} | } | ||
| Linha 72: | Linha 65: | ||
background-color: var(--color-destructive); | background-color: var(--color-destructive); | ||
opacity: 90%; | opacity: 90%; | ||
} | |||
/* dialog discussões */ | |||
.background_dialog{ | |||
display: none; | |||
z-index: 100000; | |||
background: rgba(255,255,255,.5); | |||
height: 100vh; | |||
width: 100vw; | |||
position: fixed; | |||
top: 0; | |||
justify-content: center; | |||
align-items: center; | |||
} | |||
#dialog_discussao_wiki_dev{ | |||
display: flex; | |||
border: none; | |||
flex-direction: column; | |||
border-radius: 2rem; | |||
height: 50vh; | |||
width: 50vw; | |||
box-shadow: 0 3px 6px rgb(0 0 0 / 20%), 0 3px 6px rgb(0 0 0 / 30%); | |||
} | |||
.close_dialog_discussao_wiki_dev{ | |||
height: 1em; | |||
width: 1em; | |||
background: red; | |||
align-self: end; | |||
color: white; | |||
border-radius: 25%; | |||
cursor: pointer; | |||
} | |||
#dialog_discussao_wiki_dev iframe{ | |||
width: 50vw; | |||
height: 50vh; | |||
display: flex; | |||
} | |||
@media (max-width: 800px){ | |||
#dialog_discussao_wiki_dev{ | |||
width: 85vw; | |||
} | |||
#dialog_discussao_wiki_dev iframe{ | |||
width: 85vw; | |||
} | |||
} | |||
/* Remove a ilustração em categorias quando o tamanho da tela for menor que 720px */ | |||
@media (max-width: 720px){ | |||
.page-Página_principal img{ | |||
display: none; | |||
} | |||
} | } | ||
Edição das 09h51min de 3 de dezembro de 2022
/*seção de revisão*/
#mw-fr-reviewnotice, .fr-make-under-review, #mw-fr-ratingselects, #mw-fr-submit-reject{
display: none;
}
.fr-rating-controls{
display: flex;
margin: 0px;
}
/* Adiciona cor ao link da lincença de rodapé */
.mw-footer a, .mw-footer a:hover{
color: var(--color-link);
}
/* Remove botão do visualiza código fonte */
li#ca-viewsource{
display: none;
}
/* Remove opção de edição de secao */
#mw-content-text .mw-parser-output .mw-editsection{
display: none;
}
/* Remover botão para edição com wikitexto */
.ve-available #ca-edit{
display: none !important;
}
/* correção de page-actions-more */
.ve-available .page-actions-more{
margin-left: 12px;
}
/* correção de erro visual */
#p-personal ul{
display:flex;
flex-direction:column;
}
#pt-userpage{
order: -1;
}
#mw-moderation-submit-accept{
background: var(--color-primary);
color: #fff;
padding: 0.5rem;
border-radius: 10px;
margin-right: .5rem;
}
#mw-moderation-submit-accept:hover{
background-color: var(--color-primary--hover);
}
#mw-moderation-submit-reject{
background: var(--color-destructive);
color: #fff;
cursor: pointer;
padding: 0.5rem;
border-radius: 10px;
margin-top: .5rem;
}
#mw-moderation-submit-reject:hover{
background-color: var(--color-destructive);
opacity: 90%;
}
/* dialog discussões */
.background_dialog{
display: none;
z-index: 100000;
background: rgba(255,255,255,.5);
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
justify-content: center;
align-items: center;
}
#dialog_discussao_wiki_dev{
display: flex;
border: none;
flex-direction: column;
border-radius: 2rem;
height: 50vh;
width: 50vw;
box-shadow: 0 3px 6px rgb(0 0 0 / 20%), 0 3px 6px rgb(0 0 0 / 30%);
}
.close_dialog_discussao_wiki_dev{
height: 1em;
width: 1em;
background: red;
align-self: end;
color: white;
border-radius: 25%;
cursor: pointer;
}
#dialog_discussao_wiki_dev iframe{
width: 50vw;
height: 50vh;
display: flex;
}
@media (max-width: 800px){
#dialog_discussao_wiki_dev{
width: 85vw;
}
#dialog_discussao_wiki_dev iframe{
width: 85vw;
}
}
/* Remove a ilustração em categorias quando o tamanho da tela for menor que 720px */
@media (max-width: 720px){
.page-Página_principal img{
display: none;
}
}