Change delete tags dialog to show tabs in a row

Fixes #177
This commit is contained in:
Joseph Schorr 2015-06-25 16:16:19 -04:00
parent 2ef105dd8c
commit 0baaacb0a6
2 changed files with 12 additions and 1 deletions

View file

@ -10,3 +10,14 @@
margin-top: 10px; margin-top: 10px;
position: relative; position: relative;
} }
.tag-operations-dialog .delete-tag-list {
margin: 4px;
padding: 0px;
}
.tag-operations-dialog .delete-tag-list li {
list-style: none;
display: inline-block;
margin: 4px;
}

View file

@ -79,7 +79,7 @@
dialog-title="Delete Tags" dialog-title="Delete Tags"
dialog-action-title="Delete Tags"> dialog-action-title="Delete Tags">
Are you sure you want to delete the following tags: Are you sure you want to delete the following tags:
<ul> <ul class="delete-tag-list">
<li ng-repeat="tag_info in deleteMultipleTagsInfo.tags"> <li ng-repeat="tag_info in deleteMultipleTagsInfo.tags">
<span class="label label-default tag">{{ tag_info.name }}</span> <span class="label label-default tag">{{ tag_info.name }}</span>
</li> </li>