Desktop mode: align folder icons text in nav

This commit is contained in:
Mario Volke 2014-11-10 17:01:19 +01:00 committed by Tankred Hase
parent 5d982fdcac
commit 18dc3dbf37
2 changed files with 6 additions and 4 deletions

View File

@ -49,8 +49,9 @@
fill: $color-white;
width: 20px;
height: 1em;
vertical-align: baseline;
vertical-align: middle;
margin-right: 5px;
margin-top: -0.25em;
}
}
.btn-icon-very-light {
@ -96,8 +97,9 @@
fill: $color-white;
width: 20px;
height: 1em;
vertical-align: baseline;
vertical-align: middle;
margin-right: 5px;
margin-top: -0.25em;
}
}

View File

@ -16,7 +16,7 @@
<use ng-if="folder.type === 'Trash'" xlink:href="#icon-trash" />
<use ng-if="folder.type === 'Flagged'" xlink:href="#icon-star" />
</svg>
{{folder.type}}
foobar {{folder.type}}
<span ng-show="folder.count > 0" class="nav__counter">{{folder.count}}</span>
</a>
<!--<button class="btn-icon-very-light">
@ -30,7 +30,7 @@
class="nav__folder" ng-class="{'nav__folder--open': state.nav.currentFolder === folder}">
<a href="#" wo-touch="$event.preventDefault(); openFolder(folder)">
<svg role="presentation"><use xlink:href="#icon-folder" /></svg>
{{folder.name}}
asdf{{folder.name}}
<span ng-show="folder.count > 0" class="nav__counter">{{folder.count}}</span>
</a>
</li>