22 lines
351 B
CSS
22 lines
351 B
CSS
@media(max-width: 1000px)
|
|
{
|
|
table.uwt-formview
|
|
{
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.uwt-formview > tbody > tr > td
|
|
{
|
|
display: block;
|
|
}
|
|
table.uwt-formview > tbody > tr > td:first-child
|
|
{
|
|
margin-bottom: 0px;
|
|
}
|
|
table.uwt-formview > tbody > tr > td > input:not([type=checkbox])
|
|
{
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|