Blame view

app/main/static/css/charges.css 1.41 KB
f9c1f568   hitier   Add dot on total ...
1
.total-line {
518c7cc5   hitier   Draw the total ca...
2
3
4
5
6
    fill: none;
    stroke: orangered;
    stroke-width: 2px;
    z-index: -1;
}
f9c1f568   hitier   Add dot on total ...
7
8
9
10
11
12
13
14
15
16
17
18
.total-circle {
	fill: orangered;
}
.total-circle:hover {
    -webkit-filter: brightness(2.0);
    -moz-filter: brightness(2.0);
    filter: brightness(2.0);
}
.total-tooltip {
    border: orangered;
}

518c7cc5   hitier   Draw the total ca...
19

ff5fd5bf   hitier   Less and Longer ...
20
21
.horizontalY {
    /*fill : none;*/
518c7cc5   hitier   Draw the total ca...
22
23
24
    shape-rendering: crispEdges;
    stroke: lightgrey;
    stroke-width: 1px;
ff5fd5bf   hitier   Less and Longer ...
25
}
518c7cc5   hitier   Draw the total ca...
26

ff5fd5bf   hitier   Less and Longer ...
27
.horizontalY0 {
518c7cc5   hitier   Draw the total ca...
28
    stroke-width: 0px;
ff5fd5bf   hitier   Less and Longer ...
29
}
54e2baa6   hitier   Add charge charts...
30

46227d23   Anais Amato   Change charts wid...
31
#charge_table, .charge_chart{
01429777   hitier   Widen table width...
32
33
    width: 95%;
}
46227d23   Anais Amato   Change charts wid...
34

709006af   hitier   Move agent style ...
35
36
37
38
39
40
41
42
#charge_table,
#charge_table th,
#charge_table td {
    margin-top: 5em;
    margin-bottom: 5em;
    border: solid 1px lightsteelblue;
}

b9d90810   hitier   Tweak charges tab...
43
44
#charge_table td,
#charge_table th {
709006af   hitier   Move agent style ...
45
46
47
    padding: 0.8em;
}

54e2baa6   hitier   Add charge charts...
48
.charge_chart {
709006af   hitier   Move agent style ...
49
50
51
52
53
    background-color: #fAfAfA;
    border: 1pt solid black;
    display: inline-block;
}

f0706d95   hitier   Add color legend
54
55
56
57
58
59
60
61
62
text.legend {
    font-size: 12px;
}

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

b34ae681   hitier   Style bars with c...
63
rect.bar {
67ab2300   hitier   Fix appearance de...
64
    stroke: lightgrey;
b34ae681   hitier   Style bars with c...
65
    stroke-width: 0.5pt;
709006af   hitier   Move agent style ...
66
67
}

b34ae681   hitier   Style bars with c...
68
rect.bar:hover {
67ab2300   hitier   Fix appearance de...
69
70
71
    -webkit-filter: brightness(0.5);
    -moz-filter: brightness(0.5);
    filter: brightness(0.8);
709006af   hitier   Move agent style ...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
}

.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
88
    pointer-events: none;
709006af   hitier   Move agent style ...
89
}