41 lines
763 B
CSS
41 lines
763 B
CSS
|
|
|
|
#formFilters .container.save.button-cancel {
|
|
display: none;
|
|
}
|
|
|
|
#tableMain tbody > div {
|
|
width: 49vh;
|
|
}
|
|
|
|
/*
|
|
#tableMain tbody tr td.date_from.date_to div {
|
|
height: 3vh;
|
|
}
|
|
*/
|
|
#tableMain thead tr th.name,
|
|
#tableMain tbody tr td.name {
|
|
min-width: 43vw;
|
|
max-width: 43vw;
|
|
}
|
|
#tableMain thead tr th.is-calendar-entry-type-bill,
|
|
#tableMain tbody tr td.is-calendar-entry-type-bill {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 450px) {
|
|
#tableMain {
|
|
max-width: 90vw;
|
|
}
|
|
#tableMain thead tr th.date_from,
|
|
#tableMain tbody tr td.date_from {
|
|
min-width: 20vw;
|
|
max-width: 20vw;
|
|
}
|
|
#tableMain thead tr th.price,
|
|
#tableMain tbody tr td.price {
|
|
min-width: 12vw;
|
|
max-width: 12vw;
|
|
}
|
|
}
|