discourse/app/assets/stylesheets/common/components/time-shortcut-picker.scss
Martin Brennan 8d38438725
FIX: Sort topic timer and bookmark time options (#12270)
remove 3 month option for topic timer
move relative time input inside the custom
date and time shortcut
make sure special options are always at the bottom
2021-03-03 13:33:47 +10:00

52 lines
839 B
SCSS

.custom-date-time-wrap {
padding: 1em 1em 0.5em;
border: 1px solid var(--primary-low);
border-top: none;
background: var(--primary-very-low);
.d-icon {
padding: 0 0.75em 0 0;
color: var(--primary-high);
margin-top: -0.5em;
}
.caret-icon {
margin-top: 0;
padding: 0 0 0 5px;
}
.tap-tile-date-input,
.tap-tile-time-input {
display: flex;
align-items: center;
input {
width: 100%;
min-width: unset;
}
}
.date-picker,
.time-input {
text-align: left;
padding-top: 5px;
}
.time-input,
.date-picker-wrapper {
flex: 1 1 auto;
}
&.custom-input-wrap {
border-bottom: 0;
margin-bottom: 0;
}
&.custom-relative-wrap {
.relative-time-picker {
display: flex;
.select-kit.combo-box {
width: 60px;
}
}
}
}