diff options
author | aycabta <[email protected]> | 2019-08-27 21:55:51 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-08-28 00:48:12 +0900 |
commit | 39810b4035beb2a4a3e3b993224eb20ead26e40c (patch) | |
tree | 4ee8a31e59a8efc4ac52e022b5aace07fb8f5173 /lib/rdoc/generator/template/darkfish/css | |
parent | 6454808c52fff445ff09fefb0fb96988f82aaa3c (diff) |
Good bye jQuery
Diffstat (limited to 'lib/rdoc/generator/template/darkfish/css')
-rw-r--r-- | lib/rdoc/generator/template/darkfish/css/rdoc.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/rdoc/generator/template/darkfish/css/rdoc.css b/lib/rdoc/generator/template/darkfish/css/rdoc.css index 47ecae768c..a52e44ff8f 100644 --- a/lib/rdoc/generator/template/darkfish/css/rdoc.css +++ b/lib/rdoc/generator/template/darkfish/css/rdoc.css @@ -9,6 +9,8 @@ /* vim: ft=css et sw=2 ts=2 sts=2 */ /* Base Green is: #6C8C22 */ +.hide { display: none !important; } + * { padding: 0; margin: 0; } body { @@ -48,6 +50,16 @@ h6:hover span { display: inline; } +h1:target, +h2:target, +h3:target, +h4:target, +h5:target, +h6:target { + margin-left: -10px; + border-left: 10px solid #f1edba; +} + :link, :visited { color: #6C8C22; @@ -449,7 +461,16 @@ main header h3 { /* @group Method Details */ main .method-source-code { - display: none; + max-height: 0; + overflow: hidden; + transition-duration: 200ms; + transition-delay: 0ms; + transition-property: all; + transition-timing-function: ease-in-out; +} + +main .method-source-code.active-menu { + max-height: 100vh; } main .method-description .method-calls-super { |