From d07270015d4d8454aa2b52ea74ae037989d31d63 Mon Sep 17 00:00:00 2001 From: pan261 Date: Mon, 25 Oct 2021 16:03:55 -0400 Subject: [PATCH] updated borders --- Autodesk_Setup_BIDC/setup-sheet.cps | 10 +++++----- Autodesk_Setup_BIDC/setup-sheet.css | 23 ++++++++++++++++++++--- 2 files changed, 25 insertions(+), 8 deletions(-) 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; }