1 | /* $Id: tooltip.css 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Test Manager - Tooltip content (via iframe).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 | /*
|
---|
38 | * Form the main divs in template-tooltip.html.
|
---|
39 | */
|
---|
40 | .tooltip-main {
|
---|
41 | width: 100%;
|
---|
42 | }
|
---|
43 |
|
---|
44 | .tooltip-inner {
|
---|
45 | clear: both;
|
---|
46 | border: 2px solid black;
|
---|
47 | padding-left: 2px;
|
---|
48 | padding-right: 2px;
|
---|
49 | padding-top: 2px;
|
---|
50 | padding-bottom: 2px
|
---|
51 | }
|
---|
52 |
|
---|
53 | /*
|
---|
54 | * Timeline tooltip.
|
---|
55 | */
|
---|
56 | .tmtimelinetooltip {
|
---|
57 | font-size: 1em;
|
---|
58 | }
|
---|
59 |
|
---|
60 | /*
|
---|
61 | * Relative stuff that could also be used for a non-tooltip VCS timeline.
|
---|
62 | */
|
---|
63 | .tmvcstimeline-highlighted {
|
---|
64 | background: #f0f0f0;
|
---|
65 | }
|
---|
66 |
|
---|
67 | .tmvcstimeline h2 {
|
---|
68 | clear: both;
|
---|
69 | font-size: 120%;
|
---|
70 | background: #e8e8e8;
|
---|
71 | border-bottom: 1px solid #c8c8c8;
|
---|
72 | border-radius: 3px;
|
---|
73 | margin-left: 0.2em;
|
---|
74 | margin-right: 0.2em;
|
---|
75 | margin-top: 0.2em;
|
---|
76 | margin-bottom: 0.4em;
|
---|
77 | padding-left: 0.2em;
|
---|
78 | padding-right: 0.2em;
|
---|
79 | padding-top: 0.2em;
|
---|
80 | padding-bottom: 0.2em;
|
---|
81 | }
|
---|
82 |
|
---|
83 | .tmvcstimeline dl {
|
---|
84 | margin-left: 0.8em;
|
---|
85 | margin-right: 0.2em;
|
---|
86 | margin-top: 0.2em;
|
---|
87 | margin-bottom: 0.8em;
|
---|
88 | }
|
---|
89 |
|
---|
90 | .tmvcstimeline dt {
|
---|
91 | font-size: 118%;
|
---|
92 | padding-left: 0.2em;
|
---|
93 | margin-top: 0.1em;
|
---|
94 | margin-bottom: 0.0em;
|
---|
95 | }
|
---|
96 |
|
---|
97 | .tmvcstimeline dt, .tmvcstimeline :link, .tmvcstimeline :link:visited, .tmvcstimeline :link:hover {
|
---|
98 | color: black;
|
---|
99 | text-decoration: none;
|
---|
100 | }
|
---|
101 |
|
---|
102 | .tmvcstimeline :link:hover {
|
---|
103 | border: 1px dotted black;
|
---|
104 | }
|
---|
105 |
|
---|
106 | .tmvcstimeline-time {
|
---|
107 | font-size: 88%;
|
---|
108 | margin-right: 0.2em;
|
---|
109 | }
|
---|
110 |
|
---|
111 | .tmvcstimeline-time, .tmvcstimeline-author {
|
---|
112 | color: #5858a0;
|
---|
113 | }
|
---|
114 |
|
---|
115 | .tmvcstimeline-rev {
|
---|
116 | color: #0000ee;
|
---|
117 | }
|
---|
118 |
|
---|
119 | .tmvcstimeline dd {
|
---|
120 | padding-left: 2em;
|
---|
121 | margin-top: 0.0em;
|
---|
122 | margin-bottom: 0.4em;
|
---|
123 | color: #424250;
|
---|
124 | }
|
---|
125 |
|
---|
126 | /* This helps highlighting the revision we're showing the tooltip for. */
|
---|
127 | .tmvcstimeline-highlight, .tmvcstimeline :target, .tmvcstimeline :target + dd {
|
---|
128 | background-color: #d8e8ff;
|
---|
129 | padding-top: 0.2em;
|
---|
130 | padding-bottom: 0.2em;
|
---|
131 | }
|
---|
132 |
|
---|