Fix #109. Editing columns and categories with long names shows editor.

This commit is contained in:
kiswa 2014-12-05 08:41:21 -05:00
parent ad31872b40
commit 23e43328e1
4 changed files with 13 additions and 9 deletions

View File

@ -5,8 +5,8 @@ Changelog
* Additional way to dismiss Activity Log in Settings
* Image attachments resize to fit preview pane
* Uploaded files show username immediately
* Multiple concurrent logins are now possible
* Animations can be disabled per user
* Items can be moved to collapsed columns with new context menu item
* Automatic actions bugfix.
* The color picker has a pre-defined palette to choose from
* Edit Board Columns and Categories input box bugfix

View File

@ -496,6 +496,9 @@ p.detail {
.list-group-item.small {
padding: 3px;
}
.list-group.editable > .list-group-item {
overflow: hidden;
}
td > .list-group {
margin: 0;
padding: 0;

View File

@ -19,7 +19,7 @@
<div class="form-group half-width" data-ng-class="{ 'has-error': boardFormData.lanesError }">
<form role="form" class="form form-inline" data-ng-submit="boardFormData.addLane()">
<h5>Columns</h5>
<ul class="list-group lanes">
<ul class="list-group lanes editable">
<li class="list-group-item small" data-ng-class="{ disabled: boardFormData.isSaving }"
data-ng-repeat="lane in boardFormData.lanes | orderBy:'position':false">
<span class="fa fa-arrows-v"></span>
@ -42,7 +42,7 @@
<div class="form-group half-width" data-ng-class="{ 'has-error': boardFormData.categoriesError }">
<form role="form" class="form form-inline" data-ng-submit="boardFormData.addCategory()">
<h5>Categories</h5>
<ul class="list-group">
<ul class="list-group editable">
<li class="list-group-item small" data-ng-class="{ disabled: boardFormData.isSaving }"
data-ng-repeat="category in boardFormData.categories | orderBy:'category':false">
<span class="item-text">{{ category.name }}</span>

View File

@ -101,12 +101,13 @@ Count was done from parent directory of TaskBoard as `./cloc-1.62.pl TaskBoard -
Language | Files | Blank Lines | Comments | Code
-------------------|-------:|-------------:|---------:|---------:
Javascript | 23 | 194 | 34 | 1915
HTML | 17 | 10 | 10 | 1015
Javascript | 23 | 198 | 34 | 1935
HTML | 17 | 10 | 10 | 1030
PHP | 6 | 156 | 58 | 875
CSS | 1 | 11 | 33 | 636
CSS | 1 | 13 | 33 | 651
Bourne Again Shell | 4 | 10 | 0 | 53
XML | 1 | 0 | 0 | 12
__SUM:__ | __52__ | __381__ | __135__ | __4506__
__SUM:__ | __52__ | __387__ | __135__ | __4556__
Counts Last Updated: Dec. 4, 2014
Counts Last Updated: Nov. 10, 2014