metanorma-un 0.12.8 → 0.12.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 219c898d77e60a55f391c5435cfd53c33b285394b51c5f754a0bd177261fbc20
4
- data.tar.gz: 223a9a2cdf5c42a3c8e2404640ead1d99e58208fa3c743b36f5fdc3c2f7d5a22
3
+ metadata.gz: d03895c10357482fce33d21c60982d847114eed9f059d63091ee098eef0eeef1
4
+ data.tar.gz: 8b7c614b6f268b632f444b5cd183047a23f4e919ce30bf2b7ba9fd104ae2cb1e
5
5
  SHA512:
6
- metadata.gz: f064ded953d4e110dd098da3216c87fb5651ec3ed0a1a67a906d636a586e4e948079c0a3949ad92c828ae40fe2a98fa4ae87a620fd9579d56115acea82ac621a
7
- data.tar.gz: 9fb904a6da6bcd1476e160699b63e3f361cf785743f6ef511fe6774f2eb15e646a228c5cec43ae34e5a2dd032cd1ced256f5974b53d3ebedd5dd4103bd5af0f2
6
+ metadata.gz: 076be2f177b2f186ff2261c365c227c16cd2ad4c726d01f745261e37a2434555c0af2a987d96a4b9ba2f21016fdfe4d3cccb3f78720b44fed5f5668909235408
7
+ data.tar.gz: d4ac6ba1b5e407b864f090f9b533e35313a7825ba155eed221374910afd3c774b6e7d7ab1e78006294b97e1b517e2d71820c202e1b04b5b21f6878a226085ceb
@@ -27,13 +27,13 @@ module IsoDoc
27
27
  end
28
28
 
29
29
  def inline_header_title(out, _node, title)
30
- out.span class: "zzMoveToFollowing" do |s|
30
+ out.span class: "zzMoveToFollowing inline-header" do |s|
31
31
  title&.children&.each { |c2| parse(c2, s) }
32
32
  clausedelimspace(_node, out) if /\S/.match?(title&.text)
33
33
  end
34
34
  end
35
35
 
36
- def is_plenary?(docxml)
36
+ def plenary?(docxml)
37
37
  return true if %w(plenary agenda budgetary).include?(@doctype)
38
38
  return true if docxml&.at(ns("//bibdata/ext/session/*"))
39
39
 
@@ -1,3 +1,4 @@
1
+ @charset "UTF-8";
1
2
  /*
2
3
  0 CSS RESET
3
4
  */
@@ -176,6 +177,58 @@ table.rouge-line-table pre {
176
177
  overflow-x: visible;
177
178
  font-size: 100%; }
178
179
 
180
+ /* header § links */
181
+ a.header {
182
+ color: inherit;
183
+ text-decoration: none; }
184
+
185
+ a.header:hover {
186
+ color: #a53221 !important;
187
+ background: inherit;
188
+ box-shadow: none; }
189
+
190
+ a.header:visited {
191
+ color: inherit;
192
+ text-decoration: none; }
193
+
194
+ a.anchor {
195
+ position: absolute;
196
+ z-index: 1001;
197
+ width: 1.5ex;
198
+ margin-left: -1.5ex;
199
+ display: block;
200
+ text-decoration: none !important;
201
+ visibility: hidden;
202
+ text-align: center;
203
+ font-weight: 400; }
204
+
205
+ a.anchor::before {
206
+ content: "\00A7";
207
+ font-size: .85em;
208
+ display: block;
209
+ padding-top: .1em; }
210
+
211
+ a.anchor:hover {
212
+ color: #a53221;
213
+ background: inherit;
214
+ box-shadow: none; }
215
+
216
+ h1 > a.anchor:hover,
217
+ h2 > a.anchor:hover,
218
+ h3 > a.anchor:hover,
219
+ h4 > a.anchor:hover,
220
+ h5 > a.anchor:hover,
221
+ h6 > a.anchor:hover,
222
+ .inline-header > a.anchor:hover,
223
+ h1:hover > a.anchor,
224
+ h2:hover > a.anchor,
225
+ h3:hover > a.anchor,
226
+ h4:hover > a.anchor,
227
+ h5:hover > a.anchor,
228
+ h6:hover > a.anchor,
229
+ .inline-header:hover > a.anchor {
230
+ visibility: visible; }
231
+
179
232
  #standard-band {
180
233
  background-color: #0AC442; }
181
234
 
@@ -51,7 +51,7 @@ module IsoDoc
51
51
  end
52
52
 
53
53
  def make_body(xml, docxml)
54
- plenary = is_plenary?(docxml)
54
+ plenary = plenary?(docxml)
55
55
  body_attr = { lang: "EN-US", link: "blue", vlink: "#954F72",
56
56
  "xml:lang": "EN-US", class: "container" }
57
57
  if plenary &&