Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
| Line 17: | Line 17: | ||
position: relative; | position: relative; | ||
display: inline-block; | display: inline-block; | ||
| + | transition: color 0.3s ease; /* Adicionado para transição suave de cor */ | ||
} | } | ||
| Line 80: | Line 81: | ||
} | } | ||
| − | /* Feedback de copiado */ | + | /* Feedback de copiado - CORREÇÃO DO PROBLEMA 2 */ |
| + | .warp-copy.copied { | ||
| + | color: green !important; | ||
| + | } | ||
.warp-copy.copied::after { | .warp-copy.copied::after { | ||
content: "Copied!" !important; | content: "Copied!" !important; | ||
| Line 106: | Line 110: | ||
} | } | ||
| − | /* ========== ÁREA DA IMAGEM ========== */ | + | /* ========== ÁREA DA IMAGEM - CORREÇÃO DO PROBLEMA 1 ========== */ |
.tile-top.tile-image { | .tile-top.tile-image { | ||
display: flex; | display: flex; | ||
| Line 113: | Line 117: | ||
background-color: #949eaa; | background-color: #949eaa; | ||
padding: 0; | padding: 0; | ||
| − | height: | + | min-height: 100px; /* Altura mínima reduzida */ |
| + | height: auto; /* Altura automática */ | ||
overflow: hidden; | overflow: hidden; | ||
width: 100%; | width: 100%; | ||
| Line 124: | Line 129: | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
| + | padding: 10px; /* Espaçamento interno */ | ||
} | } | ||
| Line 148: | Line 154: | ||
} | } | ||
| − | /* ========== ÁREA DE TEXTO ========== */ | + | /* ========== ÁREA DE TEXTO - CORREÇÃO DO PROBLEMA 3 ========== */ |
.tile-bottom { | .tile-bottom { | ||
background: #ffffff; | background: #ffffff; | ||
| Line 168: | Line 174: | ||
font-size: 0.8em; | font-size: 0.8em; | ||
color: #666; | color: #666; | ||
| − | margin-top: | + | margin-top: 5px; /* Corrigido margin negativo */ |
text-align: center; | text-align: center; | ||
font-style: italic; | font-style: italic; | ||
line-height: 1.2; | line-height: 1.2; | ||
| + | border-top: none !important; /* Remove linha extra */ | ||
} | } | ||
| Line 208: | Line 215: | ||
width: var(--custom-width) !important; | width: var(--custom-width) !important; | ||
height: auto !important; | height: auto !important; | ||
| − | max-height: | + | max-height: none !important; /* Remove limite de altura */ |
} | } | ||
Revision as of 16:11, 30 April 2025
/* ========== ESTILOS GERAIS ========== */
a {
text-underline-offset: 0px;
}
.external {
background: none !important;
padding-right: 0 !important;
}
/* ========== WAR COPY (TEXTO E IMAGENS) ========== */
.warp-copy {
color: #0066cc;
cursor: pointer;
text-decoration: underline dotted #0066cc;
text-underline-offset: 2px;
position: relative;
display: inline-block;
transition: color 0.3s ease; /* Adicionado para transição suave de cor */
}
/* Tooltip padrão */
.warp-copy::after {
content: "Copy";
position: absolute;
left: 50%;
background-color: #333;
color: white;
padding: 2px 6px;
border-radius: 3px;
font-size: 12px;
white-space: nowrap;
z-index: 10;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateX(-50%);
transition: all 0.2s;
}
/* Seta do tooltip */
.warp-copy::before {
content: "";
position: absolute;
left: 50%;
border-width: 4px;
border-style: solid;
border-color: #333 transparent transparent transparent;
z-index: 10;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateX(-50%);
}
/* Tooltip PARA TEXTO */
.warp-copy:not(img)::after {
bottom: calc(100% + 5px);
}
.warp-copy:not(img)::before {
bottom: calc(100% + 1px);
}
/* Tooltip PARA IMAGENS */
.tile-top.tile-image .warp-copy::after {
bottom: -25px;
top: auto;
}
.tile-top.tile-image .warp-copy::before {
bottom: -18px;
top: auto;
}
/* Estados de hover */
.warp-copy:hover::after,
.warp-copy:hover::before {
opacity: 1;
visibility: visible;
}
/* Feedback de copiado - CORREÇÃO DO PROBLEMA 2 */
.warp-copy.copied {
color: green !important;
}
.warp-copy.copied::after {
content: "Copied!" !important;
background-color: #4CAF50 !important;
}
/* ========== CONTAINERS DE NPC ========== */
.tile-row {
display: flex;
flex-flow: row wrap;
gap: 15px;
margin-bottom: 1em;
}
.tile-halves {
display: flex;
flex-flow: row wrap;
border: 1px solid #e4eaee;
background: #ffffff;
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
position: relative;
min-width: 150px;
max-width: 200px;
flex: 1 0 auto;
}
/* ========== ÁREA DA IMAGEM - CORREÇÃO DO PROBLEMA 1 ========== */
.tile-top.tile-image {
display: flex;
align-items: center;
justify-content: center;
background-color: #949eaa;
padding: 0;
min-height: 100px; /* Altura mínima reduzida */
height: auto; /* Altura automática */
overflow: hidden;
width: 100%;
}
.tile-top.tile-image a {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px; /* Espaçamento interno */
}
.tile-top.tile-image img {
display: block;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
margin: 0 auto;
object-fit: contain;
transition: 0.4s ease-out;
}
/* Imagens com dimensão personalizada */
.tile-top.tile-image img.custom-size {
width: var(--custom-width, auto);
height: var(--custom-height, auto);
}
/* Efeito hover */
.tile-halves:hover .tile-top img {
transform: scale(1.04);
}
/* ========== ÁREA DE TEXTO - CORREÇÃO DO PROBLEMA 3 ========== */
.tile-bottom {
background: #ffffff;
border-top: 1px solid #e4eaee;
padding: 1rem 1.5rem 0.6rem;
width: 100%;
text-align: center;
}
.tile-bottom.link-button {
align-self: center;
padding: 0;
width: auto;
margin: 0 auto;
max-width: fit-content;
}
.npc-subtitle {
font-size: 0.8em;
color: #666;
margin-top: 5px; /* Corrigido margin negativo */
text-align: center;
font-style: italic;
line-height: 1.2;
border-top: none !important; /* Remove linha extra */
}
/* ========== TÍTULO DO NPC ========== */
.tile-bottom.link-button h2 .warp-copy {
color: #000080;
font-weight: bold;
display: block;
text-align: center;
text-decoration: none;
}
.tile-bottom.link-button h2 {
position: relative;
overflow: visible;
margin: 0;
padding: 0;
white-space: nowrap;
}
/* ========== CLASSES DE TAMANHO ========== */
.npc-image-small {
max-width: 150px !important;
}
.npc-image-medium {
max-width: 200px !important;
}
.npc-image-large {
max-width: 250px !important;
}
/* Redimensionamento customizado */
.npc-custom-size {
width: var(--custom-width) !important;
height: auto !important;
max-height: none !important; /* Remove limite de altura */
}