This commit is contained in:
Stefan Ostermann 2025-07-27 12:43:26 +02:00
parent 177530d030
commit 2cb55b1304
1 changed files with 32 additions and 6 deletions

View File

@ -187,20 +187,46 @@ li {
box-sizing: border-box; box-sizing: border-box;
} }
#editMappingForm button {
background-color: #28a745; /* ====== General mobile-friendly input & button styling ====== */
color: white; input[type="text"],
input[type="file"],
input[type="range"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
margin: 8px 0;
box-sizing: border-box;
font-size: 16px;
}
label {
display: block;
margin: 10px 0 5px 0;
font-weight: bold;
color: #333;
}
button {
background-color: #007bff;
color: #fff;
border: none; border: none;
padding: 10px 20px; padding: 10px 20px;
border-radius: 4px; border-radius: 4px;
cursor: pointer; cursor: pointer;
font-size: 16px; font-size: 16px;
margin-top: 10px;
transition: background-color 0.3s ease; transition: background-color 0.3s ease;
margin: 5px 0;
} }
#editMappingForm button:hover { button:hover:not(:disabled) {
background-color: #218838; background-color: #0056b3;
}
button:disabled {
background-color: #6c757d;
cursor: not-allowed;
} }
/* Responsive design improvements */ /* Responsive design improvements */