1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
/*******************************************************************************
* Copyright (c) 2005, 2010 Intel Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Intel Corporation - initial API and implementation
* IBM Corporation 2006, refactored index view into a single frame
* IBM Corporation 2009, added style for .see
* IBM Corporation 2010, Added see all link
*******************************************************************************/
BODY {
<%=prefs.getViewBackgroundStyle()%>
font:<%=prefs.getViewFont()%>;
font-size:.875rem;
margin-top:5px;
margin-<%=isRTL?"right":"left"%>:5px;
padding:0px;
border:0px;
cursor:default;
overflow:hidden;
}
TABLE, TR, TD, P {
margin:0px;
padding:0px;
border:0px;
}
TABLE {
font:<%=prefs.getViewFont()%>;
font-size:.875rem;
width:100%;
}
TR {
height:21px;
}
INPUT {
font:<%=prefs.getViewFont()%>;
font-size:.875rem;
margin:0;
padding:0;
border:1px solid ThreeDShadow;
}
INPUT {
font-size:1.0em;
}
#instruction {
white-space:nowrap;
}
#indexList {
overflow:auto;
width: 100%;
height: 100px;
}
#typein {
width:100%;
}
#typeinTable {
width:100%;
height: 4em;
}
#button {
background:ThreeDShadow;
color:Window;
font-size: 1.0em;
font-weight:bold;
margin-left:1px;
}
<%
if (requestData.isIE()) {
%>
#go {
padding-<%=isRTL?"right":"left"%>:1px;
}
<%
}
%>
#root {
margin-top:0px;
margin-<%=isRTL?"right":"left"%>:5px;
}
#innerNavigation {
margin-top:0px;
padding-bottom: 5px;
font-weight:bold;
width:100%;
}
#navigation {
width:100%;
}
#td_previous {
text-align:<%=isRTL?"right":"left"%>;
width:50%;
}
#td_next {
text-align:<%=isRTL?"left":"right"%>;
width:50%;
}
DIV.root {
font-weight:normal;
}
DIV.visible, DIV.unopened {
border-width:0;
margin-<%=isRTL?"right":"left"%>:1.5em;
font-weight:normal;
}
DIV.hidden {
display:none;
}
DIV.visible, DIV.root {
margin-top:1px;
}
DIV.group {
border-width:0;
margin-<%=isRTL?"right":"left"%>:0;
}
SPAN.item{
white-space: nowrap;
}
IMG {
border:0px;
margin:0px;
padding:0px;
margin-<%=isRTL?"left":"right"%>:4px;
}
IMG.expander, IMG.h {
margin-top:4px;
margin-bottom:2px;
}
A {
text-decoration:none;
padding-<%=isRTL?"left":"right"%>:2px;
color:WindowText;
/* this works in ie5.5, but not in ie5.0 */
white-space: nowrap;
}
A:hover{
text-decoration:underline;
}
A.active{
color:HighlightText;
background:Highlight;
width:100%;
}
A.active:hover{
text-decoration:underline;
}
A.see {
font-style : italic;
color : #0000FF;
}
<%
if (requestData.isSafari()){
%>
A.nolink {
color:#808080;
}
<%
} else {
%>
A.nolink {
color:GrayText;
}
<%
}
%>
A.nolink {
text-decoration:none;
font-weight:bold;
}
A.nolink:hover {
text-decoration:none;
}
.h {
visibility:hidden;
}
.showall {
text-decoration:underline;
color:#0066FF;
cursor:pointer;
}
<%@ include file="darkTheme.css"%>
|