<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/rdoc/generator/template/darkfish/css/rdoc.css, branch v3_3_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/rdoc] [DOC] Slightly decorate `em` and `strong`</title>
<updated>2023-11-27T16:07:03+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2023-11-27T16:06:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7973eb7c3f6531a41adb9de63d1b3c4d5d4b7d03'/>
<id>7973eb7c3f6531a41adb9de63d1b3c4d5d4b7d03</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/2161157205
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/2161157205
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] [DOC] Improve CSS for "toggle source" hovering over one more method signatures</title>
<updated>2023-07-05T04:09:08+00:00</updated>
<author>
<name>Masafumi Koba</name>
<email>473530+ybiquitous@users.noreply.github.com</email>
</author>
<published>2023-07-05T04:09:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=62b4983416022d3b286b5b1f9fbd908e9a0cfb6d'/>
<id>62b4983416022d3b286b5b1f9fbd908e9a0cfb6d</id>
<content type='text'>
This commit improves the behavior of showing the "toggle source" element on mouseover.

For example, when a method has one more signatures by using `:call-seq:`,

```ruby
# :call-seq:
#   foo {|element| ... } -&gt; self
#   foo -&gt; new_enumeration
def foo
end
```

The current CSS doesn't show "toggle source" even when hovering the second signature `foo -&gt; new_enumeration`.
But this change will show "toggle source" always when hovering over any signature.

For details about the `.method-header` element, see `lib/rdoc/generator/template/darkfish/class.rhtml`:
https://github.com/ruby/rdoc/blob/0e060c69f51ec4a877e5cde69b31d47eaeb2a2b9/lib/rdoc/generator/template/darkfish/class.rhtml#L101-L124

For example, see https://docs.ruby-lang.org/en/3.2/Array.html#method-i-delete
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit improves the behavior of showing the "toggle source" element on mouseover.

For example, when a method has one more signatures by using `:call-seq:`,

```ruby
# :call-seq:
#   foo {|element| ... } -&gt; self
#   foo -&gt; new_enumeration
def foo
end
```

The current CSS doesn't show "toggle source" even when hovering the second signature `foo -&gt; new_enumeration`.
But this change will show "toggle source" always when hovering over any signature.

For details about the `.method-header` element, see `lib/rdoc/generator/template/darkfish/class.rhtml`:
https://github.com/ruby/rdoc/blob/0e060c69f51ec4a877e5cde69b31d47eaeb2a2b9/lib/rdoc/generator/template/darkfish/class.rhtml#L101-L124

