improved 'add new board' row

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>
This commit is contained in:
Artem Anufrij
2017-06-21 22:40:24 +02:00
committed by Julius Härtl
parent e970fca3f3
commit a03986b1bb
2 changed files with 8 additions and 4 deletions

View File

@@ -755,7 +755,7 @@ button.button-inline:hover {
#boardlist span.icon { #boardlist span.icon {
width: 30px; width: 30px;
height: 30px; height: 30px;
display: inline-block; margin: 2px 0px;
} }
.cell-board-bullet { .cell-board-bullet {
@@ -816,7 +816,7 @@ button.button-inline:hover {
display: flex; display: flex;
} }
#boardlist .app-navigation-entry-edit input { #boardlist input {
margin: 0px; margin: 0px;
} }

View File

@@ -102,11 +102,15 @@
ng-click="selectColor(c)" ng-click="selectColor(c)"
ng-class="{'selected': (c == newBoard.color), 'dark': (newBoard.color | textColorFilter) === '#ffffff' }"></div> ng-class="{'selected': (c == newBoard.color), 'dark': (newBoard.color | textColorFilter) === '#ffffff' }"></div>
</div> </div>
<input type="submit" value="" class="icon-checkmark svg" />
</form> </form>
</td> </td>
<td></td> <td></td>
<td></td> <td>
<div class="board-edit-controls">
<span class="icon icon-checkmark" ng-click="boardCreate()"></span>
<span class="icon icon-close" ng-click="status.addBoard=!status.addBoard"></span>
</div>
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>