This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlayers.less
71 lines (61 loc) · 1.52 KB
/
layers.less
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
70
71
@import "variables.less";
registry-image-layers {
border: 1px solid @sidebar-pf-border-color;
display: block;
overflow-y: auto;
max-height: 200px;
}
ul.registry-image-layers {
list-style: none;
background-image: -webkit-linear-gradient(top, #fff 12px, #d3d3d3 15px);
background-image: -moz-linear-gradient(top, #fff 12px, #d3d3d3 15px);
background-image: -o-linear-gradient(top, #fff 12px, #d3d3d3 15px);
background-image: linear-gradient(top, #fff 12px, #d3d3d3 15px);
background-size: 2px 100%;
background-repeat: no-repeat;
margin: 8px 10px 15px 15px;
padding-left: 0px;
font-size: 13px;
li {
clear: both;
}
li:before {
content: "\f111"; /* circle */
font-family: FontAwesome;
font-size: 19px;
line-height: 19px;
float: left;
display: block;
color: #0099ff;
position: relative;
left: -7px;
top: 1px;
padding-bottom: 9px;
}
li.hint-add:before {
color: #555753;
}
li.hint-run:before {
color: #4e9a06;
}
li:first-child:before {
content: "\f0ab"; /* fa-circle-arrow */
}
li:last-child:before {
top: 2px;
background-color: white;
}
span {
display: block;
float: right;
}
p {
font-family: monospace;
margin-bottom: 0px;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 15px;
white-space: nowrap;
font-size: 12px;
}
}