2016-02-18 20:50:57 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Button</title>
|
|
|
|
|
2016-04-14 16:52:07 +03:00
|
|
|
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css" />
|
2016-08-08 15:27:00 +03:00
|
|
|
<link rel="stylesheet" href="../dist/all.css" />
|
2016-02-18 20:50:57 +03:00
|
|
|
|
2016-07-14 15:35:07 +03:00
|
|
|
<script src="http://localhost/kendo/dist/js/jquery.min.js"></script>
|
|
|
|
<script src="http://localhost/kendo/dist/js/kendo.all.min.js"></script>
|
2016-02-18 20:50:57 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<div class="container">
|
2016-02-18 20:50:57 +03:00
|
|
|
<legend>Buttons</legend>
|
|
|
|
|
|
|
|
<button class="btn btn-primary">Primary</button>
|
|
|
|
<button class="btn btn-secondary">Default</button>
|
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="btn btn-primary hover">Hover</button>
|
|
|
|
<button class="btn btn-secondary hover">Hover</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="btn btn-primary active">Active</button>
|
|
|
|
<button class="btn btn-secondary active">Active</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="btn btn-primary disabled">Disabled</button>
|
|
|
|
<button class="btn btn-secondary disabled">Disabled</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
<hr />
|
2016-06-15 15:57:28 +03:00
|
|
|
<button data-role="button" class="k-primary">Primary</button>
|
|
|
|
<button data-role="button">Default</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button data-role="button" class="k-state-hover k-primary">Hover</button>
|
|
|
|
<button data-role="button" class="k-state-hover">Hover</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button data-role="button" class="k-state-active k-primary">Active</button>
|
|
|
|
<button data-role="button" class="k-state-active">Active</button>
|
2016-02-18 20:50:57 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button data-role="button" disabled="disabled" class="k-primary">Disabled</button>
|
|
|
|
<button data-role="button" disabled="disabled">Disabled</button>
|
2016-02-25 16:41:42 +03:00
|
|
|
<hr />
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="km-button">Default</button>
|
2016-02-25 16:41:42 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="km-button km-state-active">Active</button>
|
2016-02-25 16:41:42 +03:00
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<button class="km-button km-state-disabled">Disabled</button>
|
2016-02-25 16:41:42 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<div class="container">
|
2016-06-08 17:25:09 +03:00
|
|
|
<legend>Compact</legend>
|
|
|
|
|
|
|
|
<button class="btn btn-primary btn-sm">Primary</button>
|
|
|
|
<button class="btn btn-secondary btn-sm">Default</button>
|
|
|
|
<hr />
|
2016-06-15 15:57:28 +03:00
|
|
|
<button data-role="button" class="k-button k-primary k-compact">Primary</button>
|
|
|
|
<button data-role="button" class="k-button k-compact">Default</button>
|
2016-06-08 17:25:09 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2016-06-15 15:57:28 +03:00
|
|
|
<script>
|
|
|
|
kendo.init( $(".container") );
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2016-02-18 20:50:57 +03:00
|
|
|
</body>
|
|
|
|
</html>
|