summaryrefslogtreecommitdiff
path: root/resources/src/mediawiki/mediawiki.debug.profile.css
blob: ab27da9df3a180c9d090a10b8630a7826cf0cd91 (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
39
40
41
42
43
44
45
.mw-debug-profile-tipsy .tipsy-inner {
	/* undo max-width from vector on .tipsy-inner */
	max-width: none;
	/* needed for some browsers to provide space for the scrollbar without wrapping text */
	min-width: 100%;
	max-height: 150px;
	overflow-y: auto;
}

.mw-debug-profile-underline {
	stroke-width: 1;
	stroke: #dfdfdf;
}

.mw-debug-profile-period {
	fill: red;
}

/* connecting line between endpoints on long events */
.mw-debug-profile-period line {
	stroke: red;
	stroke-width: 2;
}

.mw-debug-profile-tipsy,
.mw-debug-profile-timeline text {
	color: #444;
	fill: #444;
	/* using em's causes the two locations to have different sizes */
	font-size: 12px;
	font-family: sans-serif;
}

.mw-debug-profile-meta,
.mw-debug-profile-timeline tspan {
	/* using em's causes the two locations to have different sizes */
	font-size: 10px;
}

.mw-debug-profile-no-data {
	text-align: center;
	padding-top: 5em;
	font-weight: bold;
	font-size: 1.2em;
}