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
|
/*******************************************************************************
* Copyright (c) 2006 IBM 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
BODY {
font: <%=prefs.getViewFont()%>;
font-size: .875rem;
margin-top:2px;
margin-<%=isRTL?"right":"left"%>:5px;
padding:0;
border:0;
<%=prefs.getViewBackgroundStyle()%>
}
#root {
margin-top:0px;
margin-<%=isRTL?"right":"left"%>:0px;
}
DIV.root {
font-weight:bold;
}
DIV.visible, DIV.unopened {
border-width:0;
margin-<%=isRTL?"right":"left"%>:1.5em;
font-weight:normal;
}
DIV.group {
border-width:0;
margin-<%=isRTL?"right":"left"%>:0;
}
DIV.hidden {
display:none;
}
DIV.visible, DIV.root {
margin-top:1px;
}
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;
color:WindowText;
padding-<%=isRTL?"left":"right"%>:2px;
/* this works in ie5.5, but not in ie5.0 */
white-space: nowrap;
}
.showall {
text-decoration:underline;
color:#0066FF;
cursor:pointer;
}
A:hover{
text-decoration:underline;
}
A.active{
color:HighlightText;
background:Highlight;
width:100%;
}
A.active:hover{
text-decoration:underline;
}
A.nolink {
text-decoration:none;
}
A.nolink:link, A.nolink:visited {
color:WindowText;
}
A.nolink:hover {
text-decoration:none;
}
.h {
visibility:hidden;
}
<%@ include file="darkTheme.css"%>
|