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