Operation processes on invoices

This commit is contained in:
2026-02-13 00:11:51 +01:00
parent 882752472e
commit fd403f8520
44 changed files with 1635 additions and 42 deletions

View File

@@ -153,6 +153,7 @@ th:after {
.widget-content-item td,
.widget-content-item th {
font-size: 10pt;
padding: 4px 0;
}
.widget-content-item label {

View File

@@ -66,5 +66,6 @@ input[type="submit"]:hover {
.link {
cursor: pointer;
text-decoration: underline;
color: #47a0d8;
font-weight: bold;
color: #2a7caf;
}

View File

@@ -39,3 +39,27 @@ fieldset legend {
background-color: #ffffff;
border-radius: 10px;
}
.invoice-list-table {
width: 90%;
margin: 20px auto;
}
.invoice-list-table td {
border-bottom: 1px solid #c3c4c7;
padding: 10px;
}
.invoice-list-table tr td:first-child {
border-left: 1px solid #c3c4c7;
}
.invoice-list-table tr td:last-child {
border-right: 1px solid #c3c4c7;
}
.invoice-list-table tr:first-child td {
background: linear-gradient(to bottom, #fff, #f6f7f7);
}