discourse/app/assets/stylesheets/common/components/bookmark-modal.scss
Martin Brennan 16799da580
FIX: Improve bookmark modal on mobile and bookmark sync rake task (#9221)
* Improve the bookmark mobile on modal so it doesn't go all the way to the edge and the custom datetime input is easier to use
* Improve the rake task for syncing so it does not error for topics that no longer exist and batches 2000 inserts at a time, clearing the array each time
2020-03-17 15:15:22 +10:00

41 lines
581 B
SCSS

.bookmark-with-reminder.modal {
.modal-inner-container {
max-width: 95%;
}
.modal-body {
max-width: 410px;
min-width: 380px;
box-sizing: border-box;
.control-label {
font-weight: 700;
}
.ember-text-field.bookmark-name {
width: 100%;
}
}
.custom-date-time-wrap {
display: flex;
flex-direction: row;
align-items: baseline;
.svg-icon {
padding: 0 5px;
}
.date-picker-wrapper {
flex: 1;
.date-picker {
width: 100%;
}
}
.time-input {
flex: 1;
}
}
}