For example, see https://docs.ruby-lang.org/en/3.2/Array.html#method-i-delete
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Improve `&lt;summary&gt;` CSS on sidebar</title>
<updated>2023-05-26T16:26:46+00:00</updated>
<author>
<name>Masafumi Koba</name>
<email>473530+ybiquitous@users.noreply.github.com</email>
</author>
<published>2023-05-26T13:52:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=94e5ecbbdd9ea1610dd8aaa55a6f9aa3ddb15ab1'/>
<id>94e5ecbbdd9ea1610dd8aaa55a6f9aa3ddb15ab1</id>
<content type='text'>
- Use a smaller font size for the toggle symbol. (Currently, it seems a little too large)
- Use the child combinator (`&gt;`) to unify selectors.
- Use `margin-left` instead of whitespace within the `content` property.
- Use `::` instead of outdated `:` for the pseudo-element symbol.
  (See https://developer.mozilla.org/en-US/docs/Web/CSS/::before)

https://github.com/ruby/rdoc/commit/61ce0a7d75
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use a smaller font size for the toggle symbol. (Currently, it seems a little too large)
- Use the child combinator (`&gt;`) to unify selectors.
- Use `margin-left` instead of whitespace within the `content` property.
- Use `::` instead of outdated `:` for the pseudo-element symbol.
  (See https://developer.mozilla.org/en-US/docs/Web/CSS/::before)

https://github.com/ruby/rdoc/commit/61ce0a7d75
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Improve layout CSS</title>
<updated>2023-05-26T16:24:57+00:00</updated>
<author>
<name>Masafumi Koba</name>
<email>473530+ybiquitous@users.noreply.github.com</email>
</author>
<published>2023-05-26T15:21:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=54b7ce0bff461aae5492afd6df421669cbf1a73a'/>
<id>54b7ce0bff461aae5492afd6df421669cbf1a73a</id>
<content type='text'>
- Use the `grid` property for the page layout.
  - https://caniuse.com/css-grid
- Adjust the `&lt;main&gt;` margin.
- Make the sidebar responsive and resizable.
  - https://caniuse.com/css-math-functions
  - https://caniuse.com/css-resize

Note all modern browsers support the new CSS properties and functions used by this change.

https://github.com/ruby/rdoc/commit/2db5097c41
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use the `grid` property for the page layout.
  - https://caniuse.com/css-grid
- Adjust the `&lt;main&gt;` margin.
- Make the sidebar responsive and resizable.
  - https://caniuse.com/css-math-functions
  - https://caniuse.com/css-resize

Note all modern browsers support the new CSS properties and functions used by this change.

https://github.com/ruby/rdoc/commit/2db5097c41
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Allow method source code to scroll [ci skip]</title>
<updated>2022-03-20T06:42:56+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-03-20T06:30:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=73541cdc2f192f856ab19781472cdccbf9c21f71'/>
<id>73541cdc2f192f856ab19781472cdccbf9c21f71</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/1bb0496c53
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/1bb0496c53
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Use the custom style `details summary` only in `nav-section`</title>
<updated>2022-03-20T06:38:28+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-03-20T06:24:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=20ad09e560a4bd124c1884c066dee02c79bb95ae'/>
<id>20ad09e560a4bd124c1884c066dee02c79bb95ae</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/7736d3a89c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/7736d3a89c
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Fold class and module index</title>
<updated>2022-03-14T05:48:12+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-03-13T10:44:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=976431d9ed1a144675c24c4e8d510171cfd7c32c'/>
<id>976431d9ed1a144675c24c4e8d510171cfd7c32c</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/4c7c46fcc4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/4c7c46fcc4
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Scrollable sidebar</title>
<updated>2022-03-11T08:38:13+00:00</updated>
<author>
<name>Masafumi Koba</name>
<email>473530+ybiquitous@users.noreply.github.com</email>
</author>
<published>2021-09-11T07:33:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2e4516be26e126ec9e7528d1de0d4a0b7332f6dd'/>
<id>2e4516be26e126ec9e7528d1de0d4a0b7332f6dd</id>
<content type='text'>
This change makes the sidebar scrollable via `position: sticky` and `overflow: auto`;
See also &lt;https://caniuse.com/?search=sticky&gt;

https://github.com/ruby/rdoc/commit/4d52e24840
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change makes the sidebar scrollable via `position: sticky` and `overflow: auto`;
See also &lt;https://caniuse.com/?search=sticky&gt;

https://github.com/ruby/rdoc/commit/4d52e24840
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Add table style</title>
<updated>2021-03-16T06:47:27+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-01-25T16:21:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=10b082064e6ab0943cce4ef43e567d8044c7096d'/>
<id>10b082064e6ab0943cce4ef43e567d8044c7096d</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/2219c5ae80
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/2219c5ae80
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Update Rdoc.css sidebar panel.</title>
<updated>2021-03-16T06:47:27+00:00</updated>
<author>
<name>Pankaj Doharey</name>
<email>pankajdoharey@gmail.com</email>
</author>
<published>2021-01-08T16:59:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=05898c5b9001c0b1e8bd7bf0d12b42a8e7c388b8'/>
<id>05898c5b9001c0b1e8bd7bf0d12b42a8e7c388b8</id>
<content type='text'>
Updates css so the sidebar look like a panel instead of looking like chopped edges.

https://github.com/ruby/rdoc/commit/b0098c6d72
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updates css so the sidebar look like a panel instead of looking like chopped edges.

https://github.com/ruby/rdoc/commit/b0098c6d72
</pre>
</div>
</content>
</entry>
</feed>
