Blame view

app/main/static/css/charges.css 1.15 KB
518c7cc5   hitier   Draw the total ca...
1
2
3
4
5
6
7
.line {
    fill: none;
    stroke: orangered;
    stroke-width: 2px;
    z-index: -1;
}

ff5fd5bf   hitier   Less and Longer ...
8
9
.horizontalY {
    /*fill : none;*/
518c7cc5   hitier   Draw the total ca...
10
11
12
    shape-rendering: crispEdges;
    stroke: lightgrey;
    stroke-width: 1px;
ff5fd5bf   hitier   Less and Longer ...
13
}
518c7cc5   hitier   Draw the total ca...
14

ff5fd5bf   hitier   Less and Longer ...
15
.horizontalY0 {
518c7cc5   hitier   Draw the total ca...
16
    stroke-width: 0px;
ff5fd5bf   hitier   Less and Longer ...
17
}
54e2baa6   hitier   Add charge charts...
18

709006af   hitier   Move agent style ...
19
20
21
22
23
24
25
26
#charge_table,
#charge_table th,
#charge_table td {
    margin-top: 5em;
    margin-bottom: 5em;
    border: solid 1px lightsteelblue;
}

b9d90810   hitier   Tweak charges tab...
27
28
#charge_table td,
#charge_table th {
709006af   hitier   Move agent style ...
29
30
31
    padding: 0.8em;
}

54e2baa6   hitier   Add charge charts...
32
.charge_chart {
709006af   hitier   Move agent style ...
33
34
35
36
37
    background-color: #fAfAfA;
    border: 1pt solid black;
    display: inline-block;
}

f0706d95   hitier   Add color legend
38
39
40
41
42
43
44
45
46
text.legend {
    font-size: 12px;
}

rect.legend {
    stroke: white;
    stroke-width: 0.5pt;
}

b34ae681   hitier   Style bars with c...
47
48
49
rect.bar {
    stroke: white;
    stroke-width: 0.5pt;
709006af   hitier   Move agent style ...
50
51
}

b34ae681   hitier   Style bars with c...
52
rect.bar:hover {
3c21ae9f   hitier   Change bar colors
53
54
55
    -webkit-filter: brightness(1.5);
    -moz-filter: brightness(1.5);
    filter: brightness(1.5);
709006af   hitier   Move agent style ...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
}

.tooltip {
    position: absolute;
    opacity: 1.0;
    z-index: 1000;
    text-align: left;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 10px;
    border: 1px solid;
    background-color: white;
    color: black;
    /*font: 12px sans-serif;*/
    max-width: 300px;
069a5102   hitier   Fixed tooltip
72
    pointer-events: none;
709006af   hitier   Move agent style ...
73
}