timepicker.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .nav.gf-timepicker-nav {
  2. margin-right: 0;
  3. }
  4. .timepicker-timestring {
  5. font-weight: normal;
  6. }
  7. .gf-timepicker-dropdown {
  8. margin: 0px 0 15px 0;
  9. padding: 10px 20px;
  10. float: right;
  11. background-color: @grafanaPanelBackground;
  12. .box-shadow(@navbarDropdownShadow);
  13. }
  14. .gf-timepicker-absolute-section {
  15. width: 300px;
  16. float: left;
  17. border-right: @grafanaTriggerBorder;
  18. padding: 0 0 0 20px;
  19. select {
  20. width: 183px;
  21. margin-bottom: 0;
  22. }
  23. }
  24. .gf-timepicker-btn-apply {
  25. margin: 0 0 0 15px;
  26. }
  27. .gf-timepicker-relative-section {
  28. padding: 0 20px 0 25px;
  29. min-height: 258px;
  30. float: left;
  31. ul {
  32. float: left;
  33. margin: 0 20px 10px 25px;
  34. li.active {
  35. border-bottom: 1px solid @blue;
  36. margin: 3px 0;
  37. }
  38. }
  39. }
  40. .gf-timepicker-component {
  41. button.btn-sm {
  42. .buttonBackground(@btnInverseBackground, @btnInverseBackgroundHighlight);
  43. background-image: none;
  44. border: none;
  45. padding: 6px 9px;
  46. color: @textColor;
  47. &.active .text-info {
  48. color: @orange;
  49. font-weight: bold;
  50. }
  51. }
  52. }
  53. .faMixin {
  54. display: inline-block;
  55. font: normal normal normal 14px/1 FontAwesome;
  56. font-size: inherit;
  57. text-rendering: auto;
  58. -webkit-font-smoothing: antialiased;
  59. -moz-osx-font-smoothing: grayscale;
  60. }
  61. .glyphicon-chevron-right:before {
  62. .faMixin;
  63. content: "\f054";
  64. }
  65. .glyphicon-chevron-left:before {
  66. .faMixin;
  67. content: "\f053";
  68. }
  69. .input-datetime-format {
  70. color: @linkColorDisabled
  71. }