mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-07 17:17:55 +03:00
21 lines
446 B
SCSS
21 lines
446 B
SCSS
// fixes breadcrumb for using
|
|
.breadcrumb {
|
|
> li {
|
|
+ li:before {
|
|
content: "/ "; // Unicode space added since inline-block means non-collapsing white-space
|
|
}
|
|
}
|
|
}
|
|
|
|
.bootstrap-timepicker-widget a.btn, .bootstrap-timepicker-widget input {
|
|
background: $input-bg;
|
|
border-color: $brand-primary;
|
|
border-radius: 0;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
}
|
|
|
|
.bootstrap-timepicker-widget table td a {
|
|
color: $brand-primary;
|
|
}
|