Added support for Valadoc.

This commit is contained in:
Kolan Sh 2014-07-14 15:38:59 +04:00
parent c21ea5379f
commit 5d871cb40d
33 changed files with 1191 additions and 2 deletions

View File

@ -1,8 +1,8 @@
Fork of Embedded plugin (https://github.com/reubenmallaby/redmine_embedded).
Correct style and search for all Doxygen versions.
Setup:
Index files: index.html
Valid extensions: html png gif js css pdf
Index files: index.html index.htm
Valid extensions: html htm png gif js css pdf
Default template: doxygen.
Menu caption: Doxygen

View File

@ -0,0 +1,27 @@
/**
* Valadoc
*/
function get_path (path) {
var pos = path.lastIndexOf ('/');
if (pos < 0) {
return '';
}
return path.substring (pos, -1) + '/';
}
function toggle_box (self, id) {
var element = document.getElementById (id);
if (element == null) {
return ;
}
if (element.style.display == 'block') {
element.style.display = 'none';
self.src = get_path (self.src) + 'coll_open.png';
} else {
element.style.display = 'block';
self.src = get_path (self.src) + 'coll_close.png';
}
}

View File

@ -1,3 +1,13 @@
/**
* Valadoc
*/
@import url("valadoc/wikistyle.css");
@import url("valadoc/style.css");
@import url("valadoc/valadoc_redmine.css");
/**
* Doxygen
*/
li#searchli {
width: 0px;
height: 0px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 693 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 633 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 618 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 884 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

View File

@ -0,0 +1,581 @@
/* * {
font-family: 'Times New Roman';
font-size: 12pt;
}*/
ul.external_link {
}
.main_optional_parameter {
font-style: italic;
}
.main_diagram {
border-style: none;
display: block;
margin: 0px auto;
}
.site_navi {
text-align: right;
}
.main_notification {
padding-right: 10px;
padding-left: 60px;
padding-bottom: 5px;
padding-top: 5px;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
margin: 10px;
min-height: 48px;
background-position: 6px 0.5em;
background-repeat: no-repeat;
background-image: url(warning.png);
}
.main_table {
border-collapse: collapse;
border: 1px solid #aaaaff;
background: #eeeeff;
margin-right:auto;
margin-left:auto;
}
.main_source, .main_sourcesample {
padding-right: 10px;
padding-left: 5px;
padding-bottom: 5px;
padding-top: 5px;
margin: 10px;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
}
input {
border-color: #aaaaff;
border-style: solid;
border-width: 1px;
}
.site_header {
font-size: 25px;
padding-bottom: 10px;
padding-top: 10px;
background-color: #aaaaff;
width: 100%;
}
div {
font-family:'Verdana';
font-size: 12;
}
.site_title {
text-align: left;
font-size: 40;
}
div.site_footer {
text-align: center;
background-color: #aaaaff;
padding-bottom: 5px;
padding-top: 5px;
width: 100%;
clear: left;
}
div.site_body {
font-size: 10;
}
div.site_navigation {
float: left;
width: 240px;
border-color: #aaaaff;
border-style: solid;
border-width: 1px;
background-color: #eeeeff;
}
.site_content {
font-size: 12px;
margin-left: 250px;
margin-right: 5px;
text-align: left;
}
.main_type {
text-decoration: none;
font-style: italic;
color: #000000;
}
.main_basic_type {
text-decoration: none;
font-weight: bold;
color: #2e8b57;
}
.main_keyword {
text-decoration: none;
font-weight: bold;
color: #a52a2a;
}
div.main_code_definition {
padding-right: 10px;
padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
font-family: monospace;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
margin: 10px;
}
div.main_notification_block {
padding-right: 10px;
padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
border-color: #d08717;
background-color: #fbf2c3;
border-style: solid;
border-width: 1px;
margin: 10px;
}
span.main_block_headline {
background-image:url(tip.png);
background-repeat:no-repeat;
background-position:center right;
font-weight:bold;
display:block;
}
div.main_block_content {
margin-left:15px;
}
span.leaf_code_definition {
font-family: monospace;
}
div.leaf_brief_description {
display: block;
margin-left: 40px;
}
h1.main_title {
font-size: 20px;
margin-bottom: 0px;
}
h2.main_title {
margin-bottom: 0px;
}
h3.main_title {
margin-bottom: 0px;
}
.main_hr {
border: 0;
color: #aaaaff;
background-color: #aaaaff;
height: 1px;
margin-top: 5px;
margin-bottom: 5px;
}
.main_parameter_table_text, .main_errordomain_table_text, .main_enum_table_text {
}
.main_parameter_table_unknown_parameter {
color: GREY;
}
.main_parameter_table_name, .main_errordomain_table_name, .main_enum_table_name {
vertical-align: top;
text-align: right;
font-weight: bold;
width: 120px;
padding-right: 10px;
}
.main_parameter_table, .main_errordomain_table, .main_enum_table {
margin-weight: 20px;
margin-left: 20px;
}
.description a.constant, .brief_description a.constant {
background-image:url(constant.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.namespace, .brief_description a.namespace {
background-image:url(namespace.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.struct, .brief_description a.struct {
background-image:url(struct.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.interface, .brief_description a.interface {
background-image:url(interface.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.enum, .brief_description a.enum {
background-image:url(enum.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.errordomain, .brief_description a.errordomain {
background-image:url(errordomain.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.delegate, .brief_description a.delegate {
background-image:url(delegate.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.signal, .brief_description a.signal {
background-image:url(signal.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.field, .brief_description a.field {
background-image:url(field.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.enumvalue, .brief_description a.enumvalue {
background-image:url(enumvalue.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.errorcode, .brief_description a.errorcode {
background-image:url(errorcode.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.class, .brief_description a.class {
background-image:url(class.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
a.abstract_class, .description a.abstract_class, .brief_description a.abstract_class {
background-image:url(abstractclass.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
font-style: italic;
}
.description a.property, .brief_description a.property {
background-image:url(property.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.virtual_property, .brief_description a.virtual_property {
background-image:url(virtualproperty.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.abstract_property, .brief_description a.abstract_property {
background-image:url(abstractproperty.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.method, .brief_description a.method {
background-image:url(method.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.static_method, .brief_description a.static_method {
background-image:url(staticmethod.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
a.virtual_method, .description a.virtual_method, .brief_description a.virtual_method {
background-image:url(virtualmethod.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.abstract_method, .brief_description a.abstract_method {
background-image:url(abstractmethod.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.description a.creation_method, .brief_description a.creation_method {
background-image:url(constructor.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.navi_main .errorcode, .navi_inline .errorcode {
list-style-image:url(errorcode.png);
}
.navi_main .enumvalue, .navi_inline .enumvalue {
list-style-image:url(enumvalue.png);
}
.navi_main .abstract_class, .navi_inline .abstract_class {
list-style-image: url(abstractclass.png);
}
.navi_main .abstract_method, .navi_inline .abstract_method {
list-style-image: url( abstractmethod.png );
}
.navi_main .creation_method, .navi_inline .creation_method, .main_list_m {
list-style-image: url(constructor.png);
}
.navi_main .static_method, .navi_inline .static_method {
list-style-image: url(staticmethod.png);
}
.navi_main .package_index {
list-style-image: url(packages.png);
}
.navi_main .virtual_method, .navi_inline .virtual_method {
list-style-image: url(virtualmethod.png);
}
.navi_main .errordomain, .navi_inline .errordomain, .main_list_errdom {
list-style-image: url(errordomain.png);
}
.navi_main .namespace, .navi_inline .namespace, .main_list_ns {
list-style-image: url(namespace.png);
}
.navi_main .method, .navi_inline .method {
list-style-image: url(method.png);
}
.navi_main .struct, .navi_inline .struct, .main_list_stru {
list-style-image: url(struct.png);
}
.navi_main .interface, .navi_inline .interface, .main_list_iface {
list-style-image: url(interface.png);
}
.navi_main .field, .navi_inline .field, .main_list_field {
list-style-image: url(field.png);
}
.navi_main .class, .navi_inline .class, .main_list_cl {
list-style-image: url(class.png);
}
.navi_main .enum, .navi_inline .enum, .main_list_en {
list-style-image: url(enum.png);
}
.navi_main .property, .navi_inline .property, .main_list_prop {
list-style-image: url(property.png);
}
.navi_main .abstract_property, .navi_inline .abstract_property {
list-style-image: url(abstractproperty.png);
}
.navi_main .virtual_property, .navi_inline .virtual_property {
list-style-image: url(virtualproperty.png);
}
.navi_main .delegate, .navi_inline .delegate, .main_list_del {
list-style-image: url(delegate.png);
}
.navi_main .signal, .navi_inline .signal, .main_list_sig {
list-style-image: url(signal.png);
}
.navi_main .package, .navi_inline .package {
list-style-image: url(package.png);
}
.navi_main .constant, .navi_inline .constant {
list-style-image: url(constant.png);
}
.navi_main {
margin-top: 10px;
margin-bottom: 10px;
padding-left: 30px;
}
.navi_hr {
border: 0;
color: #aaaaff;
background-color: #aaaaff;
height: 1px;
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
.navi_main a, .navi_inline a, a.external_link
{
text-decoration: none;
color: #214b87;
}
.navi_main .abstract_class > a, .navi_inline .abstract_class > a {
font-style: italic;
}
a.navi_link:hover, a.external_link:hover {
text-decoration: underline;
}
ul.no_bullet li {
list-style-type: none;
}
.main_see_list {
}
.navi_inline {
}
.css_content_literal {
font-family: monospace;
color: #ff01ff;
}
code {
font-family: monospace;
}
.main_code_definition a, .leaf_code_definition a {
text-decoration: none;
color: inherit;
}
.main_code_definition a:hover, .leaf_code_definition a:hover {
text-decoration: underline;
}
.box {
}
.box .headline {
background-color: #eeeeff;
border-color: #aaaaff;
border-style: solid;
border-width: 1px;
margin: auto;
width: 90%;
margin-top: 20px;
}
.box .text {
font-weight: bold;
float: left;
}
.box .toggle {
text-align: right;
float: clear;
}
.box .content {
border-color: #aaaaff;
border-width: 0 1 1 1;
border-style: solid;
overflow: auto;
display: none;
margin: auto;
width: 90%;
}
.box .column {
float: left;
width: 33%;
}
.namespace_note {
}
.package_note {
}
.deprecated {
text-decoration:line-through;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

View File

@ -0,0 +1,38 @@
.abstract_class,
.brief_description,
.class,
.creation_method,
.description,
.enumvalue,
.field,
.interface,
.lead_brief_description,
.leaf_code_definition,
.main_basic_type,
.main_code_definition,
.main_keyword,
.main_keyword,
.main_title,
.main_title,
.main_type,
.main_type,
.method,
.method,
.namespace_note,
.navi_inline,
.package,
.package_note,
.site_header,
.site_navigation,
.text,
.togle,
.togle_box,
.virtual_method,
.abrakadabra {
font-family: 'Times New Roman';
font-size: 12pt;
}
.navi_hr {
margin-left: 0px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,533 @@
ul.external_link {
}
.main_optional_parameter {
font-style: italic;
}
.main_diagram {
border-style: none;
display: block;
margin: 0px auto;
/* width: 100px; */
}
.site_navi {
text-align: right;
}
.main_notification {
padding-right: 10px;
padding-left: 60px;
padding-bottom: 5px;
padding-top: 5px;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
margin: 10px;
min-height: 48px;
background-position: 6px 0.5em;
background-repeat: no-repeat;
background-image: url(warning.png);
}
div.main_notification_block {
padding-right: 10px;
padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
border-color: #d08717;
background-color: #fbf2c3;
border-style: solid;
border-width: 1px;
margin: 10px;
}
span.main_block_headline {
background-image:url(tip.png);
background-repeat:no-repeat;
background-position:center right;
font-weight:bold;
display:block;
}
div.main_block_content {
margin-left:15px;
}
.main_source, .main_sourcesample {
padding-right: 10px;
padding-left: 5px;
padding-bottom: 5px;
padding-top: 5px;
margin: 10px;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
}
input {
border-color: #aaaaff;
border-style: solid;
border-width: 1px;
}
.main_table {
border-collapse: collapse;
border: 1px solid #aaaaff;
background: #eeeeff;
margin-right:auto;
margin-left:auto;
}
.site_header {
font-size: 25px;
padding-bottom: 10px;
padding-top: 10px;
background-color: #aaaaff;
width: 100%;
}
div {
font-family:'Verdana';
font-size: 12;
}
.site_title {
text-align: left;
font-size: 40;
}
div.site_footer {
text-align: center;
background-color: #aaaaff;
padding-bottom: 5px;
padding-top: 5px;
width: 100%;
clear: left;
}
div.site_body {
font-size: 10;
}
div.site_navigation {
float: right;
width: 240px;
border-color: #aaaaff;
border-style: solid;
border-width: 1px;
background-color: #eeeeff;
}
.site_content {
font-size: 12px;
margin-left: 5px;
margin-right: 5px;
text-align: left;
}
.main_type {
text-decoration: none;
font-style: italic;
color: #000000;
}
.main_basic_type {
text-decoration: none;
font-weight: bold;
color: #2e8b57;
}
.main_keyword {
text-decoration: none;
font-weight: bold;
color: #a52a2a;
}
div.main_code_definition {
padding-right: 10px;
padding-left: 10px;
padding-bottom: 5px;
padding-top: 5px;
font-family: monospace;
font-size: 10;
border-color: #aaaaff;
background-color: #eeeeff;
border-style: solid;
border-width: 1px;
margin: 10px;
}
h1.main_title {
font-size: 20px;
margin-bottom: 0px;
}
h2.main_title {
margin-bottom: 0px;
}
h3.main_title {
margin-bottom: 0px;
}
.main_hr {
border: 0;
color: #aaaaff;
background-color: #aaaaff;
height: 1px;
margin-top: 5px;
margin-bottom: 5px;
}
.main_parameter_table_text, .main_errordomain_table_text, .main_enum_table_text {
}
.main_parameter_table_unknown_parameter {
color: GREY;
}
.main_parameter_table_name, .main_errordomain_table_name, .main_enum_table_name {
vertical-align: top;
text-align: right;
font-weight: bold;
width: 120px;
padding-right: 10px;
}
.main_parameter_table, .main_errordomain_table, .main_enum_table {
margin-weight: 20px;
margin-left: 20px;
}
.main_inline_navigation_virtual_property {
list-style-image: url(virtualproperty.png);
}
.main_inline_navigation_abstract_property {
list-style-image: url(abstractproperty.png);
}
.navi_abstract_prop {
list-style-image: url(abstractproperty.png);
}
.navi_virtual_prop {
list-style-image: url(virtualproperty.png);
}
.css_content_link_constant {
background-image:url(constant.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_namespace {
background-image:url(namespace.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_struct {
background-image:url(struct.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_interface {
background-image:url(interface.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_enum {
background-image:url(enum.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_errordomain {
background-image:url(errordomain.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_delegate {
background-image:url(delegate.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_signal {
background-image:url(signal.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_field {
background-image:url(field.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_enumvalue {
background-image:url(enumvalue.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_errorcode {
background-image:url(errorcode.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_class {
background-image:url(class.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_abstract_class {
background-image:url(abstractclass.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_property {
background-image:url(property.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_virtual_property {
background-image:url(virtualproperty.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_abstract_property {
background-image:url(abstractproperty.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_method {
background-image:url(method.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_static_method {
background-image:url(staticmethod.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_virtual_method {
background-image:url(virtualmethod.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_abstract_method {
background-image:url( abstractmethod.png );
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.css_content_link_construction_method {
background-image:url(constructor.png);
display:inline-block;
padding-right:17px;
background-repeat:no-repeat;
background-position:center right;
border:0px;
}
.main_inline_navigation_virtual_method {
list-style-image:url(virtualmethod.png);
}
.main_inline_navigation_errorcode {
list-style-image:url(errorcode.png);
}
.main_inline_navigation_enumvalue {
list-style-image:url(enumvalue.png);
}
.navi_abstract_class, .main_inline_navigation_abstract_class {
list-style-image: url(abstractclass.png);
}
.main_inline_navigation_abstract_method, .navi_abstract_method {
list-style-image: url( abstractmethod.png );
}
.navi_construction_method, .main_list_m, .main_inline_navigation_construction_method {
list-style-image: url(constructor.png);
}
.navi_static_method, .main_inline_navigation_static_method {
list-style-image: url(staticmethod.png);
}
.navi_package_index, .main_inline_navigation_package {
list-style-image: url(packages.png);
}
.main_navi_enval {
list-style-image: url(enumvalue.png);
}
.main_navi_errdomcode {
list-style-image: url(errorcode.png);
}
.navi_error_domain, .main_list_errdom, .main_inline_navigation_errordomain {
list-style-image: url(errordomain.png);
}
.navi_namespace, .main_list_ns, .main_inline_navigation_namespace {
list-style-image: url(namespace.png);
}
.navi_method, .main_inline_navigation_method {
list-style-image: url(method.png);
}
.navi_virtual_method {
list-style-image: url(virtualmethod.png);
}
.navi_struct, .main_list_stru, .main_inline_navigation_struct {
list-style-image: url(struct.png);
}
.navi_iface, .main_navigation_interface, .main_list_iface {
list-style-image: url(interface.png);
}
.navi_field, .main_inline_navigation_fields, .main_list_field {
list-style-image: url(field.png);
}
.navi_class, .main_inline_navigation_class, .main_list_cl {
list-style-image: url(class.png);
}
.navi_enum, .main_list_en, .main_inline_navigation_enum {
list-style-image: url(enum.png);
}
.navi_prop, .main_inline_navigation_property, .main_list_prop {
list-style-image: url(property.png);
}
.navi_del, .main_list_del, .main_inline_navigation_delegate {
list-style-image: url(delegate.png);
}
.navi_sig, .main_inline_navigation_signal, .main_list_sig {
list-style-image: url(signal.png);
}
.navi_package, .main_inline_navigation_package {
list-style-image: url(package.png);
}
.main_inline_navigation_constant, .navi_constant {
list-style-image: url(constant.png);
}
.navi_main {
margin-top: 10px;
margin-bottom: 10px;
padding-left: 30px;
}
.navi_hr {
border: 0;
color: #aaaaff;
background-color: #aaaaff;
height: 1px;
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
a.navi_link, a.external_link {
text-decoration: none;
color: #214b87;
}
a.navi_link:hover, a.external_link:hover {
text-decoration: underline;
}
ul.no_bullet li {
list-style-type: none;
}
.main_see_list {
}
.main_inline_navigation {
}
.css_content_literal {
font-family: monospace;
color: #ff01ff;
}
code {
font-family: monospace;
}
.deprecated {
text-decoration:line-through;
}