-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebar.css
More file actions
82 lines (66 loc) · 912 Bytes
/
Copy pathsidebar.css
File metadata and controls
82 lines (66 loc) · 912 Bytes
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
72
73
74
75
76
77
78
79
80
81
82
#mySidenav {
overflow-x: hidden;
}
.sidenavcontent {
color: #424242;
}
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
}
.dropdown-item {
display: block;
}
#package-name {
width: 380px;
}
#packageview {
padding-left: 10px;
width: 410px;
display:none;
}
.value-name {
padding-left: 10px;
font-size: large;
}
.value-version {
font-size: larger;
}
#loadingview {
padding-left: 10px;
}
#loadingtext {
display: inline;
}
.installed-values, .to-install-values {
line-height: 30px;
cursor: pointer;
}
.faicon {
font-size: 18px;
margin-top: 20px;
cursor: pointer;
}
.main-content {
overflow-x: hidden;
}
#deletebtn {
display: none;
}
#searchicon {
top: 10px;
z-index: 10 !important;
right: 20px;
}
.Blink {
animation: blink 2s ease-in infinite;
}
@keyframes blink {
from, to {
opacity: 1
}
50% {
opacity: 0
}
}