-
Notifications
You must be signed in to change notification settings - Fork 134
/
05-disabled-select.html
51 lines (42 loc) · 2.3 KB
/
05-disabled-select.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
<!doctype HTML>
<html>
<head>
<title>Disabled Select | EasyDropDown Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href="./style.css" rel="stylesheet"/>
<link id="theme-sheet" href="./themes/flax.css" rel="stylesheet"/>
<link rel="shortcut icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAb1BMVEUAAABCiZtUyORUyORCiZtUyORCiZtUyORCiZtUyORUyORCiZtUyORCiZtUyOREkKNUyORUyORUyORCiZtUyORUyORCiZtUyORCiZtUyORCiZtDjaBFlalHma1KpbtLqcBOtM1QuNJSwNtTxN9UyOQlYZhqAAAAGnRSTlMAEBAgMDBAQFBQYHBwgICPj5+vv7/P39/v793jxf8AAACqSURBVHja1ZJdF4IgDIYnZaaVpWbKrCzl///GIokYH3btc/fuPBwGGywCQeH5HyEVyaxwAsHZjFDLfA4LfPXJeVBIVU4CQvHNDfMKNdO59Ak8NvLeI2Qkx45Q0NwwSxiO1oHSEq64ta8kwh2xjeymDeGBbyrn2bowdCg5+D4OpgYmNlQQmRJ6VLSRMzxZeKKmcscPYuzwx85ZIBA3NFnbKwg9Ei4jFTgsgRepVztePP0rPgAAAABJRU5ErkJggg==">
<script src="./scripts/themeSwitcher.js"></script>
</head>
<body>
<main class="main">
<h2 class="sub-heading">EasyDropDown Demo</h2>
<h1 class="heading">05. Disabled Select</h1>
<div class="demo-container">
<select disabled>
<option value="">Select</option>
<option>Foo</option>
<option>Bar</option>
<option>Baz</option>
</select>
</div>
<div class="theme-switcher">
<div class="theme-switcher-label">Theme:</div>
<div class="theme-switcher-options">
<button type="button" data-theme="./themes/flax.css" class="active">Flax</button> |
<button type="button" data-theme="./themes/beanstalk.css">Beanstalk</button> |
<button type="button" data-theme="./themes/ivy.css">Ivy</button>
</div>
</div>
</main>
<footer class="footer">
<a target="_blank" href="https://github.com/patrickkunka/easydropdown">EasyDropDown v4</a>
<a target="_blank" href="https://www.kunkalabs.com">© KunkaLabs Ltd</a>
</footer>
<script src="./easydropdown.js"></script>
<script>
easydropdown.all();
</script>
</body>
</html>