diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2015-08-07 09:53:34 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-08-15 15:02:33 +0300 |
commit | e0ecccfa7bebaebb532d532f9a40b8d85facdecc (patch) | |
tree | 7466994522048df16a0834e5859c35f6cdb0fc1e /printing_templates/One Dive.html | |
parent | 1dbe10fe278650430beca638976ea7df3b5c76fd (diff) | |
download | subsurface-e0ecccfa7bebaebb532d532f9a40b8d85facdecc.tar.gz |
Printing: fix color numbers in printing templates
After adding the additional 'Table Cells 2' color to the color palette
fix the colors assigned to each field.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Diffstat (limited to 'printing_templates/One Dive.html')
-rw-r--r-- | printing_templates/One Dive.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/printing_templates/One Dive.html b/printing_templates/One Dive.html index 24108c69f..bdf7ab3a7 100644 --- a/printing_templates/One Dive.html +++ b/printing_templates/One Dive.html @@ -20,7 +20,7 @@ box-sizing: border-box; border:max(1px, 0.1vw); border-style:solid; - border-color: {{ template_options.color5 }}; + border-color: {{ template_options.color6 }}; } td { @@ -58,7 +58,7 @@ box-sizing: border-box; border:max(1px, 0.1vw); border-style:solid; - border-color: {{ template_options.color5 }}; + border-color: {{ template_options.color6 }}; float: left; } @@ -77,11 +77,11 @@ .fieldTitle { background-color: {{ template_options.color2 }}; overflow: hidden; - color: {{ template_options.color3 }}; + color: {{ template_options.color4 }}; } .fieldData { - color: {{ template_options.color4 }}; + color: {{ template_options.color5 }}; } .table_class { @@ -98,7 +98,7 @@ .textArea { line-height: {{ template_options.line_spacing }}; - color: {{ template_options.color4 }}; + color: {{ template_options.color5 }}; max-height: 19vh; overflow: hidden; } |