2009-02-02 00:44:07 +03:00
|
|
|
/*
|
2020-09-27 11:32:04 +03:00
|
|
|
* Copyright 2008-2013, 2020 Haiku, Inc. All rights reserved.
|
2009-02-02 00:44:07 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
2013-02-07 06:05:00 +04:00
|
|
|
* François Revol, revol@free.fr
|
|
|
|
* Stephan Aßmus, superstippi@gmx.de
|
|
|
|
* Braden Ewing, brewin@gmail.com
|
|
|
|
* Humdinger, humdingerb@gmail.com
|
|
|
|
* John Scipione, jscipione@gmail.com
|
2020-09-27 11:32:04 +03:00
|
|
|
* Niels Sascha Reedijk, niels.reedijk@gmail.com
|
2009-02-02 00:44:07 +03:00
|
|
|
*/
|
|
|
|
|
2015-07-22 01:24:37 +03:00
|
|
|
/* color names provided by: https://chir.ag/projects/name-that-color */
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/*
|
|
|
|
This stylesheet is designed to override the base style sheet doxygen.css
|
|
|
|
for Doxygen 1.8.20.
|
|
|
|
|
|
|
|
Some principles:
|
|
|
|
* Normal fonts are "Noto Sans",Arial,sans-serif
|
|
|
|
* Fixed space fonts are "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
* No rounded corners (border-radius: 0;)
|
|
|
|
* No box shadows (box-shadow: 0;)
|
|
|
|
* A selection of specific colors for borders, links, and other visual elements
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Override font selections */
|
|
|
|
|
|
|
|
body, table, div, p, dl {
|
|
|
|
font: 400 14px/22px "Noto Sans",Arial,sans-serif;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
p.reference, p.definition {
|
|
|
|
font: 400 14px/22px "Noto Sans",Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre.fragment {
|
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.line {
|
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overload {
|
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.params .paramdir, .tparams .paramdir {
|
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.directory {
|
|
|
|
font: 400 14px "Noto Sans", Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navpath li.navelem a
|
|
|
|
{
|
|
|
|
font-family: "Noto Sans", Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.toc li {
|
|
|
|
font: 10px/1.2 "Noto Sans", Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.toc h3 {
|
|
|
|
font: bold 12px/1.2 "Noto Sans", Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#powerTip div {
|
|
|
|
font: 12px/16px "Noto Sans", Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove rounded borders */
|
|
|
|
div.ah, span.ah {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.memtitle {
|
|
|
|
border-radius: 0;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
.memproto, dl.reflist dt {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.memdoc, dl.reflist dd {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.fieldtable {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fieldtable th {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.toc {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#powerTip {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Colors and headers */
|
|
|
|
|
2009-02-02 00:44:07 +03:00
|
|
|
body {
|
2011-11-02 12:36:02 +04:00
|
|
|
color: #333333; /* mine shaft */
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
color: #0c3762; /* madison */
|
2013-01-16 21:44:22 +04:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2020-09-27 11:32:04 +03:00
|
|
|
margin-right: 0;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 1.3em;
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
|
|
|
|
h2 {
|
2011-11-02 12:36:02 +04:00
|
|
|
font-size: 1.3em;
|
2009-02-02 00:44:07 +03:00
|
|
|
font-weight: normal;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2011-11-02 12:36:02 +04:00
|
|
|
font-size: 1.2em;
|
2009-02-02 00:44:07 +03:00
|
|
|
font-weight: normal;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2011-11-02 12:36:02 +04:00
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5, h6 {
|
2009-02-02 00:44:07 +03:00
|
|
|
font-size: 1.0em;
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: normal;
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
.title {
|
|
|
|
color: #0c3762; /* madison */
|
|
|
|
font-size: 1.3em;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
h2.groupheader, h2.memtitle {
|
|
|
|
font-size: 1.3em;
|
|
|
|
border: none;
|
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
|
|
|
color: #0c3762;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding: 0;
|
|
|
|
background: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
.dirtab {
|
|
|
|
border: 1px solid #84b0c7; /* glacier */
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
th.dirtab {
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Links */
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
a:link {
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
color: #dc3c01; /* grenadier */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
.contents a:visited {
|
2017-01-24 22:58:36 +03:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
color: #892601; /* peru tan */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
a:hover, a:active {
|
|
|
|
text-decoration: underline;
|
2011-11-02 12:36:02 +04:00
|
|
|
color: #ff4500; /* vermilion */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Some headers act as anchors, don't give them a hover effect */
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
h1 a:hover, a:active, h2 a:hover, a:active, h3 a:hover, a:active,
|
|
|
|
h4 a:hover, a:active, h5 a:hover, a:active, h6 a:hover, a:active {
|
2009-02-02 00:44:07 +03:00
|
|
|
text-decoration: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
color: #0c3762; /* madison */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
/* Custom Header */
|
|
|
|
|
|
|
|
#banner {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 84px;
|
|
|
|
background: #eeeeee; /* gallery */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
#banner div.logo {
|
2017-01-24 22:58:36 +03:00
|
|
|
background: url('https://www.haiku-os.org/images/haiku_logo_black.png') no-repeat scroll 0 0 transparent;
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2011-11-02 12:36:02 +04:00
|
|
|
height: 100%;
|
|
|
|
margin: 0 auto;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
#banner span.subtitle {
|
|
|
|
position: relative;
|
2014-06-30 23:20:12 +04:00
|
|
|
top: 48px;
|
2011-11-02 12:36:02 +04:00
|
|
|
left: 272px;
|
|
|
|
color: #333333; /* mine shaft */
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 3px;
|
|
|
|
font-family: Myriad Pro,Myriad Web Pro Regular,Lucida Grande,Geneva,Trebuchet MS,sans-serif;
|
|
|
|
font-weight: normal;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2014-06-30 23:20:12 +04:00
|
|
|
#banner span.search {
|
|
|
|
position: relative;
|
|
|
|
top: 48px;
|
2017-01-24 22:58:36 +03:00
|
|
|
left: 600px;
|
2014-06-30 23:20:12 +04:00
|
|
|
}
|
|
|
|
|
2014-06-30 05:30:14 +04:00
|
|
|
input[type=text], input[type=password] {
|
2014-06-30 23:20:12 +04:00
|
|
|
font-size: inherit;
|
|
|
|
border-top: 1px solid #818181;
|
|
|
|
border-left: 1px solid #818181;
|
|
|
|
border-bottom: 1px solid #858585;
|
|
|
|
border-right: 1px solid #858585;
|
|
|
|
margin-top: 3px;
|
|
|
|
padding: 2px;
|
|
|
|
width: 200px;
|
2014-06-30 05:30:14 +04:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.header {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin: 10px auto;
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2020-09-27 11:32:04 +03:00
|
|
|
border: none;
|
|
|
|
background: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.summary {
|
|
|
|
margin: 0 auto;
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
display: none;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.headertitle {
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2020-09-27 11:32:04 +03:00
|
|
|
padding: 0;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.headertitle div.title {
|
|
|
|
color: #0c3762; /* madison */
|
2013-01-16 21:44:22 +04:00
|
|
|
font-size: 1.3em;
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: bold;
|
2013-01-16 21:44:22 +04:00
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.ingroups {
|
|
|
|
margin-top: 10px;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Make the "Since" member docs one line */
|
|
|
|
|
|
|
|
dl.since {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.since dt {
|
|
|
|
display: inline;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.since dd {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Navigation Tabs (overrides tabs.css) */
|
2011-11-02 12:36:02 +04:00
|
|
|
|
2017-09-30 18:26:46 +03:00
|
|
|
.sm-dox {
|
|
|
|
background: #e0e0e0; /* alto */
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.sm-dox > li > a, .sm-dox > li > a:hover, .sm-dox > li > a:visited,
|
|
|
|
.sm-dox > li > a:link, .sm-dox > li > a:active {
|
|
|
|
padding: 0 12px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox > li > a.has-submenu {
|
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox a, .sm-dox ul a, .sm-dox a:visited, .sm-dox ul a:visited,
|
|
|
|
.sm-dox a:link, .sm-dox ul a:link {
|
|
|
|
background-image: none;
|
|
|
|
color: #dc3c01; /* grenadier */
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox a:hover, .sm-dox ul a:hover {
|
|
|
|
background-color: #e0e0e0; /* alto */
|
|
|
|
background-image: none;
|
|
|
|
color: #ff4500; /* vermilion */
|
|
|
|
text-decoration: underline;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox a:active, .sm-dox ul a:active {
|
|
|
|
color: #0c3762; /* madison */
|
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox a:focus, .sm-dox ul a:focus,
|
|
|
|
.sm-dox a.highlighted, .sm-dox ul a.highlighted {
|
|
|
|
background-image: none;
|
|
|
|
color: #ff4500; /* vermilion */
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.sm-dox a span.sub-arrow {
|
|
|
|
border-top-color: #dc3c01; /* grenadier */
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox ul a span.sub-arrow {
|
|
|
|
border-left-color: #dc3c01; /* grenadier */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox span.scroll-up-arrow {
|
|
|
|
border-bottom-color: #dc3c01; /* grenadier */
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox span.scroll-down-arrow {
|
|
|
|
border-top-color: #dc3c01; /* grenadier */
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.sm-dox a:hover span.sub-arrow {
|
|
|
|
border-top-color: #ff4500; /* vermilion */
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox ul a:hover span.sub-arrow {
|
|
|
|
border-left-color: #ff4500; /* vermilion */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox span.scroll-up-arrow {
|
|
|
|
border-bottom-color: #ff4500; /* vermilion */
|
|
|
|
}
|
|
|
|
|
|
|
|
.sm-dox span.scroll-down-arrow {
|
|
|
|
border-top-color: #ff4500; /* vermilion */
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main-nav {
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
background: #e0e0e0; /* alto */
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main-nav ul#main-menu {
|
|
|
|
margin: 0 auto;
|
|
|
|
list-style: none;
|
|
|
|
max-width: 70em;
|
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.navpath {
|
|
|
|
margin: 20px auto;
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.navpath ul {
|
2017-01-24 22:58:36 +03:00
|
|
|
display: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.tabs ul.tablist li, div.tabs2 ul.tablist li, div.tabs3 ul.tablist li {
|
2009-02-02 00:44:07 +03:00
|
|
|
display: inline;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2011-11-02 12:36:02 +04:00
|
|
|
font-size: 0.8em;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.tabs ul.tablist li span, div.tabs2 ul.tablist li span,
|
|
|
|
div.tabs3 ul.tablist li span {
|
2009-02-02 00:44:07 +03:00
|
|
|
display: inline;
|
2011-11-02 12:36:02 +04:00
|
|
|
padding-right: 9px;
|
2009-02-02 00:44:07 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.tabs ul.tablist li li.current a, div.tabs2 ul.tablist li li.current a,
|
|
|
|
div.tabs3 ul.tablist li li.current a {
|
2009-02-02 00:44:07 +03:00
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Standard table styling */
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
td, th {
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Contents & footer: center on page with a maximum width */
|
|
|
|
|
|
|
|
div.contents, .footer {
|
2011-11-02 12:36:02 +04:00
|
|
|
line-height: 1.5;
|
|
|
|
margin: 10px auto;
|
2017-01-07 03:04:03 +03:00
|
|
|
min-width: 59em;
|
|
|
|
max-width: 70em;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Contents: Style the elements on the page */
|
2011-11-02 12:36:02 +04:00
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
div.contents em, div.contents code, div.contents .mlabel {
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2013-01-31 03:54:16 +04:00
|
|
|
div.contents em {
|
|
|
|
color: #dc3c01; /* grenadier */
|
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
div.contents .mlabels-right {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2020-09-27 11:32:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
div.contents code, span.mlabel {
|
2011-11-02 12:36:02 +04:00
|
|
|
color: blue;
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
2017-01-24 22:58:36 +03:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
2020-09-27 11:32:04 +03:00
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.title span.mlabel {
|
|
|
|
background-color: white;
|
|
|
|
font-size: 14.4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto span.mlabel {
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
font-size: 14.4px;
|
2017-01-24 22:58:36 +03:00
|
|
|
}
|
2020-09-27 11:32:04 +03:00
|
|
|
|
|
|
|
span.mlabel:before {
|
2017-01-24 22:58:36 +03:00
|
|
|
content: "[";
|
|
|
|
}
|
2020-09-27 11:32:04 +03:00
|
|
|
|
|
|
|
span.mlabel:after {
|
2017-01-24 22:58:36 +03:00
|
|
|
content: "]";
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.contents td {
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
div.contents td span.arrow {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents td.desc {
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents div.dynheader {
|
2013-02-07 23:49:43 +04:00
|
|
|
color: #0c3762; /* madison */
|
|
|
|
font-size: 1.3em;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2013-02-07 23:42:20 +04:00
|
|
|
div.contents div.dyncontent {
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #c7c7c7; /* silver */
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents div.dyncontent div.center {
|
|
|
|
text-align: center;
|
|
|
|
margin: 16px;
|
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
div.contents td.memSeparator {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
div.contents span.keycap, div.contents span.keysym {
|
|
|
|
-webkit-border-radius: 3px;
|
2017-01-24 22:58:36 +03:00
|
|
|
-khtml-border-radius: 3px;
|
2011-11-02 12:36:02 +04:00
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border-color: #c7c7c7; /* silver */
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
padding: 0px 2px 0px 2px;
|
|
|
|
background-color: #e8e8e8; /* mercury */
|
|
|
|
font-family: serif;
|
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents div.textblock {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents hr {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents li {
|
2015-01-28 03:14:36 +03:00
|
|
|
line-height: 1.3;
|
2011-11-02 12:36:02 +04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.contents dt {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 8px;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
2020-03-08 11:57:37 +03:00
|
|
|
div.image {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
.icon {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 12px;
|
|
|
|
height: 14px;
|
|
|
|
width: 16px;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #ff4500;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Entry markers */
|
|
|
|
dl dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dl dt::after {
|
|
|
|
content: ":";
|
|
|
|
}
|
|
|
|
|
2010-08-09 12:46:16 +04:00
|
|
|
/* The boxes from the userguide */
|
2011-11-02 12:36:02 +04:00
|
|
|
dl.note, dl.remark, dl.warning, dl.attention {
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
padding: 4px;
|
2013-01-16 21:44:22 +04:00
|
|
|
min-height: 48px;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
2013-01-31 03:43:09 +04:00
|
|
|
dl.note dd, dl.remark dd, dl.warning dd, dl.attention dd {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
dl.note {
|
2017-01-28 21:33:19 +03:00
|
|
|
background: #deebff url('https://www.haiku-os.org/images/alert_info_32.png') 15px 15px no-repeat;
|
|
|
|
border-color: #183cce;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
dl.remark {
|
2017-01-24 22:58:36 +03:00
|
|
|
background: #f3f3f3 url('https://www.haiku-os.org/images/alert_idea_32.png') 15px 15px no-repeat;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-color: #c0c0c0; /* silver */
|
2010-08-09 12:46:16 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
dl.warning {
|
|
|
|
/* lemon chiffon */
|
2017-01-24 22:58:36 +03:00
|
|
|
background: #fffbc6 url('https://www.haiku-os.org/images/alert_warning_32.png') 15px 15px no-repeat;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-color: #eed300; /* gold */
|
2010-08-09 12:46:16 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
dl.attention {
|
|
|
|
/* fair pink */
|
2017-01-24 22:58:36 +03:00
|
|
|
background: #ffeae6 url('https://www.haiku-os.org/images/alert_stop_32.png') 15px 15px no-repeat;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-color: red;
|
2010-08-09 12:46:16 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
dl.note dt, dl.remark dt, dl.warning dt, dl.attention dt {
|
2017-01-24 22:58:36 +03:00
|
|
|
display: none; /* don't display the Note: or Warning: header */
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
dl.note dd, dl.remark dd, dl.warning dd, dl.attention dd {
|
|
|
|
margin: 10px 10px 10px 60px;
|
|
|
|
color: black; /* pseudo-bold */
|
2010-08-09 12:46:16 +04:00
|
|
|
}
|
|
|
|
|
2011-08-10 01:46:13 +04:00
|
|
|
/* For keyboard shortcuts and the like (also from userguide) */
|
|
|
|
|
|
|
|
div.contents span.keycap {
|
|
|
|
-webkit-border-radius: 3px;
|
2017-01-24 22:58:36 +03:00
|
|
|
-khtml-border-radius: 3px;
|
2011-08-10 01:46:13 +04:00
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
2011-11-02 12:36:02 +04:00
|
|
|
border-color: #c7c7c7; /* silver */
|
2011-08-10 01:46:13 +04:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
padding: 0px 2px 0px 2px;
|
2011-11-02 12:36:02 +04:00
|
|
|
background-color: #e8e8e8; /* mercury */
|
2011-08-10 01:46:13 +04:00
|
|
|
font-family: serif;
|
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
2009-02-02 00:44:07 +03:00
|
|
|
/* Continue with the rest of the standard Doxygen stuff... */
|
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
A.code:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: normal;
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
A.codeRef:link {
|
|
|
|
font-weight: normal;
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
A.codeRef:visited {
|
|
|
|
font-weight: normal;
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
dl.el {
|
|
|
|
margin-left: -1cm
|
|
|
|
}
|
2020-09-27 11:32:04 +03:00
|
|
|
|
|
|
|
/* Code blocks */
|
2011-11-02 12:36:02 +04:00
|
|
|
div.fragment {
|
|
|
|
width: 99%;
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
border: 1px solid #c0c0c0; /* silver */
|
|
|
|
padding: 4px;
|
|
|
|
color: black;
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
2011-11-02 12:36:02 +04:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
2012-12-23 21:05:03 +04:00
|
|
|
font-size: 13px;
|
2011-11-02 12:36:02 +04:00
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
div.fragment pre.fragment a.code {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
div.ah {
|
|
|
|
background-color: black;
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
TD.indexkey {
|
2011-11-02 12:36:02 +04:00
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
border: 1px solid #c0c0c0; /* silver */
|
2009-02-02 00:44:07 +03:00
|
|
|
font-weight: bold;
|
|
|
|
padding-right : 10px;
|
|
|
|
padding-top : 2px;
|
|
|
|
padding-left : 10px;
|
|
|
|
padding-bottom : 2px;
|
|
|
|
margin-left : 0px;
|
|
|
|
margin-right : 0px;
|
|
|
|
margin-top : 2px;
|
|
|
|
margin-bottom : 2px;
|
|
|
|
}
|
|
|
|
TD.indexvalue {
|
2011-11-02 12:36:02 +04:00
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
border: 1px solid #c0c0c0; /* silver */
|
2009-02-02 00:44:07 +03:00
|
|
|
font-style: italic;
|
|
|
|
padding-right : 10px;
|
|
|
|
padding-top : 2px;
|
|
|
|
padding-left : 10px;
|
|
|
|
padding-bottom : 2px;
|
|
|
|
margin-left : 0px;
|
|
|
|
margin-right : 0px;
|
|
|
|
margin-top : 2px;
|
|
|
|
margin-bottom : 2px;
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
|
|
|
TR.memlist {
|
2011-11-02 12:36:02 +04:00
|
|
|
background-color: #f0f0f0; /* gallery */
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2020-09-27 11:32:04 +03:00
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
/* member declaration table */
|
|
|
|
|
|
|
|
table.memberdecls {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.memberdecls td.memItemLeft {
|
|
|
|
font-size: 13px;
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
2011-11-02 12:36:02 +04:00
|
|
|
white-space: nowrap;
|
|
|
|
text-align: right;
|
|
|
|
padding: 6px 0px 4px 8px;
|
2009-02-02 00:44:07 +03:00
|
|
|
margin: 4px;
|
2011-11-02 12:36:02 +04:00
|
|
|
vertical-align: top;
|
|
|
|
border-top: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-left: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
}
|
|
|
|
|
|
|
|
table.memberdecls td.memItemRight {
|
|
|
|
font-size: 13px;
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
2011-11-02 12:36:02 +04:00
|
|
|
padding: 6px 8px 4px 0px;
|
2009-02-02 00:44:07 +03:00
|
|
|
margin: 4px;
|
2011-11-02 12:36:02 +04:00
|
|
|
vertical-align: top;
|
|
|
|
border-top: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-right: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td.mdescLeft {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1.3;
|
|
|
|
padding: 1px 0px 4px 8px;
|
|
|
|
margin: 0px;
|
|
|
|
border-bottom: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-left: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td.mdescRight {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1.3;
|
|
|
|
padding: 1px 8px 4px 0px;
|
|
|
|
margin: 0px;
|
|
|
|
border-bottom: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-right: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td.mdescRight p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2003-08-27 07:44:59 +04:00
|
|
|
}
|
2009-02-02 00:44:07 +03:00
|
|
|
|
2011-11-02 12:36:02 +04:00
|
|
|
table.memberdecls td.memTemplItemLeft {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 1px 0px 0px 8px;
|
|
|
|
margin: 0px;
|
|
|
|
text-align: right;
|
|
|
|
border-left: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td.memTemplItemRight {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 1px 8px 0px 0px;
|
|
|
|
margin: 0px;
|
|
|
|
border-right: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td.memTemplParams {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 1px 0px 0px 8px;
|
|
|
|
margin: 0px;
|
|
|
|
border-top: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-left: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-right: 1px solid #c0c0c0; /* silver */
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
}
|
|
|
|
|
2017-01-24 22:58:36 +03:00
|
|
|
table.memberdecls td div.groupHeader, tr.inherit_header {
|
2011-11-02 12:36:02 +04:00
|
|
|
/* same as h3 */
|
|
|
|
color: #0c3762; /* madison */
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: dotted thin #c0c0c0; /* silver */
|
|
|
|
}
|
2017-01-24 22:58:36 +03:00
|
|
|
tr.inherit_header {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
table.memberdecls td div.groupText {
|
|
|
|
font-size: 14.4px;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Style for detailed member documentation */
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
div.memtemplate {
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
2017-01-24 22:58:36 +03:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
div.memnav {
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
border: 1px solid #c0c0c0; /* silver */
|
|
|
|
text-align: center;
|
|
|
|
margin: 2px;
|
|
|
|
margin-right: 15px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* member item */
|
|
|
|
|
|
|
|
div.memitem {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
width: 100%;
|
2020-09-27 11:32:04 +03:00
|
|
|
box-shadow: none;
|
|
|
|
transition: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.memitem dl.info, div.memitem dl.note, div.memitem dl.attention,
|
|
|
|
div.memitem dl.warning,
|
|
|
|
div.memitem dl.stop, div.memitem dl.bug {
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* member prototype */
|
|
|
|
|
|
|
|
div.memproto {
|
|
|
|
padding: 4px;
|
|
|
|
background-color: #f3f3f3; /* concrete */
|
|
|
|
border: 1px solid #c0c0c0; /* silver */
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto table {
|
2013-01-18 03:13:05 +04:00
|
|
|
font-size: 14.4px;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* member table */
|
|
|
|
|
|
|
|
div.memproto table.memname {
|
|
|
|
line-height: 1.3;
|
2020-09-27 11:32:04 +03:00
|
|
|
font-family: "Noto Sans Mono", Consolas, "Courier New", monospace, fixed;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto table.memname td.paramtype {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto table.memname td.paramkey {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto table.memname td.paramname {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memproto table.memname td.memname {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* member documentation */
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
div.memdoc {
|
|
|
|
width: 100%;
|
2020-09-27 11:32:04 +03:00
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
background: none;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc div.memproto {
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc table td {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 8px;
|
|
|
|
border: 1px solid #d5d5d5; /* silver */
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc td:first-child {
|
|
|
|
width: 157px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc dl dd table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc dl dd table td {
|
|
|
|
font-size: 14.4px;
|
|
|
|
padding: 8px;
|
|
|
|
border: 1px solid #d5d5d5; /* silver */
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc dl dd table td ul, table td ol {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc dl dd div.memdoc table.doxtable td {
|
|
|
|
border: none;
|
2009-02-02 00:44:07 +03:00
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
|
|
|
/* parameters table */
|
|
|
|
|
|
|
|
div.memdoc dl dd table.params td.paramdir {
|
|
|
|
vertical-align: top;
|
|
|
|
color: black;
|
|
|
|
width: 157px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.memdoc dl dd table.params td.paramname {
|
|
|
|
vertical-align: top;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
2013-01-31 03:58:55 +04:00
|
|
|
color: #dc3c01; /* grenadier */
|
2011-11-02 12:36:02 +04:00
|
|
|
width: 157px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return values table */
|
|
|
|
|
|
|
|
div.memdoc dl dd table.retval td.paramname {
|
|
|
|
vertical-align: top;
|
|
|
|
color: blue;
|
|
|
|
width: 157px;
|
|
|
|
}
|
|
|
|
|
2009-02-02 00:44:07 +03:00
|
|
|
/* End Styling for detailed member documentation */
|
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Tree View on Directory Pages */
|
|
|
|
div.directory {
|
|
|
|
border-top: 1px solid #c0c0c0; /* silver */
|
|
|
|
border-bottom: 1px solid #c0c0c0; /* silver */
|
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
.directory .levels span {
|
|
|
|
color: #dc3c01; /* grenadier */
|
|
|
|
}
|
2011-11-02 12:36:02 +04:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
/* Footer: color separator */
|
2011-11-02 12:36:02 +04:00
|
|
|
|
2020-09-27 11:32:04 +03:00
|
|
|
hr.footer {
|
|
|
|
height: 1px;
|
|
|
|
border-top: 1px solid #c0c0c0;
|
2011-11-02 12:36:02 +04:00
|
|
|
}
|