summaryrefslogtreecommitdiffstats
path: root/src/tools/error_index_generator/error-index.css
blob: 8975af82de03b354b5148ecd94796adfd2ed75b6 (plain)
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
code.compile_fail {
	border-left: 2px solid red;
}

pre .tooltip {
	position: absolute;
	left: -25px;
	top: 0;
	z-index: 1;
	color: red;
	cursor: pointer;
}
pre .tooltip::after {
	display: none;
	content: "This example deliberately fails to compile";
	background-color: #000;
	color: #fff;
	border-color: #000;
	text-align: center;
	padding: 5px 3px 3px 3px;
	border-radius: 6px;
	margin-left: 5px;
}
pre .tooltip::before {
	display: none;
	border-color: transparent black transparent transparent;
	content: " ";
	position: absolute;
	top: 50%;
	left: 16px;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
}

pre .tooltip:hover::before, pre .tooltip:hover::after {
	display: inline;
}