committed by
Julius Härtl
parent
64c3606e09
commit
6f479727d5
@@ -80,6 +80,14 @@ button.button-inline:hover {
|
|||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#app-navigation .app-navigation-entry-edit .colorselect div{
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#app-navigation .app-navigation-entry-edit form {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
#app-navigation .board-bullet {
|
#app-navigation .board-bullet {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin-left: 17px;
|
margin-left: 17px;
|
||||||
@@ -678,7 +686,6 @@ button.button-inline:hover {
|
|||||||
border-radius:3px;
|
border-radius:3px;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: 0px 0px 0px 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.colorselect .color {
|
.colorselect .color {
|
||||||
@@ -715,6 +722,10 @@ button.button-inline:hover {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.labels .label-edit .colorselect{
|
||||||
|
margin: 0px 0px 0px 3px;
|
||||||
|
}
|
||||||
|
|
||||||
.labels .label-edit input {
|
.labels .label-edit input {
|
||||||
border-bottom: 1px solid #333333;
|
border-bottom: 1px solid #333333;
|
||||||
padding: 5px 5px 4px 5px !important;
|
padding: 5px 5px 4px 5px !important;
|
||||||
@@ -787,6 +798,10 @@ button.button-inline:hover {
|
|||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#boardlist td .colorselect div {
|
||||||
|
min-width: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
#boardlist td input[type=text] {
|
#boardlist td input[type=text] {
|
||||||
flex-grow: 2;
|
flex-grow: 2;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,10 +23,10 @@
|
|||||||
<form ng-disabled="isAddingList" class="ng-pristine ng-valid" ng-submit="boardUpdate(b)">
|
<form ng-disabled="isAddingList" class="ng-pristine ng-valid" ng-submit="boardUpdate(b)">
|
||||||
<input id="newTitle" class="edit ng-valid ng-empty" type="text" autofocus-on-insert ng-model="b.title" maxlength="100">
|
<input id="newTitle" class="edit ng-valid ng-empty" type="text" autofocus-on-insert ng-model="b.title" maxlength="100">
|
||||||
<input type="submit" value="" class="action icon-checkmark svg">
|
<input type="submit" value="" class="action icon-checkmark svg">
|
||||||
<div class="colorselect">
|
|
||||||
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="b.color=c" ng-class="{'selected': (c == b.color) }"><br /></div>
|
|
||||||
</div>
|
|
||||||
</form>
|
</form>
|
||||||
|
<div class="colorselect">
|
||||||
|
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="b.color=c" ng-class="{'selected': (c == b.color) }"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user