reports.css.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // Place all the styles related to the Reports controller here.
  2. // They will automatically be included in application.css.
  3. // You can use Sass (SCSS) here: http://sass-lang.com/
  4. .report-graph-controls {
  5. display: block;
  6. margin: 12px 0px;
  7. text-align: left;
  8. .date-controls {
  9. display: block;
  10. .btn {
  11. display: inline-block;
  12. vertical-align: top;
  13. }
  14. #report_date {
  15. display: inline-block;
  16. vertical-align: top;
  17. margin: 0px 18px;
  18. padding: 0px;
  19. width: 180px;
  20. font-size: 14px;
  21. text-align: center;
  22. }
  23. }
  24. .hour-controls {
  25. margin: 12px 0px;
  26. #hours {
  27. display: inline-block;
  28. vertical-align: top;
  29. margin: 0px 18px;
  30. padding: 0px;
  31. width: 180px;
  32. font-size: 14px;
  33. text-align: center;
  34. }
  35. #hours-label {
  36. width: 100px;
  37. text-align: right;
  38. }
  39. #hours-slider {
  40. margin-top: 3px;
  41. width: 405px;
  42. }
  43. }
  44. .graph-source-select {
  45. display: inline-block;
  46. width: 403px;
  47. margin: 12px 0px;
  48. }
  49. #generate-graph {
  50. margin-left: 10px;
  51. }
  52. }