-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
87 lines (82 loc) · 4.56 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Tab Groups</title>
</head>
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<div class="p-tb-20 p-lr-10">
<button type="button" class="btn btn-common black opentabs">OPEN ALL</button>
<ul class="list links"></ul>
</div>
</div>
<div class="col-md-6">
<div class="p-tb-20">
<button type="button" class="btn btn-common black copy">COPY</button>
<div class="dropdown">
<button class="btn btn-common grey open_dropdown">EXPORT AND IMPORT</button>
<div id="export_import_buttons_dropdown" class="buttons-dropdown-content">
<button type="button" class="btn btn-common grey export_all_files">EXPORT ALL</button>
<button type="button" class="btn btn-common grey import_all_files">IMPORT ALL</button>
<button type="button" class="btn btn-common grey export_file" disabled>EXPORT FILE</button>
<button type="button" class="btn btn-common grey import_file">IMPORT FILE</button>
</div>
</div>
<div class="dropdown">
<button class="btn btn-common grey open_dropdown">READING LIST</button>
<div id="reading_list_buttons_dropdown" class="buttons-dropdown-content">
<button type="button" class="btn btn-common grey export_reading_list">EXPORT READING LIST</button>
<button type="button" class="btn btn-common grey import_reading_list">IMPORT READING LIST</button>
</div>
</div>
<button type="button" class="btn btn-common red delete_file" disabled>DELETE</button>
<div class="settings-dropdown" id="settingsDropdown">
<button class="settings-btn">Settings</button>
<div class="settings-dropdown-content">
<input class="settings ignore_pinned" data-type="pinned" type="checkbox">
<label for="ignore_pinned">Ignore pinned</label><br>
<input class="settings all_windows" data-type="windows" type="checkbox">
<label for="all_windows">All windows</label><br>
<input class="settings delete_merged" data-type="merged" type="checkbox">
<label for="delete_merged">Delete merged</label>
</div>
</div>
<div class="groups_list">
<span>Choose the group: </span>
<select class="form-select" id="select_group"></select>
</div>
</div>
<textarea></textarea>
</div>
<div class="col-md-3">
<div class="p-tb-20 p-lr-10">
<div class="input-group">
<input type="text" name="filename" class="form-control input-light" placeholder="File Name">
<span class="input-group-btn">
<button class="btn btn-common grey rename" type="button" disabled>RENAME</button>
<button class="btn btn-common black save" type="button">SAVE</button>
</span>
</div>
</div>
<div class="file_action">
<h5 class="pull-left">FILES</h5>
<button class="btn btn-common red delete_files pull-right">DELETE ALL</button>
<button data-id="" class="btn btn-common grey merge_files pull-right">MERGE</button>
</div>
<div style="padding-right: 10px;">
<ul class="list files"></ul>
</div>
</div>
</div>
</div>
<script src="js/options.js"></script>
</body>
</html>