diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2015-08-10 20:06:43 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-08-15 15:03:49 +0300 |
commit | efe8dc9b5771fe51171060170ac002c82f29e317 (patch) | |
tree | 88f198aeb7aceb86512b6bfd21b52a9d860cc14f /printing_templates/Table.html | |
parent | d7f1a6b96e27999795798d066adb1cc8a1887ec3 (diff) | |
download | subsurface-efe8dc9b5771fe51171060170ac002c82f29e317.tar.gz |
Printing: remove the outer border from table template
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Diffstat (limited to 'printing_templates/Table.html')
-rw-r--r-- | printing_templates/Table.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/printing_templates/Table.html b/printing_templates/Table.html index 4d692ef21..0a65b2a92 100644 --- a/printing_templates/Table.html +++ b/printing_templates/Table.html @@ -21,6 +21,11 @@ -webkit-column-break-inside: avoid; padding-top: 1vh; padding-bottom: 1vh; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border:max(1px, 0.1vw); + border-style:solid; + border-color: {{ template_options.color6 }}; } #body_div { @@ -43,11 +48,6 @@ overflow: hidden; width: 100%; margin: 0%; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border:max(0.1vw, 1px); - border-style:solid; - border-color: {{ template_options.color6 }}; } </style> |