feature: job exporting (resolves #155)

This commit is contained in:
Gary Sharp
2024-12-12 16:02:12 +11:00
parent 90c709c4c1
commit a6b9cd1af2
55 changed files with 3197 additions and 412 deletions
@@ -5514,6 +5514,9 @@ div.form > table > tbody > tr > th.name {
width: 150px;
text-align: right;
}
div.form > table > tbody > tr > td.none {
padding: 0;
}
div.form > table table.sub > tbody > tr:not(:first-child) > th,
div.form > table table.sub > tbody > tr:not(:first-child) > td {
border-top: 1px dashed #aaa;
File diff suppressed because one or more lines are too long
+32
View File
@@ -1000,4 +1000,36 @@
}
#createJobRedirect > div i {
margin-right: 10px;
}
#Jobs_Export #Jobs_Export_SubTypes {
display: none;
padding-left: 10px;
}
#Jobs_Export #Jobs_Export_Fields #Jobs_Export_Fields_Defaults {
font-size: 0.75em;
}
#Jobs_Export #Jobs_Export_Fields th {
font-size: 1.05em;
}
#Jobs_Export #Jobs_Export_Fields th span {
margin-top: 4px;
font-size: 0.8em;
}
#Jobs_Export_Download_Dialog {
padding-top: 20px;
text-align: center;
}
#Jobs_Export_Download_Dialog h4 {
margin-bottom: 30px;
}
#Jobs_Export_Download_Dialog a {
margin-bottom: 20px;
}
#Jobs_Export_Exporting {
padding-top: 50px;
text-align: center;
}
#Jobs_Export_Exporting i {
margin-right: 10px;
color: #1e6dab;
}
+45
View File
@@ -1096,3 +1096,48 @@
}
}
}
#Jobs_Export {
#Jobs_Export_SubTypes {
display: none;
padding-left: 10px;
}
#Jobs_Export_Fields {
#Jobs_Export_Fields_Defaults {
font-size: .75em;
}
th {
font-size: 1.05em;
span {
margin-top: 4px;
font-size: .8em;
}
}
}
}
#Jobs_Export_Download_Dialog {
padding-top: 20px;
text-align: center;
h4 {
margin-bottom: 30px;
}
a {
margin-bottom: 20px;
}
}
#Jobs_Export_Exporting {
padding-top: 50px;
text-align: center;
i {
margin-right: 10px;
color: @StatusInformation;
}
}
File diff suppressed because one or more lines are too long
+3
View File
@@ -1082,6 +1082,9 @@ div.form > table > tbody > tr > th.name {
width: 150px;
text-align: right;
}
div.form > table > tbody > tr > td.none {
padding: 0;
}
div.form > table table.sub > tbody > tr:not(:first-child) > th,
div.form > table table.sub > tbody > tr:not(:first-child) > td {
border-top: 1px dashed #aaa;
+4
View File
@@ -1064,6 +1064,10 @@ div.form {
width: 150px;
text-align: right;
}
& > td.none {
padding: 0;
}
}
}
File diff suppressed because one or more lines are too long