-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
104 lines (81 loc) · 3.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>DBUFR</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
/* scrollbar */
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
background: transparent; /* make scrollbar invisible */
}
body {
/* hide scrollbar */
overflow: scroll;
overflow-x: hidden;
width: 600px;
/* center */
float: none;
margin: 0 auto;
}
.filter{
width: 150px;
height: 20px;
display:inline-block;
margin-left: 170px;
}
#main-options-gear {
padding-right: 17px;
padding-top: 8px;
}
</style>
</head>
<body>
<div class="col-md-12 ">
<!-- rating panel [hidden] | after a few days of using display ONCE -->
<div class="alert-panel collapse">
<h3 class="text-center"></h3>
<div class="alert alert-info alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span></button>
If you enjoy using the extension, please take a moment to
<a href="#" class="alert-link">rate it</a>. Thank you!
</div>
</div>
<!-- loading panel -->
<div class="loading-panel collapse">
<h3 class="text-center">Chargement</h3>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped active"
role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
<span class="sr-only"></span>
</div>
</div>
</div>
<!-- error panel [hidden] -->
<div class="error-panel collapse"></div>
<!-- main panel [hidden] -->
<div class="main-panel collapse" id="grade-panel">
<span role="button" class="glyphicon glyphicon-cog pull-right" id="main-options-gear"
aria-hidden="true" id="options-button"></span>
<h3 class="text-center" id="welcome"></h3>
<div class="panel panel-default">
<div class="panel-body text-center" id="description"></div>
</div>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"></div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/libs/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/libs/bootstrap.min.js"></script>
<script src="js/popup/grades.js"></script>
<script src="js/popup/display.js"></script>
<script src="js/scheduler/badge.js"></script>
<script src="js/scheduler/notification.js"></script>
<script src="js/scheduler/scheduler.js"></script>
<script src="js/popup/popup.js"></script>
</body>
</html>