From 2a8651985fe5df60882622c91395429e1f9238a6 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 2 Oct 2017 21:03:12 +0300 Subject: [PATCH] Working on the time tracker --- resources/views/tasks/time_tracker.blade.php | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) 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();