Blame view

app/main/static/css/charges.css 1.39 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

01429777   hitier   Widen table width...
31
32
33
#charge_table{
    width: 95%;
}
709006af   hitier   Move agent style ...
34
35
36
37
38
39
40
41
#charge_table,
#charge_table th,
#charge_table td {
    margin-top: 5em;
    margin-bottom: 5em;
    border: solid 1px lightsteelblue;
}

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

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

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

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

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

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

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