Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bd83a941507c69e87b979795334912906414e728 (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
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
/*******************************************************************************
 * Copyright (c) 2006, 2007 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
 *******************************************************************************/

/* 
 * This file contains styles that are shared between multiple themes.
 */

/* Folding section settings. */

/* The foldable part of the section. It is off by default. */
.section-body {
	display: none;
}

/* The label part of the folding section */
.section-title-link .section-title {
	display : inline;
}

.section-title-link .section-title,
.section-title-link:focus .section-title {
	color: #00517d;
}

.section-title-link {
	vertical-align: bottom;
}

/* The 'open' toggle image part of the folding section. */
#page-content .section-title-link .section-toggle-image-open {
	display: none;
	clear: right;
	width : 7px;
	height : 7px;
	background-image : url(../graphics/icons/ctool/widget_open.gif);
}

/* The 'closed' toggle image part of the folding section. */
#page-content .section-title-link .section-toggle-image-closed {
	display: inline;
	clear: right;
	width : 7px;
	height : 7px;
	background-image : url(../graphics/icons/ctool/widget_closed.gif);
}

/*
 * Section title during hover.
 */
.section-title-link:hover .section-title,
.section-title-link:active .section-title {
	color: #6699cc;
}

.section-title-link:hover .section-title {
	text-decoration: underline;
}

/*
 * Toggle image during hover.
 */
#page-content .section-title-link:hover .section-toggle-image-closed,
#page-content .section-title-link:active .section-toggle-image-closed {
	background-image : url(../graphics/icons/ctool/widget_closed_hov.gif);
}
#page-content .section-title-link:hover .section-toggle-image-open,
#page-content .section-title-link:active .section-toggle-image-open {
	background-image : url(../graphics/icons/ctool/widget_open_hov.gif);
}


body .importance-new {
	background-image: linear-gradient(to right, #fffacd00, #fffacdff);
}

body .importance-high {
	background-image: linear-gradient(to right, #fff7da00, #fff7daff);
}

body .importance-medium {
	background-image: linear-gradient(to right, #fffbed00, #fffbedff);
}

body .importance-callout {
	background-image: linear-gradient(to right, #eeeeee00, #eeeeeeff);
}

ul.news-list {
	list-style-image: url("../graphics/icons/ctool/arrow.gif");
}

@media (prefers-color-scheme: dark) {
	body .importance-new {
		background-image: linear-gradient(to right, #66666600, #666666ff);
	}

	body .importance-high {
		background-image: linear-gradient(to right, #66666600, #666666ff);
	}

	body .importance-medium {
		background-image: linear-gradient(to right, #4d4d4d00, #4d4d4dff);
	}

	body .importance-callout {
		background-image: linear-gradient(to right, #4d4d4d00, #4d4d4dff);
	}
}

Back to the top