Merge pull request #2190 from joelmacht/issue#2147
Fix linebreak on tags (Fixes #2147)
This commit is contained in:
commit
1afe3572e4
1
AUTHORS
1
AUTHORS
@ -21,3 +21,4 @@ Authors of OpenSlides in chronological order of first contribution:
|
||||
Erik Steenman <eriksteenman@gmail.com>
|
||||
Sean Engelhardt <sean.f.t.engelhardt@gmail.com>
|
||||
Maximilian Krambach <maximilian.krambach@gmx.de>
|
||||
Joel Macht <joel.macht@web.de>
|
||||
|
@ -714,6 +714,14 @@ img {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
/* override booststrap's label class to fix linebreak and add spacing */
|
||||
.label {
|
||||
display: inline-block;
|
||||
padding: .3em .6em;
|
||||
margin-right: .2em;
|
||||
}
|
||||
|
||||
/* for angular-csv-import form */
|
||||
.import {
|
||||
margin-left: 15px;
|
||||
|
@ -163,7 +163,7 @@
|
||||
<td ng-if="!motion.quickEdit" ng-mouseover="motion.hover=true" ng-mouseleave="motion.hover=false">
|
||||
<strong><a ui-sref="motions.motion.detail({id: motion.id})">{{ motion.getTitle() }}</a></strong>
|
||||
<span ng-repeat="tag in motion.tags" class="label label-default">
|
||||
{{ tag.name }}{{$last ? '' : ', '}}
|
||||
{{ tag.name }}
|
||||
</span>
|
||||
<div ng-if="motion.isAllowed('update')" class="hoverActions" ng-class="{'hiddenDiv': !motion.hover}">
|
||||
<span ng-if="motion.isAllowed('update')">
|
||||
|
Loading…
Reference in New Issue
Block a user