forked from getflywheel/local-addon-volumes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (54 loc) · 1.18 KB
/
style.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
.VolumesContainer {
flex: 1;
overflow-y: auto;
}
.VolumesContainer .TableList {
display: table;
}
.VolumesContainer .TableListRow {
line-height: 50px;
}
.VolumesContainer .TableList input {
width: 100% !important;
}
.VolumesContainer .TableListRow div:nth-of-type(1),
.VolumesContainer .TableListRow div:nth-of-type(2) {
width: 46%;
padding: 0 0 0 30px;
}
.VolumesContainer .TableListRow div:last-of-type {
width: 8%;
text-align: center;
padding: 0;
}
.VolumesContainer .TableListRow div:nth-of-type(1) {
position: relative;
}
.VolumesContainer .TableListRow div:nth-of-type(1) input {
padding-right: 75px !important;
text-overflow: ellipsis;
}
.VolumesContainer .OpenFolder {
position: absolute;
height: 32px;
cursor: pointer;
right: 10px;
}
.VolumesContainer .RemoveVolume,
.VolumesContainer .RemoveVolume * {
cursor: pointer;
}
.VolumesContainer .RemoveVolume svg {
vertical-align: middle;
width: 12px;
}
.VolumesContainer .RemoveVolume svg path {
fill: #c7c4c4;
}
.VolumesContainer .RemoveVolume:hover svg path {
fill: #9f9c9c;
}
.VolumesContainer .Bottom {
text-align: center;
margin: 15px 0 20px;
}