Fix linebreak on tags, add spacing and remove commas (Fixes #2147)
This commit is contained in:
parent
9a88717dab
commit
b7d83e786f
1
AUTHORS
1
AUTHORS
@ -21,3 +21,4 @@ Authors of OpenSlides in chronological order of first contribution:
|
|||||||
Erik Steenman <eriksteenman@gmail.com>
|
Erik Steenman <eriksteenman@gmail.com>
|
||||||
Sean Engelhardt <sean.f.t.engelhardt@gmail.com>
|
Sean Engelhardt <sean.f.t.engelhardt@gmail.com>
|
||||||
Maximilian Krambach <maximilian.krambach@gmx.de>
|
Maximilian Krambach <maximilian.krambach@gmx.de>
|
||||||
|
Joel Macht <joel.macht@web.de>
|
||||||
|
@ -714,6 +714,14 @@ img {
|
|||||||
margin-bottom: 0;
|
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 */
|
/* for angular-csv-import form */
|
||||||
.import {
|
.import {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
@ -163,7 +163,7 @@
|
|||||||
<td ng-if="!motion.quickEdit" ng-mouseover="motion.hover=true" ng-mouseleave="motion.hover=false">
|
<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>
|
<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">
|
<span ng-repeat="tag in motion.tags" class="label label-default">
|
||||||
{{ tag.name }}{{$last ? '' : ', '}}
|
{{ tag.name }}
|
||||||
</span>
|
</span>
|
||||||
<div ng-if="motion.isAllowed('update')" class="hoverActions" ng-class="{'hiddenDiv': !motion.hover}">
|
<div ng-if="motion.isAllowed('update')" class="hoverActions" ng-class="{'hiddenDiv': !motion.hover}">
|
||||||
<span ng-if="motion.isAllowed('update')">
|
<span ng-if="motion.isAllowed('update')">
|
||||||
|
Loading…
Reference in New Issue
Block a user