blob: afc7431017560cab8a1aacb5a2ab0aa102cea1cf (
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
|
/**
* CSS for SRF dygraphs module
* @see http://www.semantic-mediawiki.org/wiki/Help:Dygraphs format
*
* @since 1.8
* @release 0.3
*
* @file
* @ingroup SRF
*
* @licence GNU GPL v2 or later
* @author mwjames
*/
.srf-ui-chart-source {
float: right;
clear:both;
font-size: 12px;
}
.srf-ui-chart-text{
float: left;
margin-right: 5px;
}
.srf-dygraphs-series-content {
display:none;
}
/* Tooltip icon defaults*/
.srf-dygraphs.series {
float: right;
margin-left:10px;
vertical-align:bottom;
padding:16px 16px 0 0;
white-space:nowrap;
}
/* Individual assigned icons ( inline-block is important because the icon <span> is empty) */
.srf-dygraphs.series.icon {
display:inline-block;
clear:both;
/* @embed */ background: url(images/check.png) no-repeat left bottom;
}
|