Ensure datetimepicker is not behind submit button on mobile

Fixes #265
This commit is contained in:
Christopher C. Wells 2021-08-27 20:57:27 -07:00
parent 1802733fd7
commit 32a6ea1960
6 changed files with 7 additions and 2 deletions

View File

@ -18,9 +18,12 @@
pointer-events: none;
}
// Set default text color for datetime picker.
.bootstrap-datetimepicker-widget {
// Set default text color for datetime picker.
color: $gray-400;
// Ensure widget appears above other elements (e.g. .submit-primary).
z-index: 1050;
}
// Datetime picker input styles.

View File

@ -10496,6 +10496,7 @@ h3 {
.bootstrap-datetimepicker-widget {
color: #ced4da;
z-index: 1050;
}
.input-group.datetimepicker .input-group-text {

View File

@ -10496,6 +10496,7 @@ h3 {
.bootstrap-datetimepicker-widget {
color: #ced4da;
z-index: 1050;
}
.input-group.datetimepicker .input-group-text {

Binary file not shown.

File diff suppressed because one or more lines are too long