Blame view

app/main/static/css/charges.css 711 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
    background-color: #fAfAfA;
    border: 1pt solid black;
    display: inline-block;
}

rect.bar:hover {
    fill: dimgrey;
}

rect.bar {
    fill: rgb(127, 127, 159);
}

.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;
}