scinote-web/app/assets/stylesheets/shared/datetime_picker.scss

41 lines
651 B
SCSS
Raw Normal View History

2022-11-22 18:21:44 +08:00
// scss-lint:disable SelectorDepth NestingDepth
2022-11-04 18:36:21 +08:00
.bootstrap-datetimepicker-widget {
.glyphicon-calendar {
2022-11-22 18:21:44 +08:00
margin: 0;
2022-11-04 18:36:21 +08:00
}
.timepicker-picker {
padding: 0 60px;
td {
height: initial;
line-height: initial;
a {
padding: 0;
}
.timepicker-hour,
.timepicker-minute {
height: initial;
line-height: initial;
padding: 6px 0;
}
}
2022-11-22 18:21:44 +08:00
.glyphicon-chevron-up,
.glyphicon-chevron-down {
2022-11-04 18:36:21 +08:00
align-items: center;
display: flex;
height: 100%;
2022-11-22 18:21:44 +08:00
justify-content: center;
2022-11-04 18:36:21 +08:00
line-height: 1;
}
.separator {
width: 10px;
}
}
2022-11-22 18:21:44 +08:00
}