Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Charts and statistics
3
***/
4
.chart,
5
.pie,
6
.bars {
7
    overflow: hidden;
8
    height: 300px;
9
    width: 100%;
10
    font-family: $font-family-primary !important;
11
    font-size: 14px;
12
}
13
 
14
/***
15
Statistic lists
16
***/
17
.item-list.table {
18
    .percent {
19
        width: 30px;
20
        float: right;
21
        margin-right: 10px;
22
        margin-top: 3px;
23
    }
24
}
25
 
26
/***
27
Chart tooltips
28
***/
29
.chart-tooltip {
30
    clear: both;
31
    z-index: 100;
32
    background-color: #736e6e !important;
33
    padding: 5px !important;
34
    color: #fff;
35
 
36
    .label {
37
        clear: both;
38
        display: block;
39
        margin-bottom: 2px;
40
    }
41
}
42
 
43
/***
44
Mini chart containers
45
***/
46
 
47
.bar-chart,
48
.line-chart {
49
    display: none
50
}