23 lines
416 B
CSS
23 lines
416 B
CSS
.table-paraderos td {
|
|
min-width: 150px;
|
|
--margin-input: -.75rem;
|
|
}
|
|
.table-paraderos td:focus {
|
|
background: #80ffa6;
|
|
}
|
|
|
|
.table-paraderos td:has(input) {
|
|
padding: 0;
|
|
--margin-input: 0;
|
|
}
|
|
|
|
.table-paraderos td > input {
|
|
border: none;
|
|
margin: var(--margin-input) 0;
|
|
background-color: transparent;
|
|
padding: .75rem;
|
|
}
|
|
|
|
.table-paraderos td > input:focus {
|
|
background-color: #80ffa6;
|
|
} |