| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .timepicker-timestring {
- font-weight: normal;
- }
- .gf-timepicker-nav {
- flex-wrap: nowrap;
- display: flex;
- }
- .gf-timepicker-nav-btn {
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .gf-timepicker-dropdown {
- position: absolute;
- top: $navbarHeight;
- right: 0;
- padding: 10px 20px;
- background-color: $page-bg;
- border-radius: 0 0 0 4px;
- box-shadow: $search-shadow;
- }
- .gf-timepicker-absolute-section {
- width: 290px;
- float: left;
- padding: 0 10px;
- select {
- width: 183px;
- margin-bottom: 0;
- }
- }
- .gf-timepicker-btn-apply {
- margin: 0 0 0 15px;
- }
- .gf-timepicker-utc {
- background-color: $tight-form-func-bg;
- color: $orange;
- font-size: 75%;
- padding: 3px;
- border-radius: 2px;
- font-weight: 500;
- margin-left: 4px;
- }
- .gf-timepicker-relative-section {
- padding: 0 20px 0 30px;
- min-height: 237px;
- float: left;
- ul {
- list-style: none;
- float: left;
- margin: 0 30px 10px 0px;
- li {
- line-height: 22px;
- }
- li.active {
- border-bottom: 1px solid $blue;
- margin: 3px 0;
- font-weight: 500;
- }
- }
- }
- .gf-timepicker-component {
- padding: $spacer/2 0 $spacer 0;
- td {
- padding: 1px;
- }
- button.btn-sm {
- @include buttonBackground($btn-inverse-bg, $btn-inverse-bg-hl);
- font-size: $font-size-sm;
- background-image: none;
- border: none;
- padding: 5px 11px;
- color: $text-color;
- &.active span {
- color: $blue;
- font-weight: bold;
- }
- .text-info {
- color: $orange;
- font-weight: bold;
- }
- }
- }
- .input-datetime-format {
- color: $link-color-disabled;
- }
- .fa {
- display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .fa-chevron-left::before {
- content: "\f053";
- }
- .fa-chevron-right::before {
- content: "\f054";
- }
- .glyphicon-chevron-right {
- @extend .fa;
- @extend .fa-chevron-right;
- }
- .glyphicon-chevron-left {
- @extend .fa;
- @extend .fa-chevron-left;
- }
|