Skip to content

Commit

Permalink
[FIX] project: state, priority and title alignment
Browse files Browse the repository at this point in the history
Priority's star, Kanban State's bullet and name fields should be well aligned
and take less space (specially for small devices).

Related to task 1929034

closes odoo#28965
  • Loading branch information
pparidans committed Feb 4, 2019
1 parent 942930e commit 2206447
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions addons/project/views/project_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,11 @@
options='{"terminology": "archive"}'/>
</button>
</div>
<field name="kanban_state" widget="state_selection"/>
<div class="oe_title">
<h1 class="o_row">
<field name="priority" widget="priority"/>
<field name="name" class="o_task_name" placeholder="Task Title..."/>
<div class="oe_title pr-0">
<h1 class="d-flex flex-row justify-content-between">
<field name="priority" widget="priority" class="mr-3"/>
<field name="name" class="o_task_name text-truncate" placeholder="Task Title..."/>
<field name="kanban_state" widget="state_selection" class="ml-auto"/>
</h1>
</div>
<group>
Expand Down

0 comments on commit 2206447

Please sign in to comment.