-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
76 lines (66 loc) · 1.57 KB
/
popup.html
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
<!doctype html>
<html>
<head>
<!--<link href="styles/main.css" rel="stylesheet">!-->
<script src="scripts/vendors/jquery-2.0.3.min.js"></script>
<link href="bootstrap-3.3.4/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<style>
#popup-content{
width: 350px;
}
.playlist-wrap{
max-height: 150px;
overflow-y:scroll;
}
.playlist-wrap .list-group-item{
padding: 5px 10px;
font-size: 12px;
}
.playlist-wrap .active{
background-color: #337ab7;
}
.playlist-wrap .delete-btn{
opacity: 0.4;
background-color: #d9534f;
}
.playlist-wrap .delete-btn:hover{
opacity: 1;
}
.player-view{
width: 350px;
}
.video-title p{
font-size: 12px;
}
.player-view .loading-sign{
width: 17px;
height: 17px;
}
.player-view > div{
float: left;
margin: 0 2px;
font-size: 14px;
}
.player-view .control-btn{
width: 17px;
height: 17px;
line-height: 17px;
}
.player-view .progress{
height: 10px;
width: 230px;
margin-top: 5px;
cursor: pointer;
}
.player-view .progress-bar{
-webkit-transition: width .1s ease;
-o-transition: width .1s ease;
transition: width .1s ease;
}
</style>
</head>
<body>
<div id='popup-content'></div>
</body>
<script type="text/javascript" src="scripts/popup.js"></script>
</html>