timepicker.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. margin-bottom: 10px;
  42. button.btn-sm {
  43. .buttonBackground(@btnInverseBackground, @btnInverseBackgroundHighlight);
  44. background-image: none;
  45. border: none;
  46. padding: 6px 9px;
  47. color: @textColor;
  48. &.active span {
  49. color: @blue;
  50. font-weight: bold;
  51. }
  52. .text-info {
  53. color: @orange;
  54. font-weight: bold;
  55. }
  56. }
  57. }
  58. .faMixin {
  59. display: inline-block;
  60. font: normal normal normal 14px/1 FontAwesome;
  61. font-size: inherit;
  62. text-rendering: auto;
  63. -webkit-font-smoothing: antialiased;
  64. -moz-osx-font-smoothing: grayscale;
  65. }
  66. .glyphicon-chevron-right:before {
  67. .faMixin;
  68. content: "\f054";
  69. }
  70. .glyphicon-chevron-left:before {
  71. .faMixin;
  72. content: "\f053";
  73. }
  74. .input-datetime-format {
  75. color: @linkColorDisabled
  76. }