xref: /plugin/autotooltip/screen.less (revision f28d9c1858ac461537ef611dd2befb592697c413)
1.plugin-autotooltip_tip
2{
3	position: fixed;
4	display: block;
5	opacity: 0;
6	transition: opacity .3s ease-in-out;
7	padding: 8px;
8	margin: 5px;
9	z-index: 99999;
10	pointer-events: none;
11	border-radius: 3px;
12	color: #FFF;
13	background: rgba(20, 20, 20, 0.85);
14	font-size: 1.2em;
15}
16
17.plugin-autotooltip_big {
18	padding: 12px;
19	border-radius: 6px;
20
21	> *:first-child {
22		margin-top: 0;
23		padding-top: 0;
24	}
25
26	> .level3 > *:last-child {
27		margin-bottom: 0;
28		padding-bottom: 0;
29	}
30}
31
32.plugin-autotooltip--visible {
33	opacity: 1;
34}
35
36.plugin-autotooltip-hidden-tip, .plugin-autotooltip-hidden-classes {
37	display: none;
38}
39
40.plugin-autotooltip_linked {
41	display: inline;
42}
43
44.plugin-autotooltip__simple {
45	border-bottom: 1px dotted black;
46}
47
48.plugin-autotooltip-title {
49	font-size: 125%;
50	font-weight: bold;
51}
52
53// Test alternate style
54.plugin-autotooltip__blue {
55	background: rgba(0, 0, 40, 0.85);
56}