60 lines
859 B
CSS
60 lines
859 B
CSS
|
|
#formFilters .container {
|
|
max-width: fit-content;
|
|
}
|
|
|
|
thead, tbody {
|
|
padding-top: 0px !important;
|
|
padding-bottom: 0px !important;
|
|
}
|
|
|
|
th {
|
|
|
|
}
|
|
td {
|
|
font-size: min(12px, calc(1vh * 3));
|
|
}
|
|
|
|
th, td {
|
|
min-width: fit-content;
|
|
}
|
|
tr:not(:last-child) > td {
|
|
border-bottom: 1px dashed var(--c_purple_dark);
|
|
}
|
|
td > table > tbody > tr > td {
|
|
border: none !important;
|
|
}
|
|
tr {
|
|
min-height: 1px;
|
|
border-bottom: 1px solid var(--c_purple_dark);
|
|
border-top: 1px solid var(--c_purple_dark);
|
|
padding-bottom: 1vh;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/*
|
|
.row-new {
|
|
visibility: hidden;
|
|
}
|
|
*/
|
|
|
|
table textarea {
|
|
width: 95% !important;
|
|
}
|
|
|
|
table select {
|
|
width: 100% !important;
|
|
}
|
|
|
|
table input {
|
|
width: 90% !important;
|
|
}
|
|
|
|
table button {
|
|
margin: 0.25vh;
|
|
padding: 0.5vh 1vh;
|
|
}
|
|
|
|
tr.delete {
|
|
background-color: red;
|
|
} |