-
Notifications
You must be signed in to change notification settings - Fork 0
/
limits.css
65 lines (58 loc) · 1.04 KB
/
limits.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
th {
padding: 3px 20px;
}
th:first-child {
padding-left: 0;
width: 100px;
}
th:last-child {
padding-right: 0;
}
tr:nth-child(even) {
background-color: #EEEEEE;
}
th, td {
text-align: center;
}
th:first-child, td:first-child {
text-align: left;
}
th:last-child, td:last-child {
text-align: right;
}
td.editable {
background: white;
border: 1px solid;
text-align: right;
padding-right: 3px;
}
a.tooltip {outline:none; text-decoration: none;}
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;}
a.tooltip span {
z-index:10;
display:none;
padding:14px 20px;
margin-top:-30px;
margin-left:28px;
width:300px;
line-height:16px;
border-radius:4px;
box-shadow: 5px 5px 8px #CCC;
font-weight: normal;
text-align: left;
}
a.tooltip:hover span{
display:inline;
position:absolute;
color:#111;
border:1px solid #DCA;
background:#fffAF0;
}
.callout {
z-index:20;
position:absolute;
top:30px;
border:0;
left:-12px;
}