metanorma-bipm 2.2.0 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/isodoc/bipm/base_convert.rb +0 -28
- data/lib/isodoc/bipm/bipm.brochure.xsl +317 -234
- data/lib/isodoc/bipm/bipm.guide.xsl +317 -234
- data/lib/isodoc/bipm/bipm.mise-en-pratique.xsl +317 -234
- data/lib/isodoc/bipm/bipm.rapport.xsl +317 -234
- data/lib/isodoc/bipm/html/htmlstyle.css +35 -3
- data/lib/isodoc/bipm/jcgm.standard.xsl +259 -188
- data/lib/isodoc/bipm/presentation_xml_convert.rb +18 -0
- data/lib/metanorma/bipm/isodoc.rng +11 -1
- data/lib/metanorma/bipm/version.rb +1 -1
- metadata +2 -2
@@ -132,6 +132,35 @@ a.FootnoteRef + a.FootnoteRef:before {
|
|
132
132
|
color: red;
|
133
133
|
text-decoration: line-through; }
|
134
134
|
|
135
|
+
/* code highlighting with line numbers */
|
136
|
+
table.rouge-line-table td.rouge-gutter {
|
137
|
+
-moz-user-select: none;
|
138
|
+
-ms-user-select: none;
|
139
|
+
-webkit-user-select: none;
|
140
|
+
user-select: none;
|
141
|
+
padding-right: 1em; }
|
142
|
+
|
143
|
+
table.rouge-line-table td.rouge-code {
|
144
|
+
-moz-user-select: all;
|
145
|
+
-ms-user-select: all;
|
146
|
+
-webkit-user-select: all;
|
147
|
+
user-select: all; }
|
148
|
+
|
149
|
+
table.rouge-line-table,
|
150
|
+
table.rouge-line-table th,
|
151
|
+
table.rouge-line-table td {
|
152
|
+
width: auto;
|
153
|
+
border: none;
|
154
|
+
margin: 0;
|
155
|
+
padding: 0;
|
156
|
+
font-size: 100%; }
|
157
|
+
|
158
|
+
table.rouge-line-table pre {
|
159
|
+
margin: 0;
|
160
|
+
padding: 0;
|
161
|
+
overflow-x: visible;
|
162
|
+
font-size: 100%; }
|
163
|
+
|
135
164
|
#brochure-band {
|
136
165
|
background-color: #0AC442; }
|
137
166
|
|
@@ -550,8 +579,11 @@ a:hover {
|
|
550
579
|
background: #6C734A;
|
551
580
|
box-shadow: 3px 0 0 #6C734A, -3px 0 0 #6C734A; }
|
552
581
|
|
553
|
-
|
554
|
-
|
582
|
+
*::selection {
|
583
|
+
background: #6C734A;
|
584
|
+
color: white; }
|
585
|
+
|
586
|
+
*::-moz-selection {
|
555
587
|
background: #6C734A;
|
556
588
|
color: white; }
|
557
589
|
|
@@ -749,7 +781,7 @@ table {
|
|
749
781
|
table th, table td {
|
750
782
|
padding: 1em; }
|
751
783
|
table td.header {
|
752
|
-
font-
|
784
|
+
font-weight: 400; }
|
753
785
|
|
754
786
|
p.TableTitle {
|
755
787
|
text-align: center;
|