mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
16799da580
* 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
41 lines
581 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|