mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Kanban fixes
This commit is contained in:
parent
89a68801e4
commit
7b11c3b390
@ -71,6 +71,8 @@
|
|||||||
|
|
||||||
.kanban-column-row .panel {
|
.kanban-column-row .panel {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
padding-top: 4px !important;
|
||||||
|
padding-bottom: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.kanban-column-row .panel.hovered {
|
.kanban-column-row .panel.hovered {
|
||||||
@ -94,7 +96,7 @@
|
|||||||
resize: vertical;
|
resize: vertical;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
padding-top: 8px;
|
padding-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.kanban-column .edit {
|
.kanban-column .edit {
|
||||||
@ -684,10 +686,10 @@
|
|||||||
</div><br/>
|
</div><br/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div data-bind="sortable: { data: tasks, as: 'task', afterMove: onTaskDragged, allowDrop: true, connectClass: 'connect-row' }" style="min-height:16px">
|
<div data-bind="sortable: { data: tasks, as: 'task', afterMove: onTaskDragged, allowDrop: true, connectClass: 'connect-row' }" style="min-height:32px;">
|
||||||
<div class="kanban-column-row" data-bind="css: { editing: is_editing_task }, visible: task.matchesFilter($root.filter(), $root.filter_client_id(), $root.filter_project_id())">
|
<div class="kanban-column-row" data-bind="css: { editing: is_editing_task }, visible: task.matchesFilter($root.filter(), $root.filter_client_id(), $root.filter_project_id())">
|
||||||
<div data-bind="event: { click: startEditTask }">
|
<div class="view" data-bind="event: { click: startEditTask }">
|
||||||
<div class="view panel" data-bind="css: { running: is_running, hovered: is_panel_hovered }, event: { mouseover: onPanelMouseOver, mouseout: onPanelMouseOut }">
|
<div class="panel" data-bind="css: { running: is_running, hovered: is_panel_hovered }, event: { mouseover: onPanelMouseOver, mouseout: onPanelMouseOut }">
|
||||||
<i class="fa fa-circle" data-bind="visible: project, css: projectColor"></i>
|
<i class="fa fa-circle" data-bind="visible: project, css: projectColor"></i>
|
||||||
<div data-bind="text: description().length > 100 ? description().substring(0, 100) + '...' : description()"></div>
|
<div data-bind="text: description().length > 100 ? description().substring(0, 100) + '...' : description()"></div>
|
||||||
</div>
|
</div>
|
||||||
@ -711,8 +713,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="kanban-column-row" data-bind="css: { editing: new_task.is_editing_task }, with: new_task" style="padding-bottom:6px">
|
<div class="kanban-column-row" data-bind="css: { editing: new_task.is_editing_task }, with: new_task" style="padding-bottom:6px">
|
||||||
<div data-bind="event: { click: startEditTask }">
|
<div class="view" data-bind="event: { click: startEditTask }">
|
||||||
<a href="#" class="view text-muted" style="font-size:13px" data-bind="visible: is_blank">
|
<a href="#" class="text-muted" style="font-size:13px" data-bind="visible: is_blank">
|
||||||
{{ trans('texts.new_task') }}...
|
{{ trans('texts.new_task') }}...
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user