diff options
author | Stan Lo <[email protected]> | 2024-08-15 14:30:58 +0100 |
---|---|---|
committer | git <[email protected]> | 2024-08-15 13:33:00 +0000 |
commit | 923e36ab21f4866dd5087d1f9443cb3e1c43d2c4 (patch) | |
tree | 186bebf5f6d3e85e302b575e0dd730ab62e8742b /test | |
parent | 2a933609e75aa87f27cf1c892a54389d3efed928 (diff) |
[ruby/rdoc] Fix sidebar scroll again and add missing footer back
(https://github.com/ruby/rdoc/pull/1154)
* Add missing footers
In #1152 the footer partial was only added to the index.rhtml file.
This commit adds the footer partial to the other template files.
* Remove unnecessary middle divs in nav
* Simplify sidebar's overflow settings
Because sidebar needs to be scrollable, its overflow should default to auto.
Currently it's set to hidden and force individual elements to set overflow auto,
which overcomplicates things.
https://github.com/ruby/rdoc/commit/b8c2bcd8db
Diffstat (limited to 'test')
-rw-r--r-- | test/rdoc/test_rdoc_generator_darkfish.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rdoc/test_rdoc_generator_darkfish.rb b/test/rdoc/test_rdoc_generator_darkfish.rb index 96319bb4f7..899e697de6 100644 --- a/test/rdoc/test_rdoc_generator_darkfish.rb +++ b/test/rdoc/test_rdoc_generator_darkfish.rb @@ -115,7 +115,7 @@ class TestRDocGeneratorDarkfish < RDoc::TestCase assert_match(%r[Klass/Inner\.html".*>Inner<], summary) klass = File.binread('Klass.html') - klassnav = klass[%r[<div class="nav-section">.*<div id="class-metadata">]m] + klassnav = klass[%r[<div class="nav-section">.*]m] assert_match( %r[<li>\s*<details open>\s*<summary>\s*<a href=\S+>Heading 1</a>\s*</summary>\s*<ul]m, klassnav |