-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tabs): Expand striped android style tab functionality. Closes 1694
- Loading branch information
1 parent
848c78d
commit ddda809
Showing
8 changed files
with
367 additions
and
49 deletions.
There are no files selected for viewing
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
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
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,39 @@ | ||
<!DOCTYPE html> | ||
<html ng-app="ionic"> | ||
<head> | ||
<script src="../../dist/js/ionic.bundle.js"></script> | ||
<meta charset="utf-8"> | ||
<title>Header</title> | ||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> | ||
<link href="../../dist/css/ionic.css" rel="stylesheet"> | ||
<script src="../../dist/js/ionic.bundle.js"></script> | ||
</head> | ||
<body> | ||
|
||
<ion-header-bar align-title="left" class="bar-positive"> | ||
<div class="buttons"> | ||
<button class="button" ng-click="doSomething()">Left Button</button> | ||
</div> | ||
<h1 class="title">Title!</h1> | ||
<div class="buttons"> | ||
<button class="button">Right Button</button> | ||
</div> | ||
</ion-header-bar> | ||
<div class="tabs-background-positive tabs-color-stable tabs-top tabs-striped"> | ||
<nav class="tabs"> | ||
<a class="tab-item active" href="#"><i class="icon ion-game-controller-a"></i> Fun</a> | ||
<a class="tab-item"><i class="icon ion-locked"></i>Security</a> | ||
<a class="tab-item has-badge"><i class="badge badge-assertive">3</i><i class="icon ion-leaf"></i>Light</a> | ||
<a disabled class="tab-item"><i class="icon ion-close"></i>Inactive</a> | ||
</nav> | ||
</div> | ||
<div class="view tabs-dark tabs-striped"> | ||
<nav class="tabs"> | ||
<a class="tab-item active" href="#"><i class="icon ion-game-controller-a"></i> Fun</a> | ||
<a class="tab-item"><i class="icon ion-locked"></i>Security</a> | ||
<a class="tab-item has-badge"><i class="badge badge-assertive">3</i><i class="icon ion-leaf"></i>Light</a> | ||
<a disabled class="tab-item"><i class="icon ion-close"></i>Inactive</a> | ||
</nav> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.