Widget:AddonsStyle: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
Linha 12: | Linha 12: | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra sutil */ | box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra sutil */ | ||
} | } | ||
.image-container { | .image-container { | ||
display: flex; | display: flex; | ||
Linha 101: | Linha 88: | ||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | ||
z-index: 10; | z-index: 10; | ||
} | |||
#dropdown { | |||
position: absolute; | |||
top: 100%; /* Coloca o dropdown abaixo do input */ | |||
left: 0; | |||
width: 100%; /* Faz o dropdown ter a mesma largura do input */ | |||
max-height: 300px; | |||
overflow-y: auto; | |||
background-color: white; | |||
border-radius: 8px; | |||
border: 1px solid #ccc; | |||
display: none; /* Inicialmente invisível */ | |||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | |||
z-index: 10; | |||
} | |||
.dropdown-item { | |||
padding: 10px; | |||
cursor: pointer; | |||
display: flex; | |||
align-items: center; | |||
} | |||
.dropdown-item:hover { | |||
background-color: #f1f1f1; | |||
} | } | ||
.dropdown-item img { | |||
width: 30px; | |||
height: 30px; | |||
margin-right: 10px; | |||
} | |||
</style> | </style> |
Edição das 23h31min de 23 de dezembro de 2024
<style>
.input-group { margin-bottom: 1em; position: relative; text-align: center; }
.dropdown { border: 1px solid #ccc; display: none; position: absolute; background-color: #fff; max-height: 150px; overflow-y: auto; max-width: 30; /* Ajusta a largura mínima */ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra sutil */ }
.image-container { display: flex; flex-direction: column; align-items: center; justify-content: center; } .image-item { margin-bottom: 1em; text-align: center; } .image-item img { display: block; margin: 0 auto; }
.variations-container { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 1em; }
.variation-item { width: 35%; box-sizing: border-box; margin: 5px; text-align: center; border: 1px solid ; padding: 10px; }
.variation-item img { display: block; margin: 0 auto 10px; }
.swap-button { margin-top: 10px; cursor: pointer; width: 15px; height: 15px; background: url('https://wiki.pokexgames.com/images/f/fb/SwapButtonAddons.png') no-repeat center; background-size: contain; display: block; margin: 0 auto; }
- imageSearch {
width: 30%; padding: 12px 15px; /* Aumenta o tamanho do campo */ font-size: 18px; /* Tamanho da fonte mais legível */ border-radius: 14px; /* Bordas arredondadas */ border: 1px solid #ccc; /* Borda suave */ background-color: #f9f9f9; /* Cor de fundo mais clara */ transition: all 0.3s ease; /* Transição suave para foco */
}
- imageSearch:focus {
border-color: #007bff; /* Borda azul quando em foco */ background-color: #f2e8f8; /* Cor de fundo ao focar */ outline: none; /* Remove o contorno padrão */
}
- dropdown {
position: absolute; top: 100%; /* Coloca o dropdown abaixo do input */ left: 0; width: 30%; /* Faz o dropdown ter a mesma largura do input */ max-height: 300px; overflow-y: auto; background-color: white; border-radius: 8px; border: 1px solid #ccc; display: none; /* Inicialmente invisível */ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); z-index: 10;
}
- dropdown {
position: absolute; top: 100%; /* Coloca o dropdown abaixo do input */ left: 0; width: 100%; /* Faz o dropdown ter a mesma largura do input */ max-height: 300px; overflow-y: auto; background-color: white; border-radius: 8px; border: 1px solid #ccc; display: none; /* Inicialmente invisível */ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); z-index: 10;
}
.dropdown-item {
padding: 10px; cursor: pointer; display: flex; align-items: center;
}
.dropdown-item:hover {
background-color: #f1f1f1;
}
.dropdown-item img {
width: 30px; height: 30px; margin-right: 10px;
} </style>