wwwjdic 16.0.0 → 16.1.0

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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +10 -1
  3. data/Gemfile +2 -4
  4. data/README.md +5 -4
  5. data/Rakefile +2 -4
  6. data/copyright.md +5 -5
  7. data/examples/basics.rb +2 -4
  8. data/examples/translate.rb +2 -4
  9. data/examples/uri.rb +2 -6
  10. data/html/CHANGELOG.html +34 -24
  11. data/html/COPYING_md.html +22 -23
  12. data/html/Gemfile.html +23 -24
  13. data/html/Object.html +393 -394
  14. data/html/README_md.html +27 -28
  15. data/html/Rakefile.html +23 -24
  16. data/html/WWWJDic.html +42 -43
  17. data/html/WWWJDic/ParsableDuckType.html +35 -36
  18. data/html/WWWJDic/Parser.html +47 -48
  19. data/html/WWWJDic/Parsers.html +28 -29
  20. data/html/WWWJDic/Parsers/Dict.html +47 -48
  21. data/html/WWWJDic/Parsers/Display.html +42 -43
  22. data/html/WWWJDic/Parsers/Key.html +42 -43
  23. data/html/WWWJDic/Parsers/Search.html +38 -39
  24. data/html/WWWJDic/Parsers/Server.html +42 -43
  25. data/html/WWWJDic/Splitter.html +76 -77
  26. data/html/WWWJDic/Utils.html +29 -30
  27. data/html/WWWJDic/Utils/Downloader.html +40 -35
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +52 -45
  29. data/html/WWWJDic/Utils/Raisers.html +43 -44
  30. data/html/WWWJDic/WWWJDic.html +162 -163
  31. data/html/copyright_md.html +27 -28
  32. data/html/created.rid +33 -33
  33. data/html/css/rdoc.css +638 -619
  34. data/html/index.html +26 -27
  35. data/html/js/darkfish.js +84 -84
  36. data/html/js/navigation.js.gz +0 -0
  37. data/html/js/search.js +109 -110
  38. data/html/js/search_index.js +1 -1
  39. data/html/js/search_index.js.gz +0 -0
  40. data/html/js/searcher.js +228 -229
  41. data/html/js/searcher.js.gz +0 -0
  42. data/html/table_of_contents.html +10 -10
  43. data/lib/wwwjdic.rb +3 -5
  44. data/lib/wwwjdic/application.rb +4 -5
  45. data/lib/wwwjdic/constants.rb +11 -5
  46. data/lib/wwwjdic/locales/de.yml +2 -2
  47. data/lib/wwwjdic/locales/en.yml +2 -2
  48. data/lib/wwwjdic/locales/es.yml +2 -2
  49. data/lib/wwwjdic/locales/fr.yml +2 -2
  50. data/lib/wwwjdic/locales/hu.yml +2 -2
  51. data/lib/wwwjdic/locales/it.yml +2 -2
  52. data/lib/wwwjdic/locales/ja.yml +4 -4
  53. data/lib/wwwjdic/locales/nl.yml +2 -2
  54. data/lib/wwwjdic/locales/ru.yml +2 -2
  55. data/lib/wwwjdic/locales/sl.yml +2 -2
  56. data/lib/wwwjdic/locales/sv.yml +2 -2
  57. data/lib/wwwjdic/parser.rb +3 -5
  58. data/lib/wwwjdic/parsers/dict.rb +3 -5
  59. data/lib/wwwjdic/parsers/display.rb +3 -5
  60. data/lib/wwwjdic/parsers/key.rb +3 -5
  61. data/lib/wwwjdic/parsers/search.rb +3 -5
  62. data/lib/wwwjdic/parsers/server.rb +3 -5
  63. data/lib/wwwjdic/utils/downloader.rb +14 -8
  64. data/lib/wwwjdic/utils/raisers.rb +4 -6
  65. data/lib/wwwjdic/utils/splitter.rb +4 -5
  66. data/lib/wwwjdic/version.rb +10 -4
  67. data/test/test_helper.rb +2 -4
  68. data/test/test_wwwjdic.rb +2 -4
  69. data/test/wwwjdic/locales/de.yml +2 -2
  70. data/test/wwwjdic/locales/en.yml +2 -2
  71. data/test/wwwjdic/locales/es.yml +2 -2
  72. data/test/wwwjdic/locales/fr.yml +2 -2
  73. data/test/wwwjdic/locales/hu.yml +2 -2
  74. data/test/wwwjdic/locales/it.yml +2 -2
  75. data/test/wwwjdic/locales/ja.yml +4 -4
  76. data/test/wwwjdic/locales/nl.yml +2 -2
  77. data/test/wwwjdic/locales/ru.yml +2 -2
  78. data/test/wwwjdic/locales/sl.yml +2 -2
  79. data/test/wwwjdic/locales/sv.yml +2 -2
  80. data/test/wwwjdic/locales/test_locales.rb +2 -4
  81. data/test/wwwjdic/parsers/test_dict.rb +2 -4
  82. data/test/wwwjdic/parsers/test_display.rb +2 -4
  83. data/test/wwwjdic/parsers/test_key.rb +2 -4
  84. data/test/wwwjdic/parsers/test_server.rb +2 -4
  85. data/test/wwwjdic/test_application.rb +3 -5
  86. data/test/wwwjdic/test_parsable_duck_type.rb +4 -5
  87. data/test/wwwjdic/utils/test_downloader.rb +2 -4
  88. data/test/wwwjdic/utils/test_raisers.rb +2 -4
  89. data/wwwjdic.gemspec +2 -4
  90. metadata +11 -11
@@ -4,27 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>copyright - wwwjdic 16.0.0</title>
7
+ <title>copyright - wwwjdic 16.1.0</title>
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
11
11
  var index_rel_prefix = "./";
12
12
  </script>
13
13
 
14
- <script src="./js/navigation.js" defer></script>
15
- <script src="./js/search.js" defer></script>
16
- <script src="./js/search_index.js" defer></script>
17
- <script src="./js/searcher.js" defer></script>
18
- <script src="./js/darkfish.js" defer></script>
14
+ <script defer src="./js/navigation.js"></script>
15
+ <script defer src="./js/search.js"></script>
16
+ <script defer src="./js/search_index.js"></script>
17
+ <script defer src="./js/searcher.js"></script>
18
+ <script defer src="./js/darkfish.js"></script>
19
19
 
20
20
  <link href="./css/fonts.css" rel="stylesheet">
21
21
  <link href="./css/rdoc.css" rel="stylesheet">
22
22
 
23
23
 
24
- <body id="top" role="document" class="file">
24
+ <body class="file" id="top" role="document">
25
25
  <nav role="navigation">
26
26
  <div id="project-navigation">
27
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
28
28
  <h2>
29
29
  <a href="./index.html" rel="home">Home</a>
30
30
  </h2>
@@ -36,24 +36,24 @@
36
36
  </div>
37
37
  </div>
38
38
 
39
- <div id="search-section" role="search" class="project-section initially-hidden">
40
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
41
41
  <div id="search-field-wrapper">
42
- <input id="search-field" role="combobox" aria-label="Search"
43
- aria-autocomplete="list" aria-controls="search-results"
44
- type="text" name="search" placeholder="Search" spellcheck="false"
45
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
46
46
  </div>
47
47
 
48
- <ul id="search-results" aria-label="Search Results"
49
- aria-busy="false" aria-expanded="false"
50
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
51
51
  </form>
52
52
  </div>
53
53
 
54
54
  </div>
55
55
 
56
-
56
+
57
57
  <div class="nav-section">
58
58
  <h3>Table of Contents</h3>
59
59
 
@@ -70,8 +70,8 @@
70
70
 
71
71
 
72
72
  <div id="project-metadata">
73
-
74
- <div id="fileindex-section" class="nav-section">
73
+
74
+ <div class="nav-section" id="fileindex-section">
75
75
  <h3>Pages</h3>
76
76
 
77
77
  <ul class="link-list">
@@ -87,11 +87,11 @@
87
87
  </div>
88
88
  </nav>
89
89
 
90
- <main role="main" aria-label="Page copyright.md">
90
+ <main aria-label="Page copyright.md" role="main">
91
91
  <!--
92
92
  wwwjdic
93
93
 
94
- © 2014 Marco Bresciani
94
+ © 2014-2021 Marco Bresciani
95
95
 
96
96
  This file is part of wwwjdic.
97
97
 
@@ -108,17 +108,17 @@ more details.
108
108
  You should have received a copy of the GNU General Public License along
109
109
  with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
110
110
 
111
- SPDX-FileCopyrightText: 2014 Marco Bresciani
111
+ SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
112
112
 
113
113
  SPDX-License-Identifier: FSFAP
114
114
  -->
115
115
  <h1 id="label-Copyright+Notes">Copyright Notes<span><a href="#label-Copyright+Notes">&para;</a> <a href="#top">&uarr;</a></span></h1>
116
116
 
117
- <p>2020-11-10 update.</p>
117
+ <p>2021-08-06 update.</p>
118
118
 
119
119
  <p>wwwjdic</p>
120
120
 
121
- <p>© 2014 Marco Bresciani</p>
121
+ <p>© 2014-2021 Marco Bresciani</p>
122
122
 
123
123
  <p>This file is part of wwwjdic.</p>
124
124
 
@@ -381,7 +381,7 @@ SPDX-License-Identifier: FSFAP
381
381
 
382
382
  <p>wwwjdic</p>
383
383
 
384
- <p>© 2014 Marco Bresciani</p>
384
+ <p>© 2014-2021 Marco Bresciani</p>
385
385
 
386
386
  <p>This file is part of wwwjdic.</p>
387
387
 
@@ -397,7 +397,6 @@ SPDX-License-Identifier: FSFAP
397
397
 
398
398
  <footer id="validator-badges" role="contentinfo">
399
399
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
400
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
400
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
401
401
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
402
402
  </footer>
403
-
data/html/created.rid CHANGED
@@ -1,34 +1,34 @@
1
- Mon, 26 Jul 2021 10:48:17 +0200
2
- CHANGELOG Tue, 05 Jan 2021 13:40:13 +0100
1
+ Tue, 17 Aug 2021 08:39:50 +0200
2
+ CHANGELOG Fri, 06 Aug 2021 16:34:55 +0200
3
3
  COPYING.md Mon, 25 Feb 2019 15:42:16 +0100
4
- Gemfile Thu, 07 Jan 2021 17:39:16 +0100
5
- README.md Fri, 08 Jan 2021 09:28:43 +0100
6
- Rakefile Thu, 07 Jan 2021 17:39:16 +0100
7
- copyright.md Tue, 17 Nov 2020 12:20:01 +0100
8
- examples/basics.rb Thu, 07 Jan 2021 17:39:32 +0100
9
- examples/translate.rb Fri, 08 Jan 2021 08:48:15 +0100
10
- examples/uri.rb Fri, 08 Jan 2021 08:48:48 +0100
11
- lib/wwwjdic/application.rb Fri, 08 Jan 2021 09:13:31 +0100
12
- lib/wwwjdic/constants.rb Thu, 07 Jan 2021 17:39:32 +0100
13
- lib/wwwjdic/parser.rb Mon, 11 Jan 2021 10:27:43 +0100
14
- lib/wwwjdic/parsers/dict.rb Thu, 07 Jan 2021 17:39:31 +0100
15
- lib/wwwjdic/parsers/display.rb Thu, 07 Jan 2021 17:39:31 +0100
16
- lib/wwwjdic/parsers/key.rb Mon, 01 Feb 2021 12:25:50 +0100
17
- lib/wwwjdic/parsers/search.rb Thu, 07 Jan 2021 17:39:32 +0100
18
- lib/wwwjdic/parsers/server.rb Thu, 07 Jan 2021 17:39:31 +0100
19
- lib/wwwjdic/utils/downloader.rb Mon, 01 Feb 2021 11:01:58 +0100
20
- lib/wwwjdic/utils/raisers.rb Thu, 07 Jan 2021 17:39:32 +0100
21
- lib/wwwjdic/utils/splitter.rb Mon, 01 Feb 2021 12:27:49 +0100
22
- lib/wwwjdic/version.rb Thu, 07 Jan 2021 17:39:31 +0100
23
- lib/wwwjdic.rb Thu, 07 Jan 2021 17:39:31 +0100
24
- test/test_helper.rb Thu, 07 Jan 2021 17:39:32 +0100
25
- test/test_wwwjdic.rb Thu, 07 Jan 2021 17:39:31 +0100
26
- test/wwwjdic/locales/test_locales.rb Tue, 19 Jan 2021 09:04:50 +0100
27
- test/wwwjdic/parsers/test_dict.rb Tue, 19 Jan 2021 09:37:33 +0100
28
- test/wwwjdic/parsers/test_display.rb Thu, 07 Jan 2021 17:39:31 +0100
29
- test/wwwjdic/parsers/test_key.rb Thu, 07 Jan 2021 17:39:31 +0100
30
- test/wwwjdic/parsers/test_server.rb Thu, 07 Jan 2021 17:39:31 +0100
31
- test/wwwjdic/test_application.rb Mon, 01 Feb 2021 12:35:00 +0100
32
- test/wwwjdic/test_parsable_duck_type.rb Thu, 07 Jan 2021 17:41:14 +0100
33
- test/wwwjdic/utils/test_downloader.rb Thu, 07 Jan 2021 17:39:32 +0100
34
- test/wwwjdic/utils/test_raisers.rb Tue, 19 Jan 2021 17:05:08 +0100
4
+ Gemfile Mon, 16 Aug 2021 18:07:59 +0200
5
+ README.md Fri, 06 Aug 2021 16:42:04 +0200
6
+ Rakefile Mon, 16 Aug 2021 18:07:59 +0200
7
+ copyright.md Fri, 06 Aug 2021 16:36:45 +0200
8
+ examples/basics.rb Mon, 16 Aug 2021 18:07:59 +0200
9
+ examples/translate.rb Mon, 16 Aug 2021 18:07:59 +0200
10
+ examples/uri.rb Mon, 16 Aug 2021 18:08:00 +0200
11
+ lib/wwwjdic/application.rb Mon, 16 Aug 2021 18:08:00 +0200
12
+ lib/wwwjdic/constants.rb Mon, 16 Aug 2021 18:08:00 +0200
13
+ lib/wwwjdic/parser.rb Mon, 16 Aug 2021 18:08:00 +0200
14
+ lib/wwwjdic/parsers/dict.rb Mon, 16 Aug 2021 18:08:00 +0200
15
+ lib/wwwjdic/parsers/display.rb Mon, 16 Aug 2021 18:08:01 +0200
16
+ lib/wwwjdic/parsers/key.rb Mon, 16 Aug 2021 18:08:01 +0200
17
+ lib/wwwjdic/parsers/search.rb Mon, 16 Aug 2021 18:08:01 +0200
18
+ lib/wwwjdic/parsers/server.rb Mon, 16 Aug 2021 18:08:01 +0200
19
+ lib/wwwjdic/utils/downloader.rb Mon, 16 Aug 2021 17:59:53 +0200
20
+ lib/wwwjdic/utils/raisers.rb Mon, 16 Aug 2021 18:08:01 +0200
21
+ lib/wwwjdic/utils/splitter.rb Mon, 16 Aug 2021 18:08:01 +0200
22
+ lib/wwwjdic/version.rb Mon, 16 Aug 2021 18:08:01 +0200
23
+ lib/wwwjdic.rb Mon, 16 Aug 2021 18:08:00 +0200
24
+ test/test_helper.rb Mon, 16 Aug 2021 18:08:01 +0200
25
+ test/test_wwwjdic.rb Mon, 16 Aug 2021 18:08:01 +0200
26
+ test/wwwjdic/locales/test_locales.rb Mon, 16 Aug 2021 18:08:02 +0200
27
+ test/wwwjdic/parsers/test_dict.rb Mon, 16 Aug 2021 18:08:02 +0200
28
+ test/wwwjdic/parsers/test_display.rb Mon, 16 Aug 2021 18:08:02 +0200
29
+ test/wwwjdic/parsers/test_key.rb Mon, 16 Aug 2021 18:08:02 +0200
30
+ test/wwwjdic/parsers/test_server.rb Mon, 16 Aug 2021 18:08:02 +0200
31
+ test/wwwjdic/test_application.rb Mon, 16 Aug 2021 18:08:02 +0200
32
+ test/wwwjdic/test_parsable_duck_type.rb Mon, 16 Aug 2021 18:08:03 +0200
33
+ test/wwwjdic/utils/test_downloader.rb Mon, 16 Aug 2021 18:08:03 +0200
34
+ test/wwwjdic/utils/test_raisers.rb Mon, 16 Aug 2021 18:08:03 +0200
data/html/css/rdoc.css CHANGED
@@ -1,619 +1,638 @@
1
- /*
2
- * "Darkfish" Rdoc CSS
3
- * $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
4
- *
5
- * Author: Michael Granger <ged@FaerieMUD.org>
6
- *
7
- */
8
-
9
- /* vim: ft=css et sw=2 ts=2 sts=2 */
10
- /* Base Green is: #6C8C22 */
11
-
12
- .hide { display: none !important; }
13
-
14
- * { padding: 0; margin: 0; }
15
-
16
- body {
17
- background: #fafafa;
18
- font-family: Lato, sans-serif;
19
- font-weight: 300;
20
- }
21
-
22
- h1 span,
23
- h2 span,
24
- h3 span,
25
- h4 span,
26
- h5 span,
27
- h6 span {
28
- position: relative;
29
-
30
- display: none;
31
- padding-left: 1em;
32
- line-height: 0;
33
- vertical-align: baseline;
34
- font-size: 10px;
35
- }
36
-
37
- h1 span { top: -1.3em; }
38
- h2 span { top: -1.2em; }
39
- h3 span { top: -1.0em; }
40
- h4 span { top: -0.8em; }
41
- h5 span { top: -0.5em; }
42
- h6 span { top: -0.5em; }
43
-
44
- h1:hover span,
45
- h2:hover span,
46
- h3:hover span,
47
- h4:hover span,
48
- h5:hover span,
49
- h6:hover span {
50
- display: inline;
51
- }
52
-
53
- h1:target,
54
- h2:target,
55
- h3:target,
56
- h4:target,
57
- h5:target,
58
- h6:target {
59
- margin-left: -10px;
60
- border-left: 10px solid #f1edba;
61
- }
62
-
63
- :link,
64
- :visited {
65
- color: #6C8C22;
66
- text-decoration: none;
67
- }
68
-
69
- :link:hover,
70
- :visited:hover {
71
- border-bottom: 1px dotted #6C8C22;
72
- }
73
-
74
- code,
75
- pre {
76
- font-family: "Source Code Pro", Monaco, monospace;
77
- background-color: rgba(27,31,35,0.05);
78
- padding: 0em 0.2em;
79
- border-radius: 0.2em;
80
- }
81
-
82
- /* @group Generic Classes */
83
-
84
- .initially-hidden {
85
- display: none;
86
- }
87
-
88
- #search-field {
89
- width: 98%;
90
- background: white;
91
- border: none;
92
- height: 1.5em;
93
- -webkit-border-radius: 4px;
94
- -moz-border-radius: 4px;
95
- border-radius: 4px;
96
- text-align: left;
97
- }
98
- #search-field:focus {
99
- background: #f1edba;
100
- }
101
- #search-field:-moz-placeholder,
102
- #search-field::-webkit-input-placeholder {
103
- font-weight: bold;
104
- color: #666;
105
- }
106
-
107
- .missing-docs {
108
- font-size: 120%;
109
- background: white url(../images/wrench_orange.png) no-repeat 4px center;
110
- color: #ccc;
111
- line-height: 2em;
112
- border: 1px solid #d00;
113
- opacity: 1;
114
- padding-left: 20px;
115
- text-indent: 24px;
116
- letter-spacing: 3px;
117
- font-weight: bold;
118
- -webkit-border-radius: 5px;
119
- -moz-border-radius: 5px;
120
- }
121
-
122
- .target-section {
123
- border: 2px solid #dcce90;
124
- border-left-width: 8px;
125
- padding: 0 1em;
126
- background: #fff3c2;
127
- }
128
-
129
- /* @end */
130
-
131
- /* @group Index Page, Standalone file pages */
132
- .table-of-contents ul {
133
- margin: 1em;
134
- list-style: none;
135
- }
136
-
137
- .table-of-contents ul ul {
138
- margin-top: 0.25em;
139
- }
140
-
141
- .table-of-contents ul :link,
142
- .table-of-contents ul :visited {
143
- font-size: 16px;
144
- }
145
-
146
- .table-of-contents li {
147
- margin-bottom: 0.25em;
148
- }
149
-
150
- .table-of-contents li .toc-toggle {
151
- width: 16px;
152
- height: 16px;
153
- background: url(../images/add.png) no-repeat;
154
- }
155
-
156
- .table-of-contents li .toc-toggle.open {
157
- background: url(../images/delete.png) no-repeat;
158
- }
159
-
160
- /* @end */
161
-
162
- /* @group Top-Level Structure */
163
-
164
- nav {
165
- float: left;
166
- width: 260px;
167
- font-family: Helvetica, sans-serif;
168
- font-size: 14px;
169
- }
170
-
171
- main {
172
- display: block;
173
- margin: 0 2em 5em 260px;
174
- padding-left: 20px;
175
- min-width: 340px;
176
- font-size: 16px;
177
- }
178
-
179
- main h1,
180
- main h2,
181
- main h3,
182
- main h4,
183
- main h5,
184
- main h6 {
185
- font-family: Helvetica, sans-serif;
186
- }
187
-
188
- .table-of-contents main {
189
- margin-left: 2em;
190
- }
191
-
192
- #validator-badges {
193
- clear: both;
194
- margin: 1em 1em 2em;
195
- font-size: smaller;
196
- }
197
-
198
- /* @end */
199
-
200
- /* @group navigation */
201
- nav {
202
- margin-bottom: 1em;
203
- }
204
-
205
- nav .nav-section {
206
- margin-top: 2em;
207
- border-top: 2px solid #aaa;
208
- font-size: 90%;
209
- overflow: hidden;
210
- }
211
-
212
- nav h2 {
213
- margin: 0;
214
- padding: 2px 8px 2px 8px;
215
- background-color: #e8e8e8;
216
- color: #555;
217
- font-size: 125%;
218
- text-align: center;
219
- }
220
-
221
- nav h3,
222
- #table-of-contents-navigation {
223
- margin: 0;
224
- padding: 2px 8px 2px 8px;
225
- text-align: right;
226
- background-color: #e8e8e8;
227
- color: #555;
228
- }
229
-
230
- nav ul,
231
- nav dl,
232
- nav p {
233
- padding: 4px 8px 0;
234
- list-style: none;
235
- }
236
-
237
- #project-navigation .nav-section {
238
- margin: 0;
239
- border-top: 0;
240
- }
241
-
242
- #home-section h2 {
243
- text-align: center;
244
- }
245
-
246
- #table-of-contents-navigation {
247
- font-size: 1.2em;
248
- font-weight: bold;
249
- text-align: center;
250
- }
251
-
252
- #search-section {
253
- margin-top: 0;
254
- border-top: 0;
255
- }
256
-
257
- #search-field-wrapper {
258
- border-top: 1px solid #aaa;
259
- border-bottom: 1px solid #aaa;
260
- padding: 3px 8px;
261
- background-color: #e8e8e8;
262
- color: #555;
263
- }
264
-
265
- ul.link-list li {
266
- white-space: nowrap;
267
- line-height: 1.4em;
268
- }
269
-
270
- ul.link-list .type {
271
- font-size: 8px;
272
- text-transform: uppercase;
273
- color: white;
274
- background: #969696;
275
- padding: 2px 4px;
276
- -webkit-border-radius: 5px;
277
- }
278
-
279
- dl.note-list dt {
280
- float: left;
281
- margin-right: 1em;
282
- }
283
-
284
- .calls-super {
285
- background: url(../images/arrow_up.png) no-repeat right center;
286
- }
287
-
288
- /* @end */
289
-
290
- /* @group Documentation Section */
291
- main {
292
- color: #333;
293
- }
294
-
295
- main > h1:first-child,
296
- main > h2:first-child,
297
- main > h3:first-child,
298
- main > h4:first-child,
299
- main > h5:first-child,
300
- main > h6:first-child {
301
- margin-top: 0px;
302
- }
303
-
304
- main sup {
305
- vertical-align: super;
306
- font-size: 0.8em;
307
- }
308
-
309
- /* The heading with the class name */
310
- main h1[class] {
311
- margin-top: 0;
312
- margin-bottom: 1em;
313
- font-size: 2em;
314
- color: #6C8C22;
315
- }
316
-
317
- main h1 {
318
- margin: 2em 0 0.5em;
319
- font-size: 1.7em;
320
- }
321
-
322
- main h2 {
323
- margin: 2em 0 0.5em;
324
- font-size: 1.5em;
325
- }
326
-
327
- main h3 {
328
- margin: 2em 0 0.5em;
329
- font-size: 1.2em;
330
- }
331
-
332
- main h4 {
333
- margin: 2em 0 0.5em;
334
- font-size: 1.1em;
335
- }
336
-
337
- main h5 {
338
- margin: 2em 0 0.5em;
339
- font-size: 1em;
340
- }
341
-
342
- main h6 {
343
- margin: 2em 0 0.5em;
344
- font-size: 1em;
345
- }
346
-
347
- main p {
348
- margin: 0 0 0.5em;
349
- line-height: 1.4em;
350
- }
351
-
352
- main pre {
353
- margin: 1.2em 0.5em;
354
- padding: 1em;
355
- font-size: 0.8em;
356
- }
357
-
358
- main hr {
359
- margin: 1.5em 1em;
360
- border: 2px solid #ddd;
361
- }
362
-
363
- main blockquote {
364
- margin: 0 2em 1.2em 1.2em;
365
- padding-left: 0.5em;
366
- border-left: 2px solid #ddd;
367
- }
368
-
369
- main ol,
370
- main ul {
371
- margin: 1em 2em;
372
- }
373
-
374
- main li > p {
375
- margin-bottom: 0.5em;
376
- }
377
-
378
- main dl {
379
- margin: 1em 0.5em;
380
- }
381
-
382
- main dt {
383
- margin-bottom: 0.5em;
384
- font-weight: bold;
385
- }
386
-
387
- main dd {
388
- margin: 0 1em 1em 0.5em;
389
- }
390
-
391
- main header h2 {
392
- margin-top: 2em;
393
- border-width: 0;
394
- border-top: 4px solid #bbb;
395
- font-size: 130%;
396
- }
397
-
398
- main header h3 {
399
- margin: 2em 0 1.5em;
400
- border-width: 0;
401
- border-top: 3px solid #bbb;
402
- font-size: 120%;
403
- }
404
-
405
- .documentation-section-title {
406
- position: relative;
407
- }
408
- .documentation-section-title .section-click-top {
409
- position: absolute;
410
- top: 6px;
411
- left: 12px;
412
- font-size: 10px;
413
- color: #9b9877;
414
- visibility: hidden;
415
- padding-left: 0.5px;
416
- }
417
-
418
- .documentation-section-title:hover .section-click-top {
419
- visibility: visible;
420
- }
421
-
422
- .constants-list > dl {
423
- margin: 1em 0 2em;
424
- border: 0;
425
- }
426
-
427
- .constants-list > dl dt {
428
- margin-bottom: 0.75em;
429
- padding-left: 0;
430
- font-family: "Source Code Pro", Monaco, monospace;
431
- font-size: 110%;
432
- }
433
-
434
- .constants-list > dl dt a {
435
- color: inherit;
436
- }
437
-
438
- .constants-list > dl dd {
439
- margin: 0 0 2em 0;
440
- padding: 0;
441
- color: #666;
442
- }
443
-
444
- .documentation-section h2 {
445
- position: relative;
446
- }
447
-
448
- .documentation-section h2 a {
449
- position: absolute;
450
- top: 8px;
451
- right: 10px;
452
- font-size: 12px;
453
- color: #9b9877;
454
- visibility: hidden;
455
- }
456
-
457
- .documentation-section h2:hover a {
458
- visibility: visible;
459
- }
460
-
461
- /* @group Method Details */
462
-
463
- main .method-source-code {
464
- max-height: 0;
465
- overflow: hidden;
466
- transition-duration: 200ms;
467
- transition-delay: 0ms;
468
- transition-property: all;
469
- transition-timing-function: ease-in-out;
470
- }
471
-
472
- main .method-source-code.active-menu {
473
- max-height: 100vh;
474
- }
475
-
476
- main .method-description .method-calls-super {
477
- color: #333;
478
- font-weight: bold;
479
- }
480
-
481
- main .method-detail {
482
- margin-bottom: 2.5em;
483
- cursor: pointer;
484
- }
485
-
486
- main .method-detail:target {
487
- margin-left: -10px;
488
- border-left: 10px solid #f1edba;
489
- }
490
-
491
- main .method-heading {
492
- position: relative;
493
- font-family: "Source Code Pro", Monaco, monospace;
494
- font-size: 110%;
495
- font-weight: bold;
496
- color: #333;
497
- }
498
- main .method-heading :link,
499
- main .method-heading :visited {
500
- color: inherit;
501
- }
502
- main .method-click-advice {
503
- position: absolute;
504
- top: 2px;
505
- right: 5px;
506
- font-size: 12px;
507
- color: #9b9877;
508
- visibility: hidden;
509
- padding-right: 20px;
510
- line-height: 20px;
511
- background: url(../images/zoom.png) no-repeat right top;
512
- }
513
- main .method-heading:hover .method-click-advice {
514
- visibility: visible;
515
- }
516
-
517
- main .method-alias .method-heading {
518
- color: #666;
519
- }
520
-
521
- main .method-description,
522
- main .aliases {
523
- margin-top: 0.75em;
524
- color: #333;
525
- }
526
-
527
- main .aliases {
528
- padding-top: 4px;
529
- font-style: italic;
530
- cursor: default;
531
- }
532
- main .method-description ul {
533
- margin-left: 1.5em;
534
- }
535
-
536
- main #attribute-method-details .method-detail:hover {
537
- background-color: transparent;
538
- cursor: default;
539
- }
540
- main .attribute-access-type {
541
- text-transform: uppercase;
542
- padding: 0 1em;
543
- }
544
- /* @end */
545
-
546
- /* @end */
547
-
548
- /* @group Source Code */
549
-
550
- pre {
551
- margin: 0.5em 0;
552
- border: 1px dashed #999;
553
- padding: 0.5em;
554
- background: #262626;
555
- color: white;
556
- overflow: auto;
557
- }
558
-
559
- .ruby-constant { color: #7fffd4; background: transparent; }
560
- .ruby-keyword { color: #00ffff; background: transparent; }
561
- .ruby-ivar { color: #eedd82; background: transparent; }
562
- .ruby-operator { color: #00ffee; background: transparent; }
563
- .ruby-identifier { color: #ffdead; background: transparent; }
564
- .ruby-node { color: #ffa07a; background: transparent; }
565
- .ruby-comment { color: #dc0000; background: transparent; }
566
- .ruby-regexp { color: #ffa07a; background: transparent; }
567
- .ruby-value { color: #7fffd4; background: transparent; }
568
-
569
- /* @end */
570
-
571
-
572
- /* @group search results */
573
- #search-results {
574
- font-family: Lato, sans-serif;
575
- font-weight: 300;
576
- }
577
-
578
- #search-results .search-match {
579
- font-family: Helvetica, sans-serif;
580
- font-weight: normal;
581
- }
582
-
583
- #search-results .search-selected {
584
- background: #e8e8e8;
585
- border-bottom: 1px solid transparent;
586
- }
587
-
588
- #search-results li {
589
- list-style: none;
590
- border-bottom: 1px solid #aaa;
591
- margin-bottom: 0.5em;
592
- }
593
-
594
- #search-results li:last-child {
595
- border-bottom: none;
596
- margin-bottom: 0;
597
- }
598
-
599
- #search-results li p {
600
- padding: 0;
601
- margin: 0.5em;
602
- }
603
-
604
- #search-results .search-namespace {
605
- font-weight: bold;
606
- }
607
-
608
- #search-results li em {
609
- background: yellow;
610
- font-style: normal;
611
- }
612
-
613
- #search-results pre {
614
- margin: 0.5em;
615
- font-family: "Source Code Pro", Monaco, monospace;
616
- }
617
-
618
- /* @end */
619
-
1
+ /*
2
+ * "Darkfish" Rdoc CSS
3
+ * $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
4
+ *
5
+ * Author: Michael Granger <ged@FaerieMUD.org>
6
+ *
7
+ */
8
+
9
+ /* vim: ft=css et sw=2 ts=2 sts=2 */
10
+ /* Base Green is: #6C8C22 */
11
+
12
+ .hide { display: none !important; }
13
+
14
+ * { margin: 0; padding: 0; }
15
+
16
+ body {
17
+ background: #fafafa;
18
+ font-family: Lato, sans-serif;
19
+ font-weight: 300;
20
+ }
21
+
22
+ h1 span,
23
+ h2 span,
24
+ h3 span,
25
+ h4 span,
26
+ h5 span,
27
+ h6 span {
28
+ display: none;
29
+
30
+ font-size: 10px;
31
+ line-height: 0;
32
+ padding-left: 1em;
33
+ position: relative;
34
+ vertical-align: baseline;
35
+ }
36
+
37
+ h1 span { top: -1.3em; }
38
+ h2 span { top: -1.2em; }
39
+ h3 span { top: -1.0em; }
40
+ h4 span { top: -0.8em; }
41
+ h5 span { top: -0.5em; }
42
+ h6 span { top: -0.5em; }
43
+
44
+ h1:hover span,
45
+ h2:hover span,
46
+ h3:hover span,
47
+ h4:hover span,
48
+ h5:hover span,
49
+ h6:hover span {
50
+ display: inline;
51
+ }
52
+
53
+ h1:target,
54
+ h2:target,
55
+ h3:target,
56
+ h4:target,
57
+ h5:target,
58
+ h6:target {
59
+ border-left: 10px solid #f1edba;
60
+ margin-left: -10px;
61
+ }
62
+
63
+ :link,
64
+ :visited {
65
+ color: #6C8C22;
66
+ text-decoration: none;
67
+ }
68
+
69
+ :link:hover,
70
+ :visited:hover {
71
+ border-bottom: 1px dotted #6C8C22;
72
+ }
73
+
74
+ code,
75
+ pre {
76
+ background-color: rgba(27,31,35,0.05);
77
+ border-radius: 0.2em;
78
+ font-family: "Source Code Pro", Monaco, monospace;
79
+ padding: 0em 0.2em;
80
+ }
81
+
82
+ table {
83
+ border-collapse: collapse;
84
+ border-spacing: 0;
85
+ margin: 0;
86
+ }
87
+
88
+ table tr th, table tr td {
89
+ border: 1px solid #ccc;
90
+ padding: 0.2em 0.4em;
91
+ }
92
+
93
+ table tr th {
94
+ background-color: #eceaed;
95
+ }
96
+
97
+ table tr:nth-child(even) td {
98
+ background-color: #f5f4f6;
99
+ }
100
+
101
+ /* @group Generic Classes */
102
+
103
+ .initially-hidden {
104
+ display: none;
105
+ }
106
+
107
+ #search-field {
108
+ background: white;
109
+ border: none;
110
+ -moz-border-radius: 4px;
111
+ -webkit-border-radius: 4px;
112
+ border-radius: 4px;
113
+ height: 1.5em;
114
+ text-align: left;
115
+ width: 98%;
116
+ }
117
+ #search-field:focus {
118
+ background: #f1edba;
119
+ }
120
+ #search-field:-moz-placeholder,
121
+ #search-field::-webkit-input-placeholder {
122
+ color: #666;
123
+ font-weight: bold;
124
+ }
125
+
126
+ .missing-docs {
127
+ background: white url(../images/wrench_orange.png) no-repeat 4px center;
128
+ border: 1px solid #d00;
129
+ -moz-border-radius: 5px;
130
+ -webkit-border-radius: 5px;
131
+ color: #ccc;
132
+ font-size: 120%;
133
+ font-weight: bold;
134
+ letter-spacing: 3px;
135
+ line-height: 2em;
136
+ opacity: 1;
137
+ padding-left: 20px;
138
+ text-indent: 24px;
139
+ }
140
+
141
+ .target-section {
142
+ background: #fff3c2;
143
+ border: 2px solid #dcce90;
144
+ border-left-width: 8px;
145
+ padding: 0 1em;
146
+ }
147
+
148
+ /* @end */
149
+
150
+ /* @group Index Page, Standalone file pages */
151
+ .table-of-contents ul {
152
+ list-style: none;
153
+ margin: 1em;
154
+ }
155
+
156
+ .table-of-contents ul ul {
157
+ margin-top: 0.25em;
158
+ }
159
+
160
+ .table-of-contents ul :link,
161
+ .table-of-contents ul :visited {
162
+ font-size: 16px;
163
+ }
164
+
165
+ .table-of-contents li {
166
+ margin-bottom: 0.25em;
167
+ }
168
+
169
+ .table-of-contents li .toc-toggle {
170
+ background: url(../images/add.png) no-repeat;
171
+ height: 16px;
172
+ width: 16px;
173
+ }
174
+
175
+ .table-of-contents li .toc-toggle.open {
176
+ background: url(../images/delete.png) no-repeat;
177
+ }
178
+
179
+ /* @end */
180
+
181
+ /* @group Top-Level Structure */
182
+
183
+ nav {
184
+ border-right: 1px solid #ccc;
185
+ float: left;
186
+ font-family: Helvetica, sans-serif;
187
+ font-size: 14px;
188
+ width: 260px;
189
+ }
190
+
191
+ main {
192
+ display: block;
193
+ font-size: 16px;
194
+ margin: 0 2em 5em 260px;
195
+ min-width: 340px;
196
+ padding-left: 20px;
197
+ }
198
+
199
+ main h1,
200
+ main h2,
201
+ main h3,
202
+ main h4,
203
+ main h5,
204
+ main h6 {
205
+ font-family: Helvetica, sans-serif;
206
+ }
207
+
208
+ .table-of-contents main {
209
+ margin-left: 2em;
210
+ }
211
+
212
+ #validator-badges {
213
+ clear: both;
214
+ font-size: smaller;
215
+ margin: 1em 1em 2em;
216
+ }
217
+
218
+ /* @end */
219
+
220
+ /* @group navigation */
221
+ nav {
222
+ margin-bottom: 1em;
223
+ }
224
+
225
+ nav .nav-section {
226
+ border-top: 2px solid #aaa;
227
+ font-size: 90%;
228
+ margin-top: 2em;
229
+ overflow: hidden;
230
+ }
231
+
232
+ nav h2 {
233
+ background-color: #e8e8e8;
234
+ color: #555;
235
+ font-size: 125%;
236
+ margin: 0;
237
+ padding: 2px 8px 2px 8px;
238
+ text-align: center;
239
+ }
240
+
241
+ nav h3,
242
+ #table-of-contents-navigation {
243
+ background-color: #e8e8e8;
244
+ color: #555;
245
+ margin: 0;
246
+ padding: 2px 8px 2px 8px;
247
+ text-align: right;
248
+ }
249
+
250
+ nav ul,
251
+ nav dl,
252
+ nav p {
253
+ list-style: none;
254
+ padding: 4px 8px 0;
255
+ }
256
+
257
+ #project-navigation .nav-section {
258
+ border-top: 0;
259
+ margin: 0;
260
+ }
261
+
262
+ #home-section h2 {
263
+ text-align: center;
264
+ }
265
+
266
+ #table-of-contents-navigation {
267
+ font-size: 1.2em;
268
+ font-weight: bold;
269
+ text-align: center;
270
+ }
271
+
272
+ #search-section {
273
+ border-top: 0;
274
+ margin-top: 0;
275
+ }
276
+
277
+ #search-field-wrapper {
278
+ background-color: #e8e8e8;
279
+ border-bottom: 1px solid #aaa;
280
+ border-top: 1px solid #aaa;
281
+ color: #555;
282
+ padding: 3px 8px;
283
+ }
284
+
285
+ ul.link-list li {
286
+ line-height: 1.4em;
287
+ white-space: nowrap;
288
+ }
289
+
290
+ ul.link-list .type {
291
+ background: #969696;
292
+ -webkit-border-radius: 5px;
293
+ color: white;
294
+ font-size: 8px;
295
+ padding: 2px 4px;
296
+ text-transform: uppercase;
297
+ }
298
+
299
+ dl.note-list dt {
300
+ float: left;
301
+ margin-right: 1em;
302
+ }
303
+
304
+ .calls-super {
305
+ background: url(../images/arrow_up.png) no-repeat right center;
306
+ }
307
+
308
+ /* @end */
309
+
310
+ /* @group Documentation Section */
311
+ main {
312
+ color: #333;
313
+ }
314
+
315
+ main > h1:first-child,
316
+ main > h2:first-child,
317
+ main > h3:first-child,
318
+ main > h4:first-child,
319
+ main > h5:first-child,
320
+ main > h6:first-child {
321
+ margin-top: 0px;
322
+ }
323
+
324
+ main sup {
325
+ font-size: 0.8em;
326
+ vertical-align: super;
327
+ }
328
+
329
+ /* The heading with the class name */
330
+ main h1[class] {
331
+ color: #6C8C22;
332
+ font-size: 2em;
333
+ margin-bottom: 1em;
334
+ margin-top: 0;
335
+ }
336
+
337
+ main h1 {
338
+ font-size: 1.7em;
339
+ margin: 2em 0 0.5em;
340
+ }
341
+
342
+ main h2 {
343
+ font-size: 1.5em;
344
+ margin: 2em 0 0.5em;
345
+ }
346
+
347
+ main h3 {
348
+ font-size: 1.2em;
349
+ margin: 2em 0 0.5em;
350
+ }
351
+
352
+ main h4 {
353
+ font-size: 1.1em;
354
+ margin: 2em 0 0.5em;
355
+ }
356
+
357
+ main h5 {
358
+ font-size: 1em;
359
+ margin: 2em 0 0.5em;
360
+ }
361
+
362
+ main h6 {
363
+ font-size: 1em;
364
+ margin: 2em 0 0.5em;
365
+ }
366
+
367
+ main p {
368
+ line-height: 1.4em;
369
+ margin: 0 0 0.5em;
370
+ }
371
+
372
+ main pre {
373
+ font-size: 0.8em;
374
+ margin: 1.2em 0.5em;
375
+ padding: 1em;
376
+ }
377
+
378
+ main hr {
379
+ border: 2px solid #ddd;
380
+ margin: 1.5em 1em;
381
+ }
382
+
383
+ main blockquote {
384
+ border-left: 2px solid #ddd;
385
+ margin: 0 2em 1.2em 1.2em;
386
+ padding-left: 0.5em;
387
+ }
388
+
389
+ main ol,
390
+ main ul {
391
+ margin: 1em 2em;
392
+ }
393
+
394
+ main li > p {
395
+ margin-bottom: 0.5em;
396
+ }
397
+
398
+ main dl {
399
+ margin: 1em 0.5em;
400
+ }
401
+
402
+ main dt {
403
+ font-weight: bold;
404
+ margin-bottom: 0.5em;
405
+ }
406
+
407
+ main dd {
408
+ margin: 0 1em 1em 0.5em;
409
+ }
410
+
411
+ main header h2 {
412
+ border-top: 4px solid #bbb;
413
+ border-width: 0;
414
+ font-size: 130%;
415
+ margin-top: 2em;
416
+ }
417
+
418
+ main header h3 {
419
+ border-top: 3px solid #bbb;
420
+ border-width: 0;
421
+ font-size: 120%;
422
+ margin: 2em 0 1.5em;
423
+ }
424
+
425
+ .documentation-section-title {
426
+ position: relative;
427
+ }
428
+ .documentation-section-title .section-click-top {
429
+ color: #9b9877;
430
+ font-size: 10px;
431
+ left: 12px;
432
+ padding-left: 0.5px;
433
+ position: absolute;
434
+ top: 6px;
435
+ visibility: hidden;
436
+ }
437
+
438
+ .documentation-section-title:hover .section-click-top {
439
+ visibility: visible;
440
+ }
441
+
442
+ .constants-list > dl {
443
+ border: 0;
444
+ margin: 1em 0 2em;
445
+ }
446
+
447
+ .constants-list > dl dt {
448
+ font-family: "Source Code Pro", Monaco, monospace;
449
+ font-size: 110%;
450
+ margin-bottom: 0.75em;
451
+ padding-left: 0;
452
+ }
453
+
454
+ .constants-list > dl dt a {
455
+ color: inherit;
456
+ }
457
+
458
+ .constants-list > dl dd {
459
+ color: #666;
460
+ margin: 0 0 2em 0;
461
+ padding: 0;
462
+ }
463
+
464
+ .documentation-section h2 {
465
+ position: relative;
466
+ }
467
+
468
+ .documentation-section h2 a {
469
+ color: #9b9877;
470
+ font-size: 12px;
471
+ position: absolute;
472
+ right: 10px;
473
+ top: 8px;
474
+ visibility: hidden;
475
+ }
476
+
477
+ .documentation-section h2:hover a {
478
+ visibility: visible;
479
+ }
480
+
481
+ /* @group Method Details */
482
+
483
+ main .method-source-code {
484
+ max-height: 0;
485
+ overflow: hidden;
486
+ transition-delay: 0ms;
487
+ transition-duration: 200ms;
488
+ transition-property: all;
489
+ transition-timing-function: ease-in-out;
490
+ }
491
+
492
+ main .method-source-code.active-menu {
493
+ max-height: 100vh;
494
+ }
495
+
496
+ main .method-description .method-calls-super {
497
+ color: #333;
498
+ font-weight: bold;
499
+ }
500
+
501
+ main .method-detail {
502
+ cursor: pointer;
503
+ margin-bottom: 2.5em;
504
+ }
505
+
506
+ main .method-detail:target {
507
+ border-left: 10px solid #f1edba;
508
+ margin-left: -10px;
509
+ }
510
+
511
+ main .method-heading {
512
+ color: #333;
513
+ font-family: "Source Code Pro", Monaco, monospace;
514
+ font-size: 110%;
515
+ font-weight: bold;
516
+ position: relative;
517
+ }
518
+ main .method-heading :link,
519
+ main .method-heading :visited {
520
+ color: inherit;
521
+ }
522
+ main .method-click-advice {
523
+ background: url(../images/zoom.png) no-repeat right top;
524
+ color: #9b9877;
525
+ font-size: 12px;
526
+ line-height: 20px;
527
+ padding-right: 20px;
528
+ position: absolute;
529
+ right: 5px;
530
+ top: 2px;
531
+ visibility: hidden;
532
+ }
533
+ main .method-heading:hover .method-click-advice {
534
+ visibility: visible;
535
+ }
536
+
537
+ main .method-alias .method-heading {
538
+ color: #666;
539
+ }
540
+
541
+ main .method-description,
542
+ main .aliases {
543
+ color: #333;
544
+ margin-top: 0.75em;
545
+ }
546
+
547
+ main .aliases {
548
+ cursor: default;
549
+ font-style: italic;
550
+ padding-top: 4px;
551
+ }
552
+ main .method-description ul {
553
+ margin-left: 1.5em;
554
+ }
555
+
556
+ main #attribute-method-details .method-detail:hover {
557
+ background-color: transparent;
558
+ cursor: default;
559
+ }
560
+ main .attribute-access-type {
561
+ padding: 0 1em;
562
+ text-transform: uppercase;
563
+ }
564
+ /* @end */
565
+
566
+ /* @end */
567
+
568
+ /* @group Source Code */
569
+
570
+ pre {
571
+ background: #262626;
572
+ border: 1px dashed #999;
573
+ color: white;
574
+ margin: 0.5em 0;
575
+ overflow: auto;
576
+ padding: 0.5em;
577
+ }
578
+
579
+ .ruby-constant { background: transparent; color: #7fffd4; }
580
+ .ruby-keyword { background: transparent; color: #00ffff; }
581
+ .ruby-ivar { background: transparent; color: #eedd82; }
582
+ .ruby-operator { background: transparent; color: #00ffee; }
583
+ .ruby-identifier { background: transparent; color: #ffdead; }
584
+ .ruby-node { background: transparent; color: #ffa07a; }
585
+ .ruby-comment { background: transparent; color: #dc0000; }
586
+ .ruby-regexp { background: transparent; color: #ffa07a; }
587
+ .ruby-value { background: transparent; color: #7fffd4; }
588
+
589
+ /* @end */
590
+
591
+
592
+ /* @group search results */
593
+ #search-results {
594
+ font-family: Lato, sans-serif;
595
+ font-weight: 300;
596
+ }
597
+
598
+ #search-results .search-match {
599
+ font-family: Helvetica, sans-serif;
600
+ font-weight: normal;
601
+ }
602
+
603
+ #search-results .search-selected {
604
+ background: #e8e8e8;
605
+ border-bottom: 1px solid transparent;
606
+ }
607
+
608
+ #search-results li {
609
+ border-bottom: 1px solid #aaa;
610
+ list-style: none;
611
+ margin-bottom: 0.5em;
612
+ }
613
+
614
+ #search-results li:last-child {
615
+ border-bottom: none;
616
+ margin-bottom: 0;
617
+ }
618
+
619
+ #search-results li p {
620
+ margin: 0.5em;
621
+ padding: 0;
622
+ }
623
+
624
+ #search-results .search-namespace {
625
+ font-weight: bold;
626
+ }
627
+
628
+ #search-results li em {
629
+ background: yellow;
630
+ font-style: normal;
631
+ }
632
+
633
+ #search-results pre {
634
+ font-family: "Source Code Pro", Monaco, monospace;
635
+ margin: 0.5em;
636
+ }
637
+
638
+ /* @end */