blob: 7a1484e5506c343e40c65ddc9e979042347055c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*--------- sample theme --------------*/
body {
font-family: sans-serif;
font-size: 0.9em;
}
code {
font-size: 1.1em;
}
a:link, a:visited
{
color: blue;
}
a:hover {
text-decoration: underline;
}
a[name]:hover {
text-decoration: none;
}
hr {
border: 1px;
background-color: #D0D0D0;
}
.summaryTable {
border: medium none;
margin-top: 0.5em;
}
.summaryTableHeader {
background-color: #66CCCC;
font-size: 1.3em;
}
.summaryTable .summaryItem {
border : none;
border-bottom: 1px solid;
border-color: #d0d0d0;
padding-top: 0.3em;
}
.summaryTable .summaryItemRef
{
font-weight: normal;
}
.summaryTable .inheritanceSummary
{
border: none;
}
.sectionHeader {
background-color: #66CCCC;
border: medium none;
font-size: 1.3em;
}
.elementName {
font-weight: normal;
}
.paddedDetails {
font-size: 0.9em;
}
.paddedDetails code {
font-weight: bolder;
}
.type
{
color: green;
font-weight: bolder;
}
.modifiers
{
color: purple;
}
.logicalDetail .summaryTable
{
display: inherit;
}
.navbaritem
{
background-color: #66CCCC;
}
.navbaritem a
{
background-color: #66CCCC;
color: black;
text-decoration: underline;
}
/** this is to show how to hide parent names */
.overview .parent
{
/*display: none;*/
}
a.searchItem
{
color: black;
}
a.jgdSelectedItem.searchItem
{
color: white;
text-decoration: none;
}
|