-
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.
fix(listItem): apply color styles to complex list items
- Loading branch information
1 parent
b2585f1
commit 9ff1b96
Showing
3 changed files
with
142 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html ng-app="ionic"> | ||
<head> | ||
<script src="../../dist/js/ionic.bundle.js"></script> | ||
<meta charset="utf-8"> | ||
<title>Lists</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"> | ||
<style> | ||
body { | ||
position: absolute;; | ||
} | ||
</style> | ||
</head> | ||
<body class="ionic-pseudo"> | ||
|
||
<header class="bar bar-header bar-dark"> | ||
<h1 class="title">Lists: Colors Complex</h1> | ||
</header> | ||
|
||
<div class="content has-header"> | ||
|
||
<div class="list"> | ||
<div class="item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">Default </a> | ||
</div> | ||
<div class="item-light item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-light</a> | ||
</div> | ||
<div class="item-stable item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-stable</a> | ||
</div> | ||
<div class="item-positive item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-positive</a> | ||
</div> | ||
<div class="item-assertive item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-assertive</a> | ||
</div> | ||
<div class="item-balanced item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-balanced</a> | ||
</div> | ||
<div class="item-energized item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-energized</a> | ||
</div> | ||
<div class="item-royal item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-royal</a> | ||
</div> | ||
<div class="item-dark item item-complex"> | ||
<a class="item-content" ng-href="#" target="_self" href="#">item-dark</a> | ||
</div> | ||
<div class="item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">Default Active</a> | ||
</div> | ||
<div class="item-light item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-light Active</a> | ||
</div> | ||
<div class="item-stable item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-stable Active</a> | ||
</div> | ||
<div class="item-positive item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-positive Active</a> | ||
</div> | ||
<div class="item-assertive item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-assertive Active</a> | ||
</div> | ||
<div class="item-balanced item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-balanced Active</a> | ||
</div> | ||
<div class="item-energized item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-energized Active</a> | ||
</div> | ||
<div class="item-royal item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-royal Active</a> | ||
</div> | ||
<div class="item-dark item item-complex"> | ||
<a class="item-content active" ng-href="#" target="_self" href="#">item-dark active Active</a> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
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