This commit is contained in:
Professional 2025-05-25 20:56:41 +07:00
parent 90e26544db
commit 895142d203

View File

@ -525,23 +525,25 @@ const clearCitySelection = () => {
top: 100%;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.95); /* Изменение с прозрачного фона на почти непрозрачный белый */
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 12px;
max-height: 200px;
overflow-y: auto;
z-index: 100;
margin-top: 0.2rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Добавляем тень для лучшего визуального разделения */
}
.dropdown-option {
padding: 0.8rem 1rem;
cursor: pointer;
transition: background 0.3s ease;
color: #333; /* Темный цвет текста для контраста с белым фоном */
}
.dropdown-option:hover {
background: rgba(255, 255, 255, 0.2);
background: rgba(102, 126, 234, 0.1); /* Оттенок основного цвета при наведении */
}
.action-button {