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