nitdoc: move css files to share/css/ dir
[nit.git] / share / nitdoc / css / Nitdoc.QuickSearch.css
1 /* This file is part of NIT ( http://www.nitlanguage.org ).
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14
15 Documentation generator for the nit language.
16 Generate API documentation in HTML format from nit source code.
17 */
18
19 /*
20 * Nitdoc Quick Search JS module
21 */
22
23 #nitdoc-qs-li {
24 float: right;
25 padding: 0;
26 margin: 0;
27 }
28
29 #nitdoc-qs-field {
30 width: 300px;
31 }
32
33 #nitdoc-qs-field.nitdoc-qs-field-notused {
34 color: #999;
35 font-style: italic;
36 }
37
38 #nitdoc-qs-table {
39 background-color: #FFFFFF;
40 border: 1px solid #E0E0E0;
41 border-spacing: 0px;
42 z-index: 1000;
43 -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
44 -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
45 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
46 }
47
48 #nitdoc-qs-table .nitdoc-qs-active {
49 cursor: pointer;
50 background: #EEE;
51 }
52
53 #nitdoc-qs-table td, th {
54 white-space: nowrap;
55 overflow: hidden;
56 line-height: 22px;
57 padding: 2px;
58 }
59
60 #nitdoc-qs-table td.nitdoc-qs-sub {
61 color: #6C6C6C;
62 padding-left: 12px;
63 }
64
65 #nitdoc-qs-table td.nitdoc-qs-info {
66 color: #0D8921;
67 font-size: smaller;
68 text-align: right;
69 }
70
71 #nitdoc-qs-table tr.nitdoc-qs-noresult td {
72 color: #6C6C6C;
73 font-size: small;
74 line-height: 15px;
75 }
76
77 #nitdoc-qs-table tr.nitdoc-qs-overflow td {
78 text-align: center;
79 font-size: x-small;
80 line-height: 10px;
81 color: #FFF;
82 -webkit-touch-callout: none;
83 -webkit-user-select: none;
84 -khtml-user-select: none;
85 -moz-user-select: none;
86 -ms-user-select: none;
87 user-select: none;
88 }
89
90 #nitdoc-qs-table tr.nitdoc-qs-overflow-active td {
91 color: #0D8921;
92 cursor: pointer;
93 }
94
95 #nitdoc-qs-table tr.nitdoc-qs-overflow-active td:hover {
96 background-color: #E0E0E0;
97 }