-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 511d561 🚀
- Loading branch information
Showing
3 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>selectlist | nus3 UI Labs</title> | ||
<script type="module" crossorigin src="/ui-labs/assets/modulepreload-polyfill-3cfb730f.js"></script> | ||
<link rel="stylesheet" href="/ui-labs/assets/index-528d25d1.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>selectlist</h1> | ||
</header> | ||
<main> | ||
<section> | ||
<h2>Before</h2> | ||
<select> | ||
<option value="" hidden class="hidden">undefined</option> | ||
<optgroup label="nus"> | ||
<option>nus1</option> | ||
<option>nus2</option> | ||
<option>nus3</option> | ||
<option>nus4</option> | ||
</optgroup> | ||
<optgroup label="foo"> | ||
<option>foo1</option> | ||
<option>foo2</option> | ||
<option>foo3</option> | ||
<option>foo4</option> | ||
</optgroup> | ||
</select> | ||
</section> | ||
<section> | ||
<h2>After</h2> | ||
<selectlist class="selectlist"> | ||
<button type="selectlist" class="selectlist-button"> | ||
Current Value: | ||
<selectedoption></selectedoption> | ||
</button> | ||
<listbox class="listbox"> | ||
<option value="" hidden class="hidden">undefined</option> | ||
<div> | ||
<h3 class="option-category">nus</h3> | ||
<div class="options"> | ||
<option>nus1</option> | ||
<option>nus2</option> | ||
<option>nus3</option> | ||
<option>nus4</option> | ||
</div> | ||
</div> | ||
<div> | ||
<h3 class="option-category">foo</h3> | ||
<div class="options"> | ||
<option>foo1</option> | ||
<option>foo2</option> | ||
<option>foo3</option> | ||
<option>foo4</option> | ||
</div> | ||
</div> | ||
</listbox> | ||
</selectlist> | ||
</section> | ||
</main> | ||
<footer> | ||
<a href="../">TOP</a> | ||
</footer> | ||
|
||
</body> | ||
</html> |