MediaWiki:Common.css: mudanças entre as edições

Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
Linha 1 787: Linha 1 787:
     height: auto;
     height: auto;
     border-radius: 5px;
     border-radius: 5px;
}
.natures
.natures {
  overflow: hidden;
  display:inline-block;
}
.natures td, .natures th {
    border: 1px solid #999;
    padding: 10px;
    position: relative;
}
.natures th {
  background-color:#fff;
}
//Row
.natures td:hover::before {
    background-color: #eee;
    content: ''; 
    height: 100%;
    left: -5000px;
    position: absolute; 
    top: 0;
    width: 10000px; 
    z-index: -2;       
}
//Column
.natures td:hover::after {
    background-color: #ffa;
    content: ''; 
    height: 10000px;   
    left: 0;
    position: absolute; 
    top: -5000px;
    width: 100%;
    z-index: -1;       
}
}