blob: 74b140284682397b22b0d64744035ae3f64e6be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
td.status > span {
display: inline-block;
height: 16px;
width: 16px;
vertical-align: text-bottom;
}
span.loading{
background-size: 16px 16px;
}
span.success {
background: #37ce02;
border-radius: 8px;
}
span.error {
background: #ce3702;
}
td.mountPoint, td.backend { width:10em; }
td.remove>img { visibility:hidden; padding-top:0.8em; }
tr:hover>td.remove>img { visibility:visible; cursor:pointer; }
#addMountPoint>td { border:none; }
#addMountPoint>td.applicable { visibility:hidden; }
#selectBackend { margin-left:-10px; }
|