diff --git a/Autodesk_Setup_BIDC/setup-sheet.cps b/Autodesk_Setup_BIDC/setup-sheet.cps
index e9b5b2d..98df9cc 100644
--- a/Autodesk_Setup_BIDC/setup-sheet.cps
+++ b/Autodesk_Setup_BIDC/setup-sheet.cps
@@ -1206,7 +1206,7 @@ function writeTools() {
)
);
if ((i + 1) < tools.getNumberOfTools()) {
- write("
| | | |
");
+ // write(" | | | |
");
}
writeln("");
writeln("");
@@ -1305,7 +1305,7 @@ function onSectionEnd() {
var notes = getParameter("job-notes");
if (notes) {
c +=
- "" +
+ " |
" +
d(localize("Notes")) + ": " + getParameter("job-notes") +
" |
";
}
@@ -1756,7 +1756,7 @@ function onSectionEnd() {
var notes = getParameter("notes");
if (notes) {
write(
- "" +
+ " |
" +
d(localize("Notes")) + ": " + getParameter("notes") +
" |
"
);
@@ -1764,7 +1764,7 @@ function onSectionEnd() {
}
if (!isLastSection()) {
- write(" |
");
+ // write(" |
");
}
writeln("");
writeln("");
@@ -1875,7 +1875,7 @@ function writeTotals() {
write(
"" +
- "" + c1 + " | " +
+ "" + c1 + " | " +
"
"
);
write("");
diff --git a/Autodesk_Setup_BIDC/setup-sheet.css b/Autodesk_Setup_BIDC/setup-sheet.css
index e0ef9a4..3bd59b5 100644
--- a/Autodesk_Setup_BIDC/setup-sheet.css
+++ b/Autodesk_Setup_BIDC/setup-sheet.css
@@ -53,11 +53,12 @@ th {
background-color: #e0e0e0;
border-radius: 8px;
padding: 0.7rem;
- border-bottom: 2px solid lightslategray;
+ border-bottom-left-radius: 0px;
+ border-bottom-right-radius: 0px;
}
tr.space td {
- border-bottom: 1px solid Gray;
+ border: none;
height: 1px;
font-size: 1px;
}
@@ -104,23 +105,39 @@ tr {
.jobhead td {
font-size: 12pt;
vertical-align: top;
+ border: none;
}
td {
font-size: 1.125rem;
vertical-align: top;
padding: 2.5px;
- border-left: 1px solid black;
+ border-right: 1.5px dashed slategray;
+ border-top: 3px solid slategray;
}
.toolimage {
vertical-align: middle;
+ border-right: none;
}
td.image {
text-align: right;
}
+td.model {
+ border-right: none;
+}
+
+td.total {
+ border-right: none;
+}
+
+td.notesSection {
+ border-top: 1.5px dashed slategray;
+ border-right: none;
+}
+
.notes {
white-space: normal;
}