2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010, Red Hat Inc. or third-party contributors as
|
|
|
|
* indicated by the @author tags or express copyright attribution
|
|
|
|
* statements applied by the authors. All third-party contributions are
|
|
|
|
* distributed under license by Red Hat Inc.
|
|
|
|
*
|
|
|
|
* This copyrighted material is made available to anyone wishing to use, modify,
|
|
|
|
* copy, or redistribute it subject to the terms and conditions of the GNU
|
|
|
|
* Lesser General Public License, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this distribution; if not, write to:
|
|
|
|
* Free Software Foundation, Inc.
|
|
|
|
* 51 Franklin Street, Fifth Floor
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Custom Hibernate javadoc style sheet
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Javadoc style sheet
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inconsolata');
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Lato');
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Styles for individual HTML elements.
|
|
|
|
*
|
|
|
|
* These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
|
|
|
|
* HTML element throughout the page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
body {
|
2024-05-06 16:46:36 -04:00
|
|
|
background-color: #ffffff;
|
|
|
|
color: #353833;
|
|
|
|
font-family: Lato, 'DejaVu Sans', Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 15px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
iframe {
|
2024-05-06 16:46:36 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
border: none;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
a:link, a:visited {
|
2024-05-06 16:46:36 -04:00
|
|
|
text-decoration: none;
|
|
|
|
color: #4A6782;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
a[href]:hover, a[href]:focus {
|
2024-05-06 16:46:36 -04:00
|
|
|
text-decoration: none;
|
|
|
|
color: #bb7a2a;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
a[name] {
|
2024-05-06 16:46:36 -04:00
|
|
|
color: #353833;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
pre {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-family: 'Inconsolata', 'DejaVu Sans Mono', monospace;
|
|
|
|
font-size: 15px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h1 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 20px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h2 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 18px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h3 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 16px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h4 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 15px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h5 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 14px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h6 {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 13px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
ul {
|
2024-05-06 16:46:36 -04:00
|
|
|
list-style-type: disc;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
code, tt {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-family: 'Inconsolata', 'DejaVu Sans Mono', monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:not(h1, h2, h3, h4, h5, h6) > code,
|
|
|
|
:not(h1, h2, h3, h4, h5, h6) > tt {
|
|
|
|
font-size: 14px;
|
|
|
|
padding-top: 4px;
|
|
|
|
margin-top: 8px;
|
|
|
|
line-height: 1.4em;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
dt code {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-family: 'Inconsolata', 'DejaVu Sans Mono', monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
padding-top: 4px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.summary-table dt code {
|
|
|
|
font-family: 'Inconsolata', 'DejaVu Sans Mono', monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
vertical-align: top;
|
|
|
|
padding-top: 4px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
sup {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-size: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Styles for HTML generated by javadoc.
|
|
|
|
*
|
|
|
|
* These are style classes that are used by the standard doclet to generate HTML documentation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Styles for document title and copyright.
|
|
|
|
*/
|
|
|
|
.clear {
|
2024-05-06 16:46:36 -04:00
|
|
|
clear: both;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.about-language {
|
|
|
|
float: right;
|
|
|
|
padding: 0 21px 8px 8px;
|
|
|
|
font-size: 11px;
|
|
|
|
margin-top: -9px;
|
|
|
|
height: 2.9em;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.legal-copy {
|
|
|
|
margin-left: .5em;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.tab {
|
2024-05-06 16:46:36 -04:00
|
|
|
background-color: #0066FF;
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 8px;
|
|
|
|
width: 5em;
|
|
|
|
font-weight: bold;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for navigation bar.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
@media screen {
|
|
|
|
.flex-box {
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-header {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-nav {
|
|
|
|
background-color: rgb(89, 102, 108);
|
|
|
|
color: #FFFFFF;
|
|
|
|
float: left;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
clear: right;
|
|
|
|
min-height: 2.8em;
|
|
|
|
padding-top: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 12px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.sub-nav {
|
|
|
|
background-color: rgb(188, 174, 121, 0.5);
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 12px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.sub-nav div {
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
|
|
|
padding: 0 0 5px 6px;
|
|
|
|
text-transform: uppercase;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.sub-nav .nav-list {
|
|
|
|
padding-top: 5px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
ul.nav-list {
|
|
|
|
display: block;
|
|
|
|
margin: 0 25px 0 0;
|
|
|
|
padding: 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
ul.sub-nav-list {
|
|
|
|
float: left;
|
|
|
|
margin: 0 25px 0 0;
|
|
|
|
padding: 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
ul.nav-list li {
|
|
|
|
list-style: none;
|
|
|
|
float: left;
|
|
|
|
padding: 5px 6px;
|
|
|
|
text-transform: uppercase;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.sub-nav .nav-list-search {
|
|
|
|
float: right;
|
|
|
|
margin: 0 0 0 0;
|
|
|
|
padding: 5px 6px;
|
|
|
|
clear: none;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.nav-list-search label {
|
|
|
|
position: relative;
|
|
|
|
right: -16px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
ul.sub-nav-list li {
|
|
|
|
list-style: none;
|
|
|
|
float: left;
|
|
|
|
padding-top: 10px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.top-nav a:link, .top-nav a:active, .top-nav a:visited {
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-nav a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #bb7a2a;
|
|
|
|
text-transform: uppercase;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.nav-bar-cell1-rev {
|
|
|
|
background-color: #F8981D;
|
|
|
|
color: #253441;
|
|
|
|
margin: auto 5px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.skip-nav {
|
|
|
|
position: absolute;
|
|
|
|
top: auto;
|
|
|
|
left: -9999px;
|
|
|
|
overflow: hidden;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Hide navigation links and search box in print layout
|
|
|
|
*/
|
|
|
|
@media print {
|
|
|
|
ul.nav-list, div.sub-nav {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Styles for page header and footer.
|
|
|
|
*/
|
2022-12-26 16:42:42 -05:00
|
|
|
.title {
|
2024-05-06 16:46:36 -04:00
|
|
|
color: #2c4557;
|
|
|
|
margin: 10px 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.sub-title {
|
|
|
|
margin: 5px 0 0 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.header ul {
|
2024-05-06 16:46:36 -04:00
|
|
|
margin: 0 0 15px 0;
|
|
|
|
padding: 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.header ul li, .footer ul li {
|
2024-05-06 16:46:36 -04:00
|
|
|
list-style: none;
|
|
|
|
font-size: 13px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for headings.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
body.class-declaration-page .summary h2,
|
|
|
|
body.class-declaration-page .details h2,
|
|
|
|
body.class-use-page h2,
|
|
|
|
body.module-declaration-page .block-list h2 {
|
|
|
|
font-style: italic;
|
|
|
|
padding: 0;
|
|
|
|
margin: 15px 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
body.class-declaration-page .summary h3,
|
|
|
|
body.class-declaration-page .details h3,
|
|
|
|
body.class-declaration-page .summary .inherited-list h2 {
|
|
|
|
background-color: rgb(188, 174, 121, 0.5);
|
|
|
|
border: 1px solid #d0d9e0;
|
|
|
|
margin: 0 0 6px -8px;
|
|
|
|
padding: 7px 5px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for page layout containers.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
main {
|
|
|
|
clear: both;
|
|
|
|
padding: 10px 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.notes > dt {
|
|
|
|
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
color: #4E4E4E;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
dl.notes > dd {
|
|
|
|
margin: 5px 10px 10px 0;
|
|
|
|
font-size: 15px;
|
|
|
|
font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.name-value > dt {
|
|
|
|
margin-left: 1px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
display: inline;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.name-value > dd {
|
|
|
|
margin: 0 0 0 1px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for lists.
|
|
|
|
*/
|
|
|
|
li.circle {
|
2024-05-06 16:46:36 -04:00
|
|
|
list-style: circle;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
ul.horizontal li {
|
2024-05-06 16:46:36 -04:00
|
|
|
display: inline;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.inheritance {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.inheritance div.inheritance {
|
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.block-list,
|
|
|
|
ul.details-list,
|
|
|
|
ul.member-list,
|
|
|
|
ul.summary-list {
|
|
|
|
margin: 10px 0 10px 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.block-list > li,
|
|
|
|
ul.details-list > li,
|
|
|
|
ul.member-list > li,
|
|
|
|
ul.summary-list > li {
|
|
|
|
list-style: none;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary-table dl, .summary-table dl dt, .summary-table dl dd {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.see-list, ul.see-list-long {
|
|
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.see-list li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.see-list li:not(:last-child):after,
|
|
|
|
ul.see-list-long li:not(:last-child):after {
|
|
|
|
content: ", ";
|
|
|
|
white-space: pre-wrap;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for tables.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
.summary-table, .details-table {
|
|
|
|
width: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
border-left: 1px solid #EEE;
|
|
|
|
border-right: 1px solid #EEE;
|
|
|
|
border-bottom: 1px solid #EEE;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption {
|
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
color: #253441;
|
|
|
|
font-weight: bold;
|
|
|
|
clear: none;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 1px;
|
|
|
|
margin: 0;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption a:link, .caption a:visited {
|
|
|
|
color: #1f389c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption a:hover,
|
|
|
|
.caption a:active {
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption span {
|
|
|
|
white-space: nowrap;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-bottom: 7px;
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
background-color: #F8981D;
|
|
|
|
border: none;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.table-tabs {
|
|
|
|
padding: 10px 0 0 1px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.table-tabs > button {
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px 12px 7px 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.table-tabs > button.active-table-tab {
|
|
|
|
background: #F8981D;
|
|
|
|
color: #253441;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.table-tabs > button.table-tab {
|
|
|
|
background: rgb(89, 102, 108);
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.two-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
.three-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
.four-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.two-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
.three-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(10%, max-content) minmax(25%, auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
.three-column-summary .col-last {
|
|
|
|
grid-column-end: span 2;
|
|
|
|
}
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
|
|
.four-column-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary-table > div, .details-table > div {
|
|
|
|
text-align: left;
|
|
|
|
padding: 8px 3px 3px 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
|
|
|
|
vertical-align: top;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header {
|
|
|
|
background: rgb(188, 174, 121, 0.5);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-first, .col-first {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-first, .col-second, .col-constructor-name {
|
|
|
|
vertical-align: top;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-last {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-first a:link, .col-first a:visited,
|
|
|
|
.col-second a:link, .col-second a:visited,
|
|
|
|
.col-first a:link, .col-first a:visited,
|
|
|
|
.col-second a:link, .col-second a:visited,
|
|
|
|
.col-constructor-name a:link, .col-constructor-name a:visited,
|
|
|
|
.col-summary-item-name a:link, .col-summary-item-name a:visited,
|
|
|
|
.constant-values-container a:link, .constant-values-container a:visited,
|
|
|
|
.all-classes-container a:link, .all-classes-container a:visited,
|
|
|
|
.all-packages-container a:link, .all-packages-container a:visited {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-sub-heading-color {
|
|
|
|
background-color: #EEEEFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.even-row-color, .even-row-color .table-header {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.odd-row-color, .odd-row-color .table-header {
|
|
|
|
background-color: #EEEEEF;
|
|
|
|
}
|
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for contents.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
.deprecated-content {
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
div.block {
|
|
|
|
font-size: 15px;
|
|
|
|
font-family: Lato, 'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.col-last div {
|
|
|
|
padding-top: 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.col-last a {
|
|
|
|
padding-bottom: 3px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.module-signature,
|
|
|
|
.package-signature,
|
|
|
|
.type-signature,
|
|
|
|
.member-signature {
|
|
|
|
font-family: 'DejaVu Sans Mono', monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 14px 0;
|
|
|
|
white-space: pre-wrap;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.module-signature,
|
|
|
|
.package-signature,
|
|
|
|
.type-signature {
|
|
|
|
margin-top: 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.member-signature .type-parameters-long,
|
|
|
|
.member-signature .parameters,
|
|
|
|
.member-signature .exceptions {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
.member-signature .type-parameters {
|
|
|
|
white-space: normal;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for formatting effect.
|
|
|
|
*/
|
2024-05-06 16:46:36 -04:00
|
|
|
.source-line-no {
|
|
|
|
color: green;
|
|
|
|
padding: 0 30px 0 0;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
h1.hidden {
|
2024-05-06 16:46:36 -04:00
|
|
|
visibility: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 10px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.block {
|
2024-05-06 16:46:36 -04:00
|
|
|
display: block;
|
|
|
|
margin: 0 10px 5px 0;
|
|
|
|
color: #474747;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link,
|
|
|
|
.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type,
|
|
|
|
.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deprecation-comment, .help-footnote, .preview-comment {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deprecation-block {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: thin;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
display: inline-block;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.preview-block {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: thin;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.block div.deprecation-comment {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles specific to HTML5 elements.
|
|
|
|
*/
|
|
|
|
main, nav, header, footer, section {
|
2024-05-06 16:46:36 -04:00
|
|
|
display: block;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
/*
|
|
|
|
* Styles for javadoc search.
|
|
|
|
*/
|
|
|
|
.ui-autocomplete-category {
|
2024-05-06 16:46:36 -04:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 7px 0 7px 3px;
|
|
|
|
background-color: #4D7A97;
|
|
|
|
color: #FFFFFF;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.result-item {
|
|
|
|
font-size: 13px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.ui-autocomplete {
|
2024-05-06 16:46:36 -04:00
|
|
|
max-height: 85%;
|
|
|
|
max-width: 65%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: scroll;
|
|
|
|
white-space: nowrap;
|
|
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
ul.ui-autocomplete {
|
2024-05-06 16:46:36 -04:00
|
|
|
position: fixed;
|
|
|
|
z-index: 999999;
|
2022-12-26 16:42:42 -05:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
ul.ui-autocomplete li {
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
|
|
|
width: 100%;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.result-highlight {
|
|
|
|
font-weight: bold;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.ui-autocomplete .result-item {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
#search-input {
|
|
|
|
background-image: url('resources/glass.png');
|
|
|
|
background-size: 13px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 2px 3px;
|
|
|
|
padding-left: 20px;
|
|
|
|
position: relative;
|
|
|
|
right: -18px;
|
|
|
|
width: 400px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
#reset-button {
|
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
background-image: url('resources/x.png');
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 12px;
|
|
|
|
border: 0 none;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: relative;
|
|
|
|
left: -4px;
|
|
|
|
top: -4px;
|
|
|
|
font-size: 0px;
|
|
|
|
}
|
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
.watermark {
|
2024-05-06 16:46:36 -04:00
|
|
|
color: #545454;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.search-tag-desc-result {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 11px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.search-tag-holder-result {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 12px;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.search-tag-result:target {
|
|
|
|
background-color: yellow;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.module-graph span {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.module-graph:hover span {
|
|
|
|
display: block;
|
2022-12-26 16:42:42 -05:00
|
|
|
margin: -100px 0 0 100px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
.inherited-list {
|
|
|
|
margin: 10px 0 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.class-description {
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary section[class$="-summary"], .details section[class$="-details"],
|
|
|
|
.class-uses .detail, .serialized-class-details {
|
|
|
|
padding: 0px 20px 5px 10px;
|
|
|
|
border: 1px solid #ededed;
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inherited-list, section[class$="-details"] .detail {
|
|
|
|
padding: 0 0 5px 8px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vertical-separator {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.help-section-list {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.help-subtoc > li {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 5px;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.help-subtoc > li::before {
|
|
|
|
content: "\2022";
|
|
|
|
padding-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.help-note {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Indicator icon for external links.
|
|
|
|
*/
|
|
|
|
main a[href*="://"]::after {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
background-image: url('data:image/svg+xml; utf8, \
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
|
|
|
|
<path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
|
|
|
|
132-240 240 120 120 240-240 132 132V0z" fill="%234a6782"/>\
|
|
|
|
</svg>');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
width: 7px;
|
|
|
|
height: 7px;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main a[href*="://"]:hover::after,
|
|
|
|
main a[href*="://"]:focus::after {
|
|
|
|
background-image: url('data:image/svg+xml; utf8, \
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
|
|
|
|
<path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
|
|
|
|
132-240 240 120 120 240-240 132 132V0z" fill="%23bb7a2a"/>\
|
|
|
|
</svg>');
|
2022-12-26 16:42:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Styles for user-provided tables.
|
|
|
|
*
|
|
|
|
* borderless:
|
|
|
|
* No borders, vertical margins, styled caption.
|
|
|
|
* This style is provided for use with existing doc comments.
|
|
|
|
* In general, borderless tables should not be used for layout purposes.
|
|
|
|
*
|
|
|
|
* plain:
|
|
|
|
* Plain borders around table and cells, vertical margins, styled caption.
|
|
|
|
* Best for small tables or for complex tables for tables with cells that span
|
|
|
|
* rows and columns, when the "striped" style does not work well.
|
|
|
|
*
|
|
|
|
* striped:
|
|
|
|
* Borders around the table and vertical borders between cells, striped rows,
|
|
|
|
* vertical margins, styled caption.
|
|
|
|
* Best for tables that have a header row, and a body containing a series of simple rows.
|
|
|
|
*/
|
|
|
|
|
|
|
|
table.borderless,
|
|
|
|
table.plain,
|
|
|
|
table.striped {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.borderless > caption,
|
|
|
|
table.plain > caption,
|
|
|
|
table.striped > caption {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.borderless th, table.borderless td,
|
|
|
|
table.plain th, table.plain td,
|
|
|
|
table.striped th, table.striped td {
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.borderless,
|
|
|
|
table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
|
|
|
|
table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
|
|
|
|
border: none;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.plain {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
|
|
|
|
table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > thead {
|
|
|
|
background-color: #E3E3E3;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > thead > tr > th, table.striped > thead > tr > td {
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > tbody > tr:nth-child(even) {
|
|
|
|
background-color: #EEE
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > tbody > tr:nth-child(odd) {
|
|
|
|
background-color: #FFF
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > tbody > tr > th, table.striped > tbody > tr > td {
|
|
|
|
border-left: 1px solid black;
|
|
|
|
border-right: 1px solid black;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
2022-12-26 16:42:42 -05:00
|
|
|
table.striped > tbody > tr > th {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2024-05-06 16:46:36 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tweak font sizes and paddings for small screens.
|
|
|
|
*/
|
|
|
|
@media screen and (max-width: 1050px) {
|
|
|
|
#search-input {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
#search-input {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-nav,
|
|
|
|
.bottom-nav {
|
|
|
|
font-size: 11px;
|
|
|
|
padding-top: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-nav {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-language {
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.nav-list li,
|
|
|
|
.sub-nav .nav-list-search {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sub-nav-list li {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary section[class$="-summary"], .details section[class$="-details"],
|
|
|
|
.class-uses .detail, .serialized-class-details {
|
|
|
|
padding: 0 8px 5px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
-webkit-text-size-adjust: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
#search-input {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-nav,
|
|
|
|
.bottom-nav {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-nav {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-language {
|
|
|
|
font-size: 10px;
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
|
|
|
}
|