GUI Improvements on Task View
Please consider the following GUI improvements in the Task View
1. Add a `close`/`hide` button in the top right corner of the `Assigned To` dialog... at the moment there is a `Hide` button at the bottom but the more typical location is the top right corner. What makes your current implementation worse is the fact that you have an `x` in the top right corner where people expect to see a close option however this one un-assigns the task without a confirmation!

2. When editting the overview of the task details... allow the Description field to be resized...

it will take just three lines of CSS to make this work:
- resize: vertical; // or perhaps both
- max-width: none;
- max-height: none;
See the `.details-form wf-text-area[name=description] textarea` rule in https://design-1st.attask-ondemand.com/static/prod/css/tiles/content-task-view.css?build=44a9595620ee75295c3ae94c2491da33
3. add an inline HTML editor to the wf-text-area[name=description] textarea - see https://www.sitepoint.com/10-best-html-wysiwyg-plugins/ for examples or edit this idea and see what you've already got implemented...
thx