fix missing right padding for .item with .item-icon-right

This commit is contained in:
Adam Bradley
2013-12-06 22:13:31 -06:00
parent 07c9074294
commit 9cb7826329
2 changed files with 16 additions and 2 deletions

11
dist/css/ionic.css vendored
View File

@@ -3892,8 +3892,15 @@ button.item.item-complex {
.item-complex.item-icon-left .item-content {
padding-left: 45px; }
.item-icon-right .icon {
right: 7.5px; }
.item-icon-right {
padding-right: 45px; }
.item-icon-right .icon {
right: 7.5px; }
.item-complex.item-icon-right {
padding-right: 0; }
.item-complex.item-icon-right .item-content {
padding-right: 45px; }
.item-icon-left.item-icon-right .icon:first-child {
right: auto; }