src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/stylesheet.css
author pmuthuswamy
Wed, 06 Jun 2018 08:37:19 +0530
changeset 50420 912c5c042c19
parent 50167 cc705c956798
child 50810 0358dad944c7
permissions -rw-r--r--
8199893: the javadoc tool generates pages with a low constrast Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     1
/* 
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     2
 * Javadoc style sheet
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     3
 */
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     4
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     5
@import url('resources/fonts/dejavu.css');
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     6
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     7
/*
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     8
 * Styles for individual HTML elements.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
     9
 *
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    10
 * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    11
 * HTML element throughout the page.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    12
 */
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    13
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    14
body {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    15
    background-color:#ffffff;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    16
    color:#353833;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    17
    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    18
    font-size:14px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    19
    margin:0;
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    20
    padding:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    21
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    22
    width:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    23
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    24
iframe {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    25
    margin:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    26
    padding:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    27
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    28
    width:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    29
    overflow-y:scroll;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    30
    border:none;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    31
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    32
a:link, a:visited {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    33
    text-decoration:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    34
    color:#4A6782;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    35
}
44813
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
    36
a[href]:hover, a[href]:focus {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    37
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    38
    color:#bb7a2a;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    39
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    40
a[name] {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    41
    color:#353833;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    42
}
44567
126285be00b9 8175218: The fix for JDK-8141492 broke formatting of some javadoc documentation.
bpatel
parents: 44565
diff changeset
    43
a[name]:before, a[name]:target, a[id]:before, a[id]:target {
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    44
    content:"";
44567
126285be00b9 8175218: The fix for JDK-8141492 broke formatting of some javadoc documentation.
bpatel
parents: 44565
diff changeset
    45
    display:inline-block;
126285be00b9 8175218: The fix for JDK-8141492 broke formatting of some javadoc documentation.
bpatel
parents: 44565
diff changeset
    46
    position:relative;
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    47
    padding-top:129px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    48
    margin-top:-129px;
44567
126285be00b9 8175218: The fix for JDK-8141492 broke formatting of some javadoc documentation.
bpatel
parents: 44565
diff changeset
    49
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    50
pre {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    51
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    52
    font-size:14px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    53
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    54
h1 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    55
    font-size:20px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    56
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    57
h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    58
    font-size:18px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    59
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    60
h3 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    61
    font-size:16px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    62
    font-style:italic;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    63
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    64
h4 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    65
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    66
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    67
h5 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    68
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    69
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    70
h6 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    71
    font-size:11px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    72
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    73
ul {
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
    74
    list-style-type:disc;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    75
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    76
code, tt {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    77
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    78
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    79
    padding-top:4px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    80
    margin-top:8px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    81
    line-height:1.4em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    82
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    83
dt code {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    84
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    85
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    86
    padding-top:4px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    87
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    88
table tr td dt code {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    89
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    90
    font-size:14px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    91
    vertical-align:top;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    92
    padding-top:4px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    93
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    94
sup {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    95
    font-size:8px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    96
}
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    97
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    98
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
    99
 * Styles for HTML generated by javadoc.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   100
 *
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   101
 * These are style classes that are used by the standard doclet to generate HTML documentation.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   102
 */
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   103
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   104
/*
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   105
 * Styles for document title and copyright.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   106
 */
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   107
.clear {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   108
    clear:both;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   109
    height:0px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   110
    overflow:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   111
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   112
.aboutLanguage {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   113
    float:right;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   114
    padding:0px 21px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   115
    font-size:11px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   116
    z-index:200;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   117
    margin-top:-9px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   118
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   119
.legalCopy {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   120
    margin-left:.5em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   121
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   122
.bar a, .bar a:link, .bar a:visited, .bar a:active {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   123
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   124
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   125
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   126
.bar a:hover, .bar a:focus {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   127
    color:#bb7a2a;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   128
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   129
.tab {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   130
    background-color:#0066FF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   131
    color:#ffffff;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   132
    padding:8px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   133
    width:5em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   134
    font-weight:bold;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   135
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   136
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   137
 * Styles for navigation bar.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   138
 */
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   139
.bar {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   140
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   141
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   142
    padding:.8em .5em .4em .8em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   143
    height:auto;/*height:1.8em;*/
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   144
    font-size:11px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   145
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   146
}
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36277
diff changeset
   147
.navPadding {
43870
8805a0acaded 8151743: Header can still disappear behind the navbar
bpatel
parents: 43266
diff changeset
   148
    padding-top: 107px;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36277
diff changeset
   149
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   150
.fixedNav {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   151
    position:fixed;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   152
    width:100%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   153
    z-index:999;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   154
    background-color:#ffffff;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   155
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   156
.topNav {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   157
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   158
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   159
    float:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   160
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   161
    width:100%;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   162
    clear:right;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   163
    height:2.8em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   164
    padding-top:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   165
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   166
    font-size:12px; 
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   167
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   168
.bottomNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   169
    margin-top:10px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   170
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   171
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   172
    float:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   173
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   174
    width:100%;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   175
    clear:right;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   176
    height:2.8em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   177
    padding-top:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   178
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   179
    font-size:12px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   180
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   181
.subNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   182
    background-color:#dee3e9;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   183
    float:left;
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
   184
    width:100%;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   185
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   186
    font-size:12px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   187
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   188
.subNav div {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   189
    clear:left;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   190
    float:left;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   191
    padding:0 0 5px 6px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   192
    text-transform:uppercase;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   193
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   194
ul.navList, ul.subNavList {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   195
    float:left;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   196
    margin:0 25px 0 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   197
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   198
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   199
ul.navList li{
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   200
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   201
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   202
    padding: 5px 6px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   203
    text-transform:uppercase;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   204
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   205
ul.navListSearch {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   206
    float:right;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   207
    margin:0 0 0 0;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   208
    padding:0;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   209
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   210
ul.navListSearch li {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   211
    list-style:none;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   212
    float:right;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   213
    padding: 5px 6px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   214
    text-transform:uppercase;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   215
}
47047
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   216
ul.navListSearch li label {
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   217
    position:relative;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   218
    right:-16px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   219
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   220
ul.subNavList li {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   221
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   222
    float:left;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   223
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   224
.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   225
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   226
    text-decoration:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   227
    text-transform:uppercase;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   228
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   229
.topNav a:hover, .bottomNav a:hover {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   230
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   231
    color:#bb7a2a;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   232
    text-transform:uppercase;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   233
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   234
.navBarCell1Rev {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   235
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   236
    color:#253441;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   237
    margin: auto 5px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   238
}
19909
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   239
.skipNav {
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   240
    position:absolute;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   241
    top:auto;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   242
    left:-9999px;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   243
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   244
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   245
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   246
 * Styles for page header and footer.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   247
 */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   248
.header, .footer {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   249
    clear:both;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   250
    margin:0 20px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   251
    padding:5px 0 0 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   252
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   253
.indexNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   254
    position:relative;
43266
14e6159a2c17 8172753: Improve style of left-side index pages
jjg
parents: 42831
diff changeset
   255
    font-size:12px;
14e6159a2c17 8172753: Improve style of left-side index pages
jjg
parents: 42831
diff changeset
   256
    background-color:#dee3e9;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   257
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   258
.indexNav ul {
43266
14e6159a2c17 8172753: Improve style of left-side index pages
jjg
parents: 42831
diff changeset
   259
    margin-top:0;
14e6159a2c17 8172753: Improve style of left-side index pages
jjg
parents: 42831
diff changeset
   260
    padding:5px;
15723
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 14549
diff changeset
   261
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   262
.indexNav ul li {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   263
    display:inline;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   264
    list-style-type:none;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   265
    padding-right:10px;
43266
14e6159a2c17 8172753: Improve style of left-side index pages
jjg
parents: 42831
diff changeset
   266
    text-transform:uppercase;
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   267
}
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   268
.indexNav h1 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   269
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   270
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   271
.title {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   272
    color:#2c4557;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   273
    margin:10px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   274
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   275
.subTitle {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   276
    margin:5px 0 0 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   277
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   278
.header ul {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   279
    margin:0 0 15px 0;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   280
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   281
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   282
.footer ul {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   283
    margin:20px 0 5px 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   284
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   285
.header ul li, .footer ul li {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   286
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   287
    font-size:13px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   288
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   289
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   290
 * Styles for headings.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   291
 */
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   292
div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   293
    background-color:#dee3e9;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   294
    border:1px solid #d0d9e0;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   295
    margin:0 0 6px -8px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   296
    padding:7px 5px;
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   297
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   298
ul.blockList ul.blockList ul.blockList li.blockList h3 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   299
    background-color:#dee3e9;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   300
    border:1px solid #d0d9e0;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   301
    margin:0 0 6px -8px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   302
    padding:7px 5px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   303
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   304
ul.blockList ul.blockList li.blockList h3 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   305
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   306
    margin:15px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   307
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   308
ul.blockList li.blockList h2 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   309
    padding:0px 0 20px 0;
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   310
}
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   311
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   312
 * Styles for page layout containers.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   313
 */
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   314
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer,
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   315
.allClassesContainer, .allPackagesContainer {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   316
    clear:both;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   317
    padding:10px 20px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   318
    position:relative;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   319
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   320
.indexContainer {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   321
    margin:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   322
    position:relative;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   323
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   324
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   325
.indexContainer h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   326
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   327
    padding:0 0 3px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   328
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   329
.indexContainer ul {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   330
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   331
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   332
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   333
.indexContainer ul li {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   334
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   335
    padding-top:2px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   336
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   337
.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   338
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   339
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   340
    margin:10px 0 0 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   341
    color:#4E4E4E;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   342
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   343
.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   344
    margin:5px 0 10px 0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   345
    font-size:14px;
40505
6ee9b4aa803e 8098537: Incorrect fonts in Java 8 javadocs
jjg
parents: 39670
diff changeset
   346
    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   347
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   348
.serializedFormContainer dl.nameValue dt {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   349
    margin-left:1px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   350
    font-size:1.1em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   351
    display:inline;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   352
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   353
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   354
.serializedFormContainer dl.nameValue dd {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   355
    margin:0 0 0 1px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   356
    font-size:1.1em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   357
    display:inline;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   358
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   359
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   360
 * Styles for lists.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   361
 */
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   362
li.circle {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   363
    list-style:circle;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   364
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   365
ul.horizontal li {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   366
    display:inline;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   367
    font-size:0.9em;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   368
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   369
ul.inheritance {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   370
    margin:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   371
    padding:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   372
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   373
ul.inheritance li {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   374
    display:inline;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   375
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   376
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   377
ul.inheritance li ul.inheritance {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   378
    margin-left:15px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   379
    padding-left:15px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   380
    padding-top:1px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   381
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   382
ul.blockList, ul.blockListLast {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   383
    margin:10px 0 10px 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   384
    padding:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   385
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   386
ul.blockList li.blockList, ul.blockListLast li.blockList {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   387
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   388
    margin-bottom:15px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   389
    line-height:1.4;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   390
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   391
ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   392
    padding:0px 20px 5px 10px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   393
    border:1px solid #ededed; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   394
    background-color:#f8f8f8;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   395
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   396
ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   397
    padding:0 0 5px 8px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   398
    background-color:#ffffff;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   399
    border:none;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   400
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   401
ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   402
    margin-left:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   403
    padding-left:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   404
    padding-bottom:15px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   405
    border:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   406
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   407
ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   408
    list-style:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   409
    border-bottom:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   410
    padding-bottom:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   411
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   412
table tr td dl, table tr td dl dt, table tr td dl dd {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   413
    margin-top:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   414
    margin-bottom:1px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   415
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   416
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   417
 * Styles for tables.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   418
 */
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   419
.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   420
.requiresSummary, .packagesSummary, .providesSummary, .usesSummary {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   421
    width:100%;
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   422
    border-spacing:0;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   423
    border-left:1px solid #EEE; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   424
    border-right:1px solid #EEE; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   425
    border-bottom:1px solid #EEE; 
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   426
}
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   427
.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary  {
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   428
    padding:0px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   429
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   430
.overviewSummary caption, .memberSummary caption, .typeSummary caption,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   431
.useSummary caption, .constantsSummary caption, .deprecatedSummary caption,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   432
.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   433
    position:relative;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   434
    text-align:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   435
    background-repeat:no-repeat;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   436
    color:#253441;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   437
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   438
    clear:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   439
    overflow:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   440
    padding:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   441
    padding-top:10px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   442
    padding-left:1px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   443
    margin:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   444
    white-space:pre;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   445
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   446
.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   447
.constantsSummary caption a:link, .deprecatedSummary caption a:link,
45914
0c6f13526872 8182359: Color contrast Error on <pkg-type>/pkg-use.html pages
pmuthuswamy
parents: 45865
diff changeset
   448
.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   449
.usesSummary caption a:link,
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   450
.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   451
.constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
45914
0c6f13526872 8182359: Color contrast Error on <pkg-type>/pkg-use.html pages
pmuthuswamy
parents: 45865
diff changeset
   452
.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   453
.usesSummary caption a:hover,
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   454
.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   455
.constantsSummary caption a:active, .deprecatedSummary caption a:active,
45914
0c6f13526872 8182359: Color contrast Error on <pkg-type>/pkg-use.html pages
pmuthuswamy
parents: 45865
diff changeset
   456
.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   457
.usesSummary caption a:active,
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   458
.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   459
.constantsSummary caption a:visited, .deprecatedSummary caption a:visited,
45914
0c6f13526872 8182359: Color contrast Error on <pkg-type>/pkg-use.html pages
pmuthuswamy
parents: 45865
diff changeset
   460
.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   461
.usesSummary caption a:visited {
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   462
    color:#FFFFFF;
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   463
}
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   464
.useSummary caption a:link, .useSummary caption a:hover, .useSummary caption a:active,
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   465
.useSummary caption a:visited {
45914
0c6f13526872 8182359: Color contrast Error on <pkg-type>/pkg-use.html pages
pmuthuswamy
parents: 45865
diff changeset
   466
    color:#1f389c;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   467
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   468
.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   469
.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   470
.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   471
.usesSummary caption span {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   472
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   473
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   474
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   475
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   476
    padding-bottom:7px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   477
    display:inline-block;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   478
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   479
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   480
    border: none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   481
    height:16px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   482
}
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   483
.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   484
.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   485
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   486
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   487
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   488
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   489
    margin-right:3px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   490
    display:inline-block;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   491
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   492
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   493
    height:16px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   494
}
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   495
.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   496
.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   497
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   498
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   499
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   500
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   501
    margin-right:3px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   502
    display:inline-block;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   503
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   504
    background-color:#4D7A97;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   505
    height:16px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   506
}
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   507
.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab,
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   508
.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   509
.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab,
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   510
.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   511
    padding-top:0px;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   512
    padding-left:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   513
    padding-right:0px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   514
    background-image:none;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   515
    float:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   516
    display:inline;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   517
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   518
.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   519
.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   520
.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   521
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   522
    width:5px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   523
    position:relative;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   524
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   525
    background-color:#F8981D;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   526
}
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   527
.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   528
.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   529
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   530
    width:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   531
    margin-right:3px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   532
    position:relative; 
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   533
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   534
    background-color:#F8981D;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   535
}
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47300
diff changeset
   536
.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   537
.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   538
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   539
    width:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   540
    margin-right:3px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   541
    position:relative;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   542
    background-color:#4D7A97;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   543
    float:left;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   544
}
41157
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   545
.rowColor th, .altColor th {
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   546
    font-weight:normal;
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   547
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   548
.overviewSummary td, .memberSummary td, .typeSummary td,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   549
.useSummary td, .constantsSummary td, .deprecatedSummary td,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   550
.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   551
    text-align:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   552
    padding:0px 0px 12px 10px;
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
   553
}
47299
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   554
th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th,
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   555
.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td,
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   556
.constantsSummary td {
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   557
    vertical-align:top;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   558
    padding-right:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   559
    padding-top:8px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   560
    padding-bottom:3px;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   561
}
47299
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   562
th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th,
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   563
.packagesSummary th {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   564
    background:#dee3e9;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   565
    text-align:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   566
    padding:8px 3px 3px 7px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   567
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   568
td.colFirst, th.colFirst {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   569
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   570
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   571
}
47299
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   572
td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   573
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   574
}
41157
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   575
.constantsSummary th, .packagesSummary th {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   576
    font-size:13px;
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   577
}
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   578
.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   579
.providesSummary td.colLast {
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   580
    white-space:normal;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   581
    font-size:13px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   582
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   583
.overviewSummary td.colFirst, .overviewSummary th.colFirst,
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   584
.requiresSummary td.colFirst, .requiresSummary th.colFirst,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   585
.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th,
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   586
.usesSummary td.colFirst, .usesSummary th.colFirst,
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   587
.providesSummary td.colFirst, .providesSummary th.colFirst,
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   588
.memberSummary td.colFirst, .memberSummary th.colFirst,
44565
41071e253324 8177417: Constructor Summary readability problems in jdk9 javadoc
bpatel
parents: 44452
diff changeset
   589
.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName,
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   590
.typeSummary td.colFirst, .typeSummary th.colFirst {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   591
    vertical-align:top;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   592
}
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   593
.packagesSummary th.colLast, .packagesSummary td.colLast {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   594
    white-space:normal;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   595
}
44813
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
   596
td.colFirst a:link, td.colFirst a:visited,
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
   597
td.colSecond a:link, td.colSecond a:visited,
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
   598
th.colFirst a:link, th.colFirst a:visited,
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
   599
th.colSecond a:link, th.colSecond a:visited,
eac0b6c86a43 8176452: Javadoc UI style issue with index in description.
bpatel
parents: 44567
diff changeset
   600
th.colConstructorName a:link, th.colConstructorName a:visited,
47299
56419ec66d4e 8169819: minor cleanup for deprecated page
bpatel
parents: 47272
diff changeset
   601
th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, 
50167
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   602
.constantValuesContainer td a:link, .constantValuesContainer td a:visited, 
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   603
.allClassesContainer td a:link, .allClassesContainer td a:visited, 
cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output
bpatel
parents: 47954
diff changeset
   604
.allPackagesContainer td a:link, .allPackagesContainer td a:visited {
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   605
    font-weight:bold;
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   606
}
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   607
.tableSubHeadingColor {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   608
    background-color:#EEEEFF;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   609
}
41157
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   610
.altColor, .altColor th {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   611
    background-color:#FFFFFF;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   612
}
41157
b235a429089a 8162363: Tables in javadoc documentation missing row headers
bpatel
parents: 40505
diff changeset
   613
.rowColor, .rowColor th {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   614
    background-color:#EEEEEF;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   615
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   616
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   617
 * Styles for contents.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   618
 */
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   619
.description pre {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   620
    margin-top:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   621
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   622
.deprecatedContent {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   623
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   624
    padding:10px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   625
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   626
.docSummary {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   627
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   628
}
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   629
ul.blockList ul.blockList ul.blockList li.blockList h3 {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   630
    font-style:normal;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   631
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   632
div.block {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   633
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   634
    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   635
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   636
td.colLast div {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   637
    padding-top:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   638
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   639
td.colLast a {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   640
    padding-bottom:3px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   641
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   642
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   643
 * Styles for formatting effect.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   644
 */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   645
.sourceLineNo {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   646
    color:green;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   647
    padding:0 30px 0 0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   648
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   649
h1.hidden {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   650
    visibility:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   651
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   652
    font-size:10px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   653
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   654
.block {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   655
    display:block;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   656
    margin:3px 10px 2px 0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   657
    color:#474747;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   658
}
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 36526
diff changeset
   659
.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink,
44196
f88c0e9cb102 8174974: Annotation type pages generated by javadoc is missing module information
bpatel
parents: 43870
diff changeset
   660
.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36277
diff changeset
   661
.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36277
diff changeset
   662
.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   663
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   664
}
21478
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 20613
diff changeset
   665
.deprecationComment, .emphasizedPhrase, .interfaceName {
19253
b97b3e18547f 7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents: 18650
diff changeset
   666
    font-style:italic;
b97b3e18547f 7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents: 18650
diff changeset
   667
}
47272
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   668
.deprecationBlock {
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   669
    font-size:14px;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   670
    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   671
    border-style:solid;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   672
    border-width:thin;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   673
    border-radius:10px;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   674
    padding:10px;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   675
    margin-bottom:10px;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   676
    margin-right:10px;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   677
    display:inline-block;
e0d686cdf608 8183511: improve style for deprecated text
bpatel
parents: 47216
diff changeset
   678
}
47300
a905ce398074 8074407: javadoc: using <pre> after @deprecated tag causes warnings
bpatel
parents: 47299
diff changeset
   679
div.block div.deprecationComment, div.block div.block span.emphasizedPhrase,
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   680
div.block div.block span.interfaceName {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   681
    font-style:normal;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   682
}
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   683
div.contentContainer ul.blockList li.blockList h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   684
    padding-bottom:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   685
}
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   686
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   687
 * Styles for IFRAME.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   688
 */
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   689
.mainContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   690
    margin:0 auto; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   691
    padding:0; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   692
    height:100%; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   693
    width:100%; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   694
    position:fixed; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   695
    top:0; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   696
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   697
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   698
.leftContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   699
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   700
    position:fixed;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   701
    width:320px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   702
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   703
.leftTop {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   704
    position:relative;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   705
    float:left;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   706
    width:315px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   707
    top:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   708
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   709
    height:30%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   710
    border-right:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   711
    border-bottom:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   712
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   713
.leftBottom {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   714
    position:relative;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   715
    float:left;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   716
    width:315px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   717
    bottom:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   718
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   719
    height:70%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   720
    border-right:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   721
    border-top:1px solid #000;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   722
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   723
.rightContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   724
    position:absolute;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   725
    left:320px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   726
    top:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   727
    bottom:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   728
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   729
    right:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   730
    border-left:1px solid #000;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   731
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   732
.rightIframe {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   733
    margin:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   734
    padding:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   735
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   736
    right:30px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   737
    width:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   738
    overflow:visible;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   739
    margin-bottom:30px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   740
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   741
/*
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   742
 * Styles specific to HTML5 elements.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   743
 */
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   744
main, nav, header, footer, section {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   745
    display:block;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   746
}
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   747
/*
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   748
 * Styles for javadoc search.
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   749
 */
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   750
.ui-autocomplete-category {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   751
    font-weight:bold;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   752
    font-size:15px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   753
    padding:7px 0 7px 3px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   754
    background-color:#4D7A97;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   755
    color:#FFFFFF;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   756
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   757
.resultItem {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   758
    font-size:13px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   759
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   760
.ui-autocomplete {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   761
    max-height:85%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   762
    max-width:65%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   763
    overflow-y:scroll;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   764
    overflow-x:scroll;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   765
    white-space:nowrap;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   766
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   767
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   768
ul.ui-autocomplete {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   769
    position:fixed;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   770
    z-index:999999;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   771
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   772
ul.ui-autocomplete  li {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   773
    float:left;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   774
    clear:both;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   775
    width:100%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   776
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   777
.resultHighlight {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   778
    font-weight:bold;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   779
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   780
#search {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   781
    background-image:url('resources/glass.png');
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   782
    background-size:13px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   783
    background-repeat:no-repeat;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   784
    background-position:2px 3px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   785
    padding-left:20px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   786
    position:relative;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   787
    right:-18px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   788
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   789
#reset {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   790
    background-color: rgb(255,255,255);
47047
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   791
    background-image:url('resources/x.png');
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   792
    background-position:center;
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   793
    background-repeat:no-repeat;
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   794
    background-size:12px;
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   795
    border:0 none;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   796
    width:16px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   797
    height:17px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   798
    position:relative;
47047
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   799
    left:-4px;
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   800
    top:-4px;
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   801
    font-size:0px;
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   802
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   803
.watermark {
47047
91082c3c1d05 8182263: Search box and reset button needs to be a11y fixed.
bpatel
parents: 46925
diff changeset
   804
    color:#545454;
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   805
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   806
.searchTagDescResult {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   807
    font-style:italic;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   808
    font-size:11px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   809
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   810
.searchTagHolderResult {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   811
    font-style:italic;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   812
    font-size:12px;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 41157
diff changeset
   813
}
47954
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   814
.searchTagResult:before, .searchTagResult:target {
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   815
    color:red;
3148be499e41 8185369: Clean up the javadoc stylesheet
bpatel
parents: 47447
diff changeset
   816
}
44452
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   817
.moduleGraph span {
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   818
    display:none;
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   819
    position:absolute;
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   820
}
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   821
.moduleGraph:hover span {
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   822
    display:block;
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   823
    margin: -100px 0 0 100px;
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   824
    z-index: 1;
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   825
}
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   826
45153
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   827
/*
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   828
 * Styles for user-provided tables.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   829
 *
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   830
 * borderless:
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   831
 *      No borders, vertical margins, styled caption.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   832
 *      This style is provided for use with existing doc comments.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   833
 *      In general, borderless tables should not be used for layout purposes.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   834
 *
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   835
 * plain:
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   836
 *      Plain borders around table and cells, vertical margins, styled caption.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   837
 *      Best for small tables or for complex tables for tables with cells that span
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   838
 *      rows and columns, when the "striped" style does not work well.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   839
 *
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   840
 * striped:
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   841
 *      Borders around the table and vertical borders between cells, striped rows,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   842
 *      vertical margins, styled caption.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   843
 *      Best for tables that have a header row, and a body containing a series of simple rows.
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   844
 */
44452
93f6470b1045 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 44196
diff changeset
   845
45153
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   846
table.borderless,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   847
table.plain,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   848
table.striped {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   849
    margin-top: 10px;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   850
    margin-bottom: 10px;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   851
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   852
table.borderless > caption,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   853
table.plain > caption,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   854
table.striped > caption {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   855
    font-weight: bold;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   856
    font-size: smaller;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   857
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   858
table.borderless th, table.borderless td,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   859
table.plain th, table.plain td,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   860
table.striped th, table.striped td {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   861
    padding: 2px 5px;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   862
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   863
table.borderless,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   864
table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   865
table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   866
    border: none;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   867
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   868
table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   869
    background-color: transparent;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   870
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   871
table.plain {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   872
    border-collapse: collapse;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   873
    border: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   874
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   875
table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   876
    background-color: transparent;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   877
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   878
table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   879
table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   880
    border: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   881
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   882
table.striped {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   883
    border-collapse: collapse;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   884
    border: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   885
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   886
table.striped > thead {
50420
912c5c042c19 8199893: the javadoc tool generates pages with a low constrast
pmuthuswamy
parents: 50167
diff changeset
   887
    background-color: #E3E3E3;
46925
c538fe357ff9 8186460: Fix stylesheet to better display multi-row headers in "striped" tables.
jjg
parents: 45914
diff changeset
   888
}
c538fe357ff9 8186460: Fix stylesheet to better display multi-row headers in "striped" tables.
jjg
parents: 45914
diff changeset
   889
table.striped > thead > tr > th, table.striped > thead > tr > td {
45153
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   890
    border: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   891
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   892
table.striped > tbody > tr:nth-child(even) {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   893
    background-color: #EEE
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   894
}
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   895
table.striped > tbody > tr:nth-child(odd) {
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   896
    background-color: #FFF
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   897
}
46925
c538fe357ff9 8186460: Fix stylesheet to better display multi-row headers in "striped" tables.
jjg
parents: 45914
diff changeset
   898
table.striped > tbody > tr > th, table.striped > tbody > tr > td {
45153
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   899
    border-left: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   900
    border-right: 1px solid black;
9e27e6ed9c7d 8179479: Add new styles to enable HTML 5 tables
jjg
parents: 44813
diff changeset
   901
}
45865
6f34db8be1bc 8183897: Update the "striped" style in the javadoc style sheet
jjg
parents: 45497
diff changeset
   902
table.striped > tbody > tr > th {
6f34db8be1bc 8183897: Update the "striped" style in the javadoc style sheet
jjg
parents: 45497
diff changeset
   903
    font-weight: normal;
6f34db8be1bc 8183897: Update the "striped" style in the javadoc style sheet
jjg
parents: 45497
diff changeset
   904
}