mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Working on time tracker
This commit is contained in:
parent
a470ca8586
commit
616abe9e67
@ -14,22 +14,26 @@
|
|||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
#taskList {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
#clock,
|
#clock,
|
||||||
#startLabel {
|
#startLabel {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
#taskList {
|
||||||
|
position: relative !important;
|
||||||
|
}
|
||||||
.navbar-right button {
|
.navbar-right button {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
.no-padding-mobile {
|
||||||
|
padding-left: 15px !important;
|
||||||
|
padding-right: 15px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
button .glyphicon {
|
button .glyphicon {
|
||||||
vertical-align: text-top;
|
vertical-align: text-top;
|
||||||
}
|
}
|
||||||
@ -202,13 +206,13 @@
|
|||||||
<form id="taskForm">
|
<form id="taskForm">
|
||||||
<span data-bind="event: { keypress: onFormKeyPress }">
|
<span data-bind="event: { keypress: onFormKeyPress }">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div style="padding-bottom: 20px; padding-right:6px;" class="client-select col-md-6">
|
<div style="padding-bottom: 20px; padding-right:6px;" class="client-select col-md-6 no-padding-mobile">
|
||||||
{!! Former::select('client_id')
|
{!! Former::select('client_id')
|
||||||
->addOption('', '')
|
->addOption('', '')
|
||||||
->label('client')
|
->label('client')
|
||||||
->data_bind("dropdown: selectedTask().client_id") !!}
|
->data_bind("dropdown: selectedTask().client_id") !!}
|
||||||
</div>
|
</div>
|
||||||
<div style="padding-bottom: 20px; padding-left:6px;" class="project-select col-md-6">
|
<div style="padding-bottom: 20px; padding-left:6px;" class="project-select col-md-6 no-padding-mobile">
|
||||||
{!! Former::select('project_id')
|
{!! Former::select('project_id')
|
||||||
->addOption('', '')
|
->addOption('', '')
|
||||||
->data_bind("dropdown: selectedTask().project_id")
|
->data_bind("dropdown: selectedTask().project_id")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user