Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve report generation modal #5928

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/views/case_court_reports/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
}

const setTimeZone = () => {
if(!$('#case-selection').val()){
alert('Select an active case and specify the date range.');
}
const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone
document.getElementById("user-time-zone").value = timeZone
}
Expand Down
8 changes: 7 additions & 1 deletion public/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ a {

span {
display: block; }
}

audio,
canvas,
iframe,
Expand Down Expand Up @@ -1079,6 +1079,12 @@ h6,
.input-style-1 {
position: relative;
margin-bottom: 30px; }
.input-style-1 select{
width: 465px;
height: 40px;
border-radius: 5px;
border: 1px solid #4a6cf7;
}
.input-style-1 label {
font-size: 14px;
font-weight: 500;
Expand Down
Loading