Prevent timestamp modal calendar from overflowing container

This commit is contained in:
Kris 2018-02-23 11:44:49 -05:00
parent 43f0884660
commit d001183828
2 changed files with 24 additions and 16 deletions

View File

@ -402,3 +402,27 @@
margin-right: 0.5em;
}
}
.change-timestamp {
.date-picker {
width: 10em;
}
#date-container {
.pika-single {
position: relative !important; // overriding another important
display: inline-block;
}
}
input[type=time] {
width: 6em;
}
form {
margin: 0;
}
}

View File

@ -211,19 +211,3 @@
max-height: 150px;
margin-bottom: 10px;
}
.change-timestamp {
min-height: 300px;
.date-picker {
width: 10em;
}
input[type=time] {
width: 6em;
}
form {
margin: 0;
}
}