diff --git a/resources/views/tasks/time_tracker.blade.php b/resources/views/tasks/time_tracker.blade.php index 05b40f5ad660..c988cc5d272f 100644 --- a/resources/views/tasks/time_tracker.blade.php +++ b/resources/views/tasks/time_tracker.blade.php @@ -119,17 +119,13 @@ body { margin-bottom: 60px; + overflow-y: scroll; } #taskList { position: fixed; } - #taskForm { - overflow: visible; - } - - .ui-timepicker-wrapper.start-time { width: 140px !important; } @@ -202,17 +198,19 @@
-
- {!! Former::select('client_id') - ->addOption('', '') - ->label('client') - ->data_bind("dropdown: selectedTask().client_id") !!} -
-
- {!! Former::select('project_id') - ->addOption('', '') - ->data_bind("dropdown: selectedTask().project_id") - ->label(trans('texts.project')) !!} +
+
+ {!! Former::select('client_id') + ->addOption('', '') + ->label('client') + ->data_bind("dropdown: selectedTask().client_id") !!} +
+
+ {!! Former::select('project_id') + ->addOption('', '') + ->data_bind("dropdown: selectedTask().project_id") + ->label(trans('texts.project')) !!} +
{!! Former::textarea('description') @@ -622,6 +620,8 @@ function setPanelHeights() { var height = $(window).height() - $('.navbar').height() - 2; $('#taskList').height(height); + $('#taskForm').height(height); + } $(window).on('resize', function() { setButtonSize();