forked from deanoemcke/spaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (32 loc) · 1.13 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:700,300,600,400' rel='stylesheet' type='text/css'>
<link type="text/css" href="css/popup.css" rel="stylesheet">
<script type="text/javascript" src="js/popup.js"></script>
</head>
<body>
<div id="header">
<span>Active space: </span><input type="text" id="activeSpaceTitle"></input>
<span id="spaceEdit" class="fa fa-pencil"></span>
</div>
<div class="group optsAll">
<div class="menuOption" href="#" id="allSpacesLink">
<i class="fa fa-th-large"></i>
<span class="optionText">Manage spaces</span>
<span class="hotkey"></span>
</div>
<div class="menuOption" href="#" id="switcherLink">
<i class="fa fa-exchange"></i>
<span class="optionText">Quick switch spaces</span>
<span class="hotkey"></span>
</div>
<div class="menuOption" href="#" id="moverLink">
<i class="fa fa-arrow-circle-right"></i>
<span class="optionText">Move active tab</span>
<span class="hotkey"></span>
</div>
</div>
</body>
</html>