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