_timepicker.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .nav.gf-timepicker-nav {
  2. margin-right: 0;
  3. }
  4. .timepicker-timestring {
  5. font-weight: normal;
  6. }
  7. .gf-timepicker-nav-btn {
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. white-space: nowrap;
  11. }
  12. .gf-timepicker-dropdown {
  13. margin: -5px -10px 10px 5px;
  14. padding: 10px 20px;
  15. float: right;
  16. background-color: $panel-bg;
  17. @include box-shadow($navbarDropdownShadow);
  18. }
  19. .gf-timepicker-absolute-section {
  20. width: 300px;
  21. float: left;
  22. border-right: 1px solid $divider-border-color;
  23. padding: 0 0 0 20px;
  24. select {
  25. width: 183px;
  26. margin-bottom: 0;
  27. }
  28. }
  29. .gf-timepicker-btn-apply {
  30. margin: 0 0 0 15px;
  31. }
  32. .gf-timepicker-utc {
  33. background-color: $tight-form-func-bg;
  34. color: $orange;
  35. font-size: 75%;
  36. padding: 3px;
  37. border-radius: 2px;
  38. font-weight: bold;
  39. margin-left: 4px;
  40. }
  41. .gf-timepicker-relative-section {
  42. padding: 0 20px 0 30px;
  43. min-height: 258px;
  44. float: left;
  45. ul {
  46. list-style: none;
  47. float: left;
  48. margin: 0 30px 10px 0px;
  49. li {
  50. line-height: 22px;
  51. }
  52. li.active {
  53. border-bottom: 1px solid $blue;
  54. margin: 3px 0;
  55. font-weight: bold;
  56. }
  57. }
  58. }
  59. .gf-timepicker-component {
  60. margin-bottom: 10px;
  61. button.btn-sm {
  62. @include buttonBackground($btnInverseBackground, $btnInverseBackgroundHighlight);
  63. background-image: none;
  64. border: none;
  65. padding: 6px 9px;
  66. color: $text-color;
  67. &.active span {
  68. color: $blue;
  69. font-weight: bold;
  70. }
  71. .text-info {
  72. color: $orange;
  73. font-weight: bold;
  74. }
  75. }
  76. }
  77. .input-datetime-format {
  78. color: $link-color-disabled
  79. }