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
|
/*******************************************************************************
* Copyright (c) 2000, 2011 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 {
<%=prefs.getViewBackgroundStyle()%>
color: WindowText;
font: <%=prefs.getViewFont()%>;
font-size: .875rem;
padding: 0px;
border: 0px;
margin-top: 5px;
margin-bottom: 8px;
margin-left: 5px;
margin-right: 5px;
cursor: default;
}
table {
font: <%=prefs.getViewFont()%>;
font-size: .875rem;
width: 100%;
table-layout: fixed;
}
a {
text-decoration:none;
padding:0px;
}
a:hover {
text-decoration:underline;
}
.category {
font-weight: bold;
margin-top: 5px;
margin-bottom: 5px;
}
.sectiontitle {
background-color: <%=prefs.getToolbarBackground()%>;
font-weight:bold;
margin-top:7px;
}
.results .active {
background:Highlight;
color:HighlightText;
width:100%;
height:100%;
}
.showall {
text-decoration:underline;
color:#0066FF;
cursor:pointer;
}
#menu {
position:absolute;
display:none;
background:<%=prefs.getToolbarBackground()%>;
border:2px outset;
padding:2px 0px;
}
.selectedMenuItem {
background:Highlight;
color:HighlightText;
padding-left:10px;
padding-right:10px;
}
.unselectedMenuItem {
background:<%=prefs.getToolbarBackground()%>;
color:WindowText;
padding-left:10px;
padding-right:10px;
}
.icon {
width: 23px;
padding-<%=isRTL?"right":"left"%>: <%=data.isShowCategories() ? 3 : 0%>px;
}
.description {
display: <%=data.isShowDescriptions() ? "block" : "none"%>;
}
.location {
display: <%=data.isShowLocations() ? "block" : "none"%>;
font-size:80%;
overflow:visible;
white-space:nowrap;
}
.location, .location a {
color:#006633;
}
.active .location, .active .location a {
color:HighlightText;
}
<%@ include file="darkTheme.css"%>
|