Fix issues with new header levels
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
committed by
Julius Härtl
parent
8fbd400c3c
commit
0d3916d450
@@ -174,7 +174,8 @@ input.input-inline {
|
|||||||
|
|
||||||
> h2 {
|
> h2 {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding: 7px;
|
padding: 8px 7px 5px;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@@ -394,7 +395,7 @@ input.input-inline {
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.has-labels h3 {
|
&.has-labels h4 {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -437,7 +438,7 @@ input.input-inline {
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h4 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0 0 1px;
|
margin: 0 0 1px;
|
||||||
@@ -881,11 +882,14 @@ input.input-inline {
|
|||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-top: 5px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sharingOptionsGroup {
|
||||||
|
margin-right:10px;
|
||||||
|
}
|
||||||
.shareOption {
|
.shareOption {
|
||||||
margin-top: 4px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatardiv {
|
.avatardiv {
|
||||||
|
|||||||
@@ -105,14 +105,14 @@
|
|||||||
<div class="card create"
|
<div class="card create"
|
||||||
ng-style="{'background-color':'#{{ boardservice.getCurrent().color }}'}" ng-if="boardservice.canEdit() && checkCanEdit() && filter!=='archive'">
|
ng-style="{'background-color':'#{{ boardservice.getCurrent().color }}'}" ng-if="boardservice.canEdit() && checkCanEdit() && filter!=='archive'">
|
||||||
<form ng-submit="createCard(s.id, newCard.title)">
|
<form ng-submit="createCard(s.id, newCard.title)">
|
||||||
<h3 ng-if="status.addCard[s.id]">
|
<h4 ng-if="status.addCard[s.id]">
|
||||||
<input type="text" autofocus-on-insert
|
<input type="text" autofocus-on-insert
|
||||||
ng-model="newCard.title"
|
ng-model="newCard.title"
|
||||||
ng-blur="status.addCard[s.id]=false"
|
ng-blur="status.addCard[s.id]=false"
|
||||||
ng-style="{'color':'{{ boardservice.getCurrent().color | textColorFilter }}','border-color':'{{ boardservice.getCurrent().color | textColorFilter }}'}"
|
ng-style="{'color':'{{ boardservice.getCurrent().color | textColorFilter }}','border-color':'{{ boardservice.getCurrent().color | textColorFilter }}'}"
|
||||||
maxlength="100"
|
maxlength="100"
|
||||||
required placeholder="<?php p($l->t('Enter a card title')); ?>"/>
|
required placeholder="<?php p($l->t('Enter a card title')); ?>"/>
|
||||||
</h3>
|
</h4>
|
||||||
</form>
|
</form>
|
||||||
<div ng-if="!status.addCard[s.id]" ng-click="status.addCard[s.id]=true">
|
<div ng-if="!status.addCard[s.id]" ng-click="status.addCard[s.id]=true">
|
||||||
<i class="icon icon-add{{ boardservice.getCurrent().color | iconWhiteFilter }}"></i>
|
<i class="icon icon-add{{ boardservice.getCurrent().color | iconWhiteFilter }}"></i>
|
||||||
|
|||||||
Reference in New Issue
Block a user