langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css
author bpatel
Fri, 20 Nov 2015 20:55:07 +0000
changeset 33920 bd731341c405
parent 29957 7740f9657f56
child 36526 3b41f1c69604
permissions -rw-r--r--
8141492: Implement search feature in javadoc Reviewed-by: jjg, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
     1
/* Javadoc style sheet */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
     2
/*
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
     3
Overall document style
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
     4
*/
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     5
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     6
@import url('resources/fonts/dejavu.css');
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
     7
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
     8
body {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
     9
    background-color:#ffffff;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    10
    color:#353833;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    11
    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    12
    font-size:14px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    13
    margin:0;
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    14
    padding:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    15
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    16
    width:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    17
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    18
iframe {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    19
    margin:0;
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
    overflow-y:scroll;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
    24
    border:none;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    25
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    26
a:link, a:visited {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    27
    text-decoration:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    28
    color:#4A6782;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    29
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    30
a:hover, a:focus {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    31
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    32
    color:#bb7a2a;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    33
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    34
a:active {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    35
    text-decoration:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    36
    color:#4A6782;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    37
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    38
a[name] {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    39
    color:#353833;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    40
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    41
a[name]:hover {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    42
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    43
    color:#353833;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    44
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    45
a[name]:before, a[name]:target {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    46
    content:"";
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    47
    display:block;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    48
    height:120px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    49
    margin:-120px 0 0;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    50
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    51
a[id]:before, a[id]:target {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    52
    padding-top:129px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    53
    margin-top:-129px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    54
    color:red;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
    55
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    56
pre {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    57
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    58
    font-size:14px;
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
h1 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    61
    font-size:20px;
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
h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    64
    font-size:18px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    65
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    66
h3 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    67
    font-size:16px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    68
    font-style:italic;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    69
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    70
h4 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    71
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    72
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    73
h5 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    74
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    75
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    76
h6 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    77
    font-size:11px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    78
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    79
ul {
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
    80
    list-style-type:disc;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
    81
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    82
code, tt {
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;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    86
    margin-top:8px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    87
    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
    88
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    89
dt code {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    90
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    91
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    92
    padding-top:4px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    93
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    94
table tr td dt code {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    95
    font-family:'DejaVu Sans Mono', monospace;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    96
    font-size:14px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    97
    vertical-align:top;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
    98
    padding-top:4px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
    99
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   100
sup {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   101
    font-size:8px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   102
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   103
/*
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   104
Document title and Copyright styles
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   105
*/
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   106
.clear {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   107
    clear:both;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   108
    height:0px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   109
    overflow:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   110
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   111
.aboutLanguage {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   112
    float:right;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   113
    padding:0px 21px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   114
    font-size:11px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   115
    z-index:200;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   116
    margin-top:-9px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   117
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   118
.legalCopy {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   119
    margin-left:.5em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   120
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   121
.bar a, .bar a:link, .bar a:visited, .bar a:active {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   122
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   123
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   124
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   125
.bar a:hover, .bar a:focus {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   126
    color:#bb7a2a;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   127
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   128
.tab {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   129
    background-color:#0066FF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   130
    color:#ffffff;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   131
    padding:8px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   132
    width:5em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   133
    font-weight:bold;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   134
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   135
/*
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   136
Navigation bar styles
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   137
*/
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   138
.bar {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   139
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   140
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   141
    padding:.8em .5em .4em .8em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   142
    height:auto;/*height:1.8em;*/
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   143
    font-size:11px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   144
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   145
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   146
.fixedNav {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   147
    position:fixed;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   148
    width:100%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   149
    z-index:999;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   150
    background-color:#ffffff;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   151
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   152
.topNav {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   153
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   154
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   155
    float:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   156
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   157
    width:100%;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   158
    clear:right;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   159
    height:2.8em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   160
    padding-top:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   161
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   162
    font-size:12px; 
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   163
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   164
.bottomNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   165
    margin-top:10px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   166
    background-color:#4D7A97;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   167
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   168
    float:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   169
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   170
    width:100%;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   171
    clear:right;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   172
    height:2.8em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   173
    padding-top:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   174
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   175
    font-size:12px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   176
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   177
.subNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   178
    background-color:#dee3e9;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   179
    float:left;
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
   180
    width:100%;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   181
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   182
    font-size:12px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   183
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   184
.subNav div {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   185
    clear:left;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   186
    float:left;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   187
    padding:0 0 5px 6px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   188
    text-transform:uppercase;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   189
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   190
ul.navList, ul.subNavList {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   191
    float:left;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   192
    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
   193
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   194
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   195
ul.navList li{
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   196
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   197
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   198
    padding: 5px 6px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   199
    text-transform:uppercase;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   200
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   201
ul.navListSearch {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   202
    float:right;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   203
    margin:0 0 0 0;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   204
    padding:0;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   205
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   206
ul.navListSearch li {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   207
    list-style:none;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   208
    float:right;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   209
    padding: 5px 6px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   210
    text-transform:uppercase;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   211
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   212
ul.navListSearch li span {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   213
    position:relative;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   214
    right:-16px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   215
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   216
ul.subNavList li {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   217
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   218
    float:left;
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
.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
   221
    color:#FFFFFF;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   222
    text-decoration:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   223
    text-transform:uppercase;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   224
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   225
.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
   226
    text-decoration:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   227
    color:#bb7a2a;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   228
    text-transform:uppercase;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   229
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   230
.navBarCell1Rev {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   231
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   232
    color:#253441;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   233
    margin: auto 5px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   234
}
19909
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   235
.skipNav {
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   236
    position:absolute;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   237
    top:auto;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   238
    left:-9999px;
784c68032a36 7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
bpatel
parents: 19254
diff changeset
   239
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   240
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   241
/*
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   242
Page header and footer styles
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   243
*/
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   244
.header, .footer {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   245
    clear:both;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   246
    margin:0 20px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   247
    padding:5px 0 0 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   248
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   249
.indexNav {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   250
    margin:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   251
    position:relative;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   252
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   253
.indexNav ul {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   254
    padding:0;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   255
    margin:0;
15723
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 14549
diff changeset
   256
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   257
.indexNav ul li {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   258
    display:inline;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   259
    list-style-type:none;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   260
    padding-right:10px;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   261
}
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   262
.indexNav h1 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   263
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   264
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   265
.title {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   266
    color:#2c4557;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   267
    margin:10px 0;
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   268
    padding-top:5.4em;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   269
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   270
.subTitle {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   271
    margin:5px 0 0 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   272
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   273
.header ul {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   274
    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
   275
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   276
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   277
.footer ul {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   278
    margin:20px 0 5px 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   279
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   280
.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
   281
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   282
    font-size:13px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   283
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   284
/*
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   285
Heading styles
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   286
*/
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   287
div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   288
    background-color:#dee3e9;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   289
    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
   290
    margin:0 0 6px -8px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   291
    padding:7px 5px;
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   292
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   293
ul.blockList ul.blockList ul.blockList li.blockList h3 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   294
    background-color:#dee3e9;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   295
    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
   296
    margin:0 0 6px -8px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   297
    padding:7px 5px;
9894
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
ul.blockList ul.blockList li.blockList h3 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   300
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   301
    margin:15px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   302
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   303
ul.blockList li.blockList h2 {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   304
    padding:0px 0 20px 0;
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   305
}
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9597
diff changeset
   306
/*
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   307
Page layout container styles
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   308
*/
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   309
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   310
    clear:both;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   311
    padding:10px 20px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   312
    position:relative;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   313
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   314
.indexContainer {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   315
    margin:10px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   316
    position:relative;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   317
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   318
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   319
.indexContainer h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   320
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   321
    padding:0 0 3px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   322
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   323
.indexContainer ul {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   324
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   325
    padding:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   326
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   327
.indexContainer ul li {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   328
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   329
    padding-top:2px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   330
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   331
.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
   332
    font-size:12px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   333
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   334
    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
   335
    color:#4E4E4E;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   336
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   337
.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   338
    margin:5px 0 10px 0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   339
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   340
    font-family:'DejaVu Sans Mono',monospace;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   341
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   342
.serializedFormContainer dl.nameValue dt {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   343
    margin-left:1px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   344
    font-size:1.1em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   345
    display:inline;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   346
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   347
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   348
.serializedFormContainer dl.nameValue dd {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   349
    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
   350
    font-size:1.1em;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   351
    display:inline;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   352
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   353
/*
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   354
List styles
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   355
*/
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   356
li.circle {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   357
    list-style:circle;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   358
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   359
ul.horizontal li {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   360
    display:inline;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   361
    font-size:0.9em;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   362
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   363
ul.inheritance {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   364
    margin:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   365
    padding:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   366
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   367
ul.inheritance li {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   368
    display:inline;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   369
    list-style:none;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   370
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   371
ul.inheritance li ul.inheritance {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   372
    margin-left:15px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   373
    padding-left:15px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   374
    padding-top:1px;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   375
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   376
ul.blockList, ul.blockListLast {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   377
    margin:10px 0 10px 0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   378
    padding:0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   379
}
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   380
ul.blockList li.blockList, ul.blockListLast li.blockList {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   381
    list-style:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   382
    margin-bottom:15px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   383
    line-height:1.4;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   384
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   385
ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   386
    padding:0px 20px 5px 10px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   387
    border:1px solid #ededed; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   388
    background-color:#f8f8f8;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   389
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   390
ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   391
    padding:0 0 5px 8px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   392
    background-color:#ffffff;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   393
    border:none;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   394
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   395
ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   396
    margin-left:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   397
    padding-left:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   398
    padding-bottom:15px;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   399
    border:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   400
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   401
ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   402
    list-style:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   403
    border-bottom:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   404
    padding-bottom:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   405
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   406
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
   407
    margin-top:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   408
    margin-bottom:1px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   409
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   410
/*
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   411
Table styles
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   412
*/
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   413
.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   414
    width:100%;
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   415
    border-spacing:0;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   416
    border-left:1px solid #EEE; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   417
    border-right:1px solid #EEE; 
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   418
    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
   419
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   420
.overviewSummary, .memberSummary  {
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   421
    padding:0px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   422
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   423
.overviewSummary caption, .memberSummary caption, .typeSummary caption,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   424
.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   425
    position:relative;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   426
    text-align:left;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   427
    background-repeat:no-repeat;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   428
    color:#253441;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   429
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   430
    clear:none;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   431
    overflow:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   432
    padding:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   433
    padding-top:10px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   434
    padding-left:1px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   435
    margin:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   436
    white-space:pre;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   437
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   438
.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   439
.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   440
.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   441
.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   442
.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   443
.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   444
.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   445
.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   446
    color:#FFFFFF;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   447
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   448
.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   449
.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   450
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   451
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   452
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   453
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   454
    padding-bottom:7px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   455
    display:inline-block;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   456
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   457
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   458
    border: none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   459
    height:16px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   460
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   461
.memberSummary caption span.activeTableTab span {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   462
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   463
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   464
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   465
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   466
    margin-right:3px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   467
    display:inline-block;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   468
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   469
    background-color:#F8981D;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   470
    height:16px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   471
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   472
.memberSummary caption span.tableTab span {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   473
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   474
    padding-top:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   475
    padding-left:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   476
    padding-right:12px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   477
    margin-right:3px;
19922
52810e1bbb4f 8023608: method grouping tabs folding issue
bpatel
parents: 19909
diff changeset
   478
    display:inline-block;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   479
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   480
    background-color:#4D7A97;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   481
    height:16px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   482
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   483
.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   484
    padding-top:0px;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   485
    padding-left:0px;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   486
    padding-right:0px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   487
    background-image:none;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   488
    float:none;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   489
    display:inline;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   490
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   491
.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   492
.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   493
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   494
    width:5px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   495
    position:relative;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   496
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   497
    background-color:#F8981D;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   498
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   499
.memberSummary .activeTableTab .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   500
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   501
    width:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   502
    margin-right:3px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   503
    position:relative; 
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   504
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   505
    background-color:#F8981D;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   506
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   507
.memberSummary .tableTab .tabEnd {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   508
    display:none;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   509
    width:5px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   510
    margin-right:3px;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   511
    position:relative;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   512
    background-color:#4D7A97;
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   513
    float:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   514
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 9894
diff changeset
   515
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   516
.overviewSummary td, .memberSummary td, .typeSummary td,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   517
.useSummary td, .constantsSummary td, .deprecatedSummary td {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   518
    text-align:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   519
    padding:0px 0px 12px 10px;
9597
d9c8a0010a9a 7028815: Missing styles for some bulleted items in the new stylesheet
bpatel
parents: 9068
diff changeset
   520
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   521
th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   522
td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   523
    vertical-align:top;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   524
    padding-right:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   525
    padding-top:8px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   526
    padding-bottom:3px;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   527
}
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   528
th.colFirst, th.colLast, th.colOne, .constantsSummary th {
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   529
    background:#dee3e9;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   530
    text-align:left;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   531
    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
   532
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   533
td.colFirst, th.colFirst {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   534
    white-space:nowrap;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   535
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   536
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   537
td.colLast, th.colLast {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   538
    font-size:13px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   539
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   540
td.colOne, th.colOne {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   541
    font-size:13px;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   542
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   543
.overviewSummary td.colFirst, .overviewSummary th.colFirst,
29428
f720ab1e8427 8072461: Table's field width in "Use" page generated by javadoc with '-s' is unbalanced
bpatel
parents: 25874
diff changeset
   544
.useSummary td.colFirst, .useSummary th.colFirst,
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   545
.overviewSummary td.colOne, .overviewSummary th.colOne,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   546
.memberSummary td.colFirst, .memberSummary th.colFirst,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   547
.memberSummary td.colOne, .memberSummary th.colOne,
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   548
.typeSummary td.colFirst{
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   549
    width:25%;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   550
    vertical-align:top;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   551
}
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   552
td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   553
    font-weight:bold;
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   554
}
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   555
.tableSubHeadingColor {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   556
    background-color:#EEEEFF;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   557
}
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   558
.altColor {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   559
    background-color:#FFFFFF;
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   560
}
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 19922
diff changeset
   561
.rowColor {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   562
    background-color:#EEEEEF;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   563
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   564
/*
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   565
Content styles
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   566
*/
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   567
.description pre {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   568
    margin-top:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   569
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   570
.deprecatedContent {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   571
    margin:0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   572
    padding:10px 0;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   573
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   574
.docSummary {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   575
    padding:0;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   576
}
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   577
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   578
ul.blockList ul.blockList ul.blockList li.blockList h3 {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   579
    font-style:normal;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   580
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   581
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   582
div.block {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   583
    font-size:14px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   584
    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   585
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   586
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   587
td.colLast div {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   588
    padding-top:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   589
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   590
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   591
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   592
td.colLast a {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   593
    padding-bottom:3px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   594
}
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   595
/*
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   596
Formatting effect styles
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   597
*/
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   598
.sourceLineNo {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   599
    color:green;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   600
    padding:0 30px 0 0;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
diff changeset
   601
}
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   602
h1.hidden {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   603
    visibility:hidden;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   604
    overflow:hidden;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   605
    font-size:10px;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   606
}
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   607
.block {
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   608
    display:block;
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   609
    margin:3px 10px 2px 0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   610
    color:#474747;
9894
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   611
}
21478
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 20613
diff changeset
   612
.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 20613
diff changeset
   613
.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   614
.seeLabel, .simpleTagLabel, .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
   615
    font-weight:bold;
a0ec54adb051 7052425: Change the look and feel of the javadoc generate HTML pages using stylesheet
bpatel
parents: 9606
diff changeset
   616
}
21478
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 20613
diff changeset
   617
.deprecationComment, .emphasizedPhrase, .interfaceName {
19253
b97b3e18547f 7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents: 18650
diff changeset
   618
    font-style:italic;
b97b3e18547f 7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents: 18650
diff changeset
   619
}
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   620
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   621
div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   622
div.block div.block span.interfaceName {
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   623
    font-style:normal;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   624
}
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   625
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   626
div.contentContainer ul.blockList li.blockList h2 {
22447
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   627
    padding-bottom:0px;
364fe5d83775 8016549: jdk7 javadocs are hard to read
bpatel
parents: 21478
diff changeset
   628
}
29429
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   629
/*
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   630
IFRAME specific styles
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   631
*/
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   632
.mainContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   633
    margin:0 auto; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   634
    padding:0; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   635
    height:100%; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   636
    width:100%; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   637
    position:fixed; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   638
    top:0; 
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   639
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   640
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   641
.leftContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   642
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   643
    position:fixed;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   644
    width:320px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   645
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   646
.leftTop {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   647
    position:relative;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   648
    float:left;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   649
    width:315px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   650
    top:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   651
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   652
    height:30%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   653
    border-right:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   654
    border-bottom:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   655
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   656
.leftBottom {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   657
    position:relative;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   658
    float:left;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   659
    width:315px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   660
    bottom:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   661
    left:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   662
    height:70%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   663
    border-right:6px solid #ccc;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   664
    border-top:1px solid #000;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   665
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   666
.rightContainer {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   667
    position:absolute;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   668
    left:320px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   669
    top:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   670
    bottom:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   671
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   672
    right:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   673
    border-left:1px solid #000;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   674
}
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   675
.rightIframe {
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   676
    margin:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   677
    padding:0;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   678
    height:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   679
    right:30px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   680
    width:100%;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   681
    overflow:visible;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   682
    margin-bottom:30px;
964498d4dcec 8074521: Generate iframe instead of frame and frameset for index.html page
bpatel
parents: 29428
diff changeset
   683
}
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   684
/*
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   685
HTML5 specific styles
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   686
*/
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   687
main, nav, header, footer, section {
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   688
    display:block;
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 29429
diff changeset
   689
}
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   690
.ui-autocomplete-category {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   691
    font-weight:bold;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   692
    font-size:15px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   693
    padding:7px 0 7px 3px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   694
    background-color:#4D7A97;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   695
    color:#FFFFFF;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   696
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   697
.resultItem {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   698
    font-size:13px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   699
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   700
.ui-autocomplete {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   701
    max-height:85%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   702
    max-width:65%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   703
    overflow-y:scroll;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   704
    overflow-x:scroll;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   705
    white-space:nowrap;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   706
    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
   707
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   708
ul.ui-autocomplete {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   709
    position:fixed;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   710
    z-index:999999;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   711
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   712
ul.ui-autocomplete  li {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   713
    float:left;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   714
    clear:both;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   715
    width:100%;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   716
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   717
.resultHighlight {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   718
    font-weight:bold;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   719
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   720
#search {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   721
    background-image:url('resources/glass.png');
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   722
    background-size:13px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   723
    background-repeat:no-repeat;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   724
    background-position:2px 3px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   725
    padding-left:20px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   726
    position:relative;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   727
    right:-18px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   728
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   729
#reset {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   730
    background-color: rgb(255,255,255);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   731
    border:0 none;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   732
    width:16px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   733
    height:17px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   734
    position:relative;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   735
    left:-2px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   736
    background-image:url('resources/x.png');
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   737
    background-repeat:no-repeat;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   738
    background-size:12px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   739
    background-position:center;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   740
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   741
.watermark {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   742
    color:#888;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   743
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   744
.searchTagDescResult {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   745
    font-style:italic;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   746
    font-size:11px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   747
}
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   748
.searchTagHolderResult {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   749
    font-style:italic;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   750
    font-size:12px;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 29957
diff changeset
   751
}