Skip to main content
summaryrefslogtreecommitdiffstats
blob: 330b1d2f3c433b96517b6a46294ead54f510f067 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2000, 2004 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 {
	color:WindowText;
	font: <%=prefs.getViewFont()%>;
	margin-top:5px;
	margin-<%=isRTL?"right":"left"%>:5px;
	padding:0;
	border:0;
	cursor:default;
}

A {
	text-decoration:none; 
	color:WindowText; 
	padding:0px;
	white-space: nowrap;
}

A:hover {
	text-decoration:underline; 
}

IMG {
	border:0px;
	margin:0px;
	padding:0px;
	margin-<%=isRTL?"left":"right"%>:4px;
}

TABLE {
	font: <%=prefs.getViewFont()%>;
	width:100%;
}

.list {
	padding:2px;
}

.sectiontitle {
	background-color: <%=prefs.getToolbarBackground()%>;
	font-weight:bold;
	margin-top:7px;
}
     
.active { 
	background:Highlight;
	color:HighlightText;
	width:100%;
	height:100%;
}

.label {
	margin-<%=isRTL?"right":"left"%>:4px;
}

#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;
}

.score {
	padding-<%=isRTL?"left":"right"%>:5px;
}

 

Back to the top