45 lines
829 B
CSS
45 lines
829 B
CSS
|
|
/*
|
|
#formFilters .container-input.filter.active_only {
|
|
}
|
|
*/
|
|
|
|
|
|
#tableMain tbody > div {
|
|
width: 113vh;
|
|
}
|
|
#tableMain {
|
|
max-width: 90vw;
|
|
}
|
|
|
|
td > input,
|
|
td > select,
|
|
td > textarea,
|
|
.container-input > input,
|
|
.container-input > select,
|
|
.container-input > textarea {
|
|
border: 2px solid var(--colour-primary);
|
|
border-radius: 0.5vh;
|
|
}
|
|
|
|
#tableMain tbody tr td table thead tr th.id_variation_type,
|
|
#tableMain tbody tr td table tbody tr td.id_variation_type,
|
|
#tableMain tbody tr td table thead tr th.id_variation,
|
|
#tableMain tbody tr td table tbody tr td.id_variation {
|
|
width: 47.5%;
|
|
}
|
|
|
|
/*
|
|
select.id_variation, select.id_variation_type {
|
|
max-width: 40% !important;
|
|
}
|
|
*/
|
|
|
|
@media screen and (max-width: 850px) {
|
|
#formFilters input,
|
|
#formFilters select {
|
|
max-width: 12vh;
|
|
min-width: 12vh;
|
|
}
|
|
}
|