metanorma-ogc 2.7.1 → 2.7.3

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: 903d5e8977a29db6ae004e5094495ddeec3f0d04f260a653b0eb4f27bd7f5676
4
- data.tar.gz: 47169b8fe430e0b87d8fd620b081521936d71bd12fe41e2f34393b17a0f6a9b8
3
+ metadata.gz: 5a2d87dc687554fc027a583d7268c2d1452c197f545c199aec88be336a27a6d4
4
+ data.tar.gz: 34a2174e0c2d832c1adc77af934ebd8a5ce2c6ec54c4d8d2783831d7693c436f
5
5
  SHA512:
6
- metadata.gz: a2c34f186d5c77923df3526bc8bdafe44a59892167a1c3fccd2aa0e2f0a3989f2d40fbe5afef06ed7f8ba2c894a00c68cfbe6f3fbe97874cf06aa7354f87494b
7
- data.tar.gz: 4c2b1923dc572abd83bf3e57ad950c93d5e5ec7c712134fca9333393e7c0624ab766ec410d726aa83533aa8a0735079fa0ef3ed47ea335912d1882763c95a90a
6
+ metadata.gz: 60b2ed504bfd14bbee2a58c71ff944672a785e0c945f2c385088b8c03770970fcbe214e14a444799893a36f7d51bf4c55d599008fdeb1f3a570e60adf48d015e
7
+ data.tar.gz: d6c61850584ee882601901e541ebf292063d8d02b46c94a622fb72237175e3c08ef99c099ecb66499d1f4c33796ecf076341504aef1bb9d5e1089f8ccf504d7d
@@ -90,7 +90,7 @@ module IsoDoc
90
90
  if cell.at("./ancestor::xmlns:table[@class = 'recommendation'] | " \
91
91
  "./ancestor::xmlns:table[@class = 'requirement'] | " \
92
92
  "./ancestor::xmlns:table[@class = 'permission']")
93
- ret[:style] = "vertical-align:top;"
93
+ ret[:style] = "vertical-align:top;#{ret["style"]}"
94
94
  ret[:class] = "recommend"
95
95
  end
96
96
  ret
@@ -311,6 +311,13 @@ h6:hover > a.anchor,
311
311
  padding: 0;
312
312
  }
313
313
 
314
+ svg {
315
+ width: 100%;
316
+ padding-bottom: 92%;
317
+ height: 1px;
318
+ overflow: visible;
319
+ }
320
+
314
321
  #standard-band {
315
322
  background-color: #0AC442;
316
323
  }
@@ -154,8 +154,10 @@ module IsoDoc
154
154
  end
155
155
 
156
156
  def collapsible(html)
157
- html.xpath("//*[@class = 'sourcecode' or @class = 'figure']")
158
- .each do |d|
157
+ x = html.xpath("//*[@class = 'sourcecode' or @class = 'figure']") -
158
+ html.xpath("//*[@class = 'sourcecode' or @class = 'figure']" \
159
+ "//*[@class = 'sourcecode' or @class = 'figure']")
160
+ x.each do |d|
159
161
  d["class"] += " hidable"
160
162
  d.previous = "<p class='collapsible active'>&#xa0;</p>"
161
163
  end