-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
27 lines (24 loc) · 862 Bytes
/
options.html
File metadata and controls
27 lines (24 loc) · 862 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
<!DOCTYPE html>
<html>
<head>
<title>MaterialExplorer Options</title>
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<!-- TODO: Add hide files checkbox -->
<!-- TODO: Maybe add a label saying what the color is for. For now, I don't think it's necessary. -->
<div id="color-picker" class="cp-default">
<div class="picker-wrapper">
<div id="picker" class="picker"></div>
<div id="picker-indicator" class="picker-indicator"></div>
</div>
<div class="slide-wrapper">
<div id="slide" class="slide"></div>
<div id="slide-indicator" class="slide-indicator"></div>
</div>
</div>
<button class="paper-button" id="update">Update</button>
<script src="js/colorpicker.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>