mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-02 23:20:20 +00:00
Printing: use border width from Grantlee backend
Find the border-width dynamically from the Grantlee backend. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
This commit is contained in:
parent
59eddc6259
commit
72b35d8e79
5 changed files with 6 additions and 6 deletions
|
@ -23,7 +23,7 @@
|
||||||
table {
|
table {
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(1px, 0.1vw);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
table {
|
table {
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(1px, 0.1vw);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
float: left;
|
float: left;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(0.1vw, 1px);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
font-size: {{ template_options.font_size }}vw;
|
font-size: {{ template_options.font_size }}vw;
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
padding-bottom: 1vh;
|
padding-bottom: 1vh;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(1px, 0.1vw);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
float: left;
|
float: left;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(0.1vw, 1px);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
float: left;
|
float: left;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border:max(0.1vw, 1px);
|
border-width: {{ template_options.borderwidth }}px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color: {{ template_options.color6 }};
|
border-color: {{ template_options.color6 }};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue