Blame view

app/main/static/css/charges.css 931 Bytes
54e2baa6   hitier   Add charge charts...
1

709006af   hitier   Move agent style ...
2
3
4
5
6
7
8
9
#charge_table,
#charge_table th,
#charge_table td {
    margin-top: 5em;
    margin-bottom: 5em;
    border: solid 1px lightsteelblue;
}

b9d90810   hitier   Tweak charges tab...
10
11
#charge_table td,
#charge_table th {
709006af   hitier   Move agent style ...
12
13
14
    padding: 0.8em;
}

54e2baa6   hitier   Add charge charts...
15
.charge_chart {
709006af   hitier   Move agent style ...
16
17
18
19
20
    background-color: #fAfAfA;
    border: 1pt solid black;
    display: inline-block;
}

f0706d95   hitier   Add color legend
21
22
23
24
25
26
27
28
29
text.legend {
    font-size: 12px;
}

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

b34ae681   hitier   Style bars with c...
30
31
32
rect.bar {
    stroke: white;
    stroke-width: 0.5pt;
709006af   hitier   Move agent style ...
33
34
}

b34ae681   hitier   Style bars with c...
35
rect.bar:hover {
3c21ae9f   hitier   Change bar colors
36
37
38
    -webkit-filter: brightness(1.5);
    -moz-filter: brightness(1.5);
    filter: brightness(1.5);
709006af   hitier   Move agent style ...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
}

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