Created
February 24, 2016 19:44
-
-
Save anonymous/17e1fd2cffff2f56241a to your computer and use it in GitHub Desktop.
JS Bin Quick Selection Box // source http://jsbin.com/nigaki
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Quick Selection Box"> | |
<script src="https://code.jquery.com/jquery.min.js"></script> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="row"> | |
<div class="col-sm-5"> | |
<div class="input-group"> | |
<div class="input-group-btn"> | |
<button | |
title="Quick Selections" | |
type="button" | |
class="btn btn-default dropdown-toggle" | |
data-toggle="dropdown" | |
aria-haspopup="true" | |
aria-expanded="false" | |
> | |
<i class="glyphicon glyphicon-th-list"></i> | |
</button> | |
<ul class="dropdown-menu"> | |
<li><a href="#"><i class="glyphicon glyphicon-floppy-disk"></i> Save Quick Selection</a></li> | |
<li role="separator" class="divider"></li> | |
<li><a href="#">My Day Shift Teams</a></li> | |
<li role="separator" class="divider"></li> | |
<li><a href="#">My Team</a></li> | |
<li><a href="#">Teams I Lead</a></li> | |
<li><a href="#">My Value Stream</a></li> | |
<li><a href="#">Emblem Value Stream</a></li> | |
<li><a href="#">Custom Value Stream</a></li> | |
<li><a href="#">Distribution Value Stream</a></li> | |
<li><a href="#">International Value Stream</a></li> | |
</ul> | |
</div><!-- /btn-group --> | |
<select class="form-control" aria-label="..."> | |
</div><!-- /input-group --> | |
</div><!-- /.col-lg-6 --> | |
</div><!-- /.row --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment