-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpldf.css
69 lines (57 loc) · 1.06 KB
/
pldf.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
66
67
68
69
.pldt{
table-layout: fixed;
border:1px solid #28487A;
border-radius: 2x;
margin:10px;
font:#8d99ae;
font-family:'Roboto', sans-serif;
}
.pldt tr:first-child{
background-color: #EDF2FB;
}
.pldt tr:last-child{
background-color: white;
}
.pldt tr:hover{
background-color: #F9FBFE;
}
.pldt th{
background-color: #EDF2FB;
padding: 5px 10px 5px 10px;
font-size: 14px;
font-weight: 600;
}
.pldt td{
padding: 3px 5px 3px 5px;
font-size: 13px;
font-weight: 500;
}
.pldt .ControlRow{
text-align: right;
}
.ControlRow td{
padding-top:10px;
filter:opacity(0.8);
}
.ControlRow:hover td{
filter:opacity(1);
}
.ControlButtonHolder{
display:inline;
max-width:60%;
overflow:hidden;
}
.ControlButton {
font-family:'Roboto', sans-serif;
font-size:12px;
display:inline-block;
padding: 3px 10px;
margin: 0 2px 0 2px;
border: 1px solid #c0cbdc;
background-color: #EDF1F7;
color: #495057;
cursor:pointer;
}
.ControlButton:hover{
background-color:#DFE6F1;
}