application.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. *= require ./bootstrap
  3. *= require ./selectize.default
  4. *= require ./github
  5. *= require ./daterangepicker-bs3
  6. *= require_self
  7. */
  8. pre {
  9. border: none;
  10. border-radius: 0;
  11. }
  12. body {
  13. padding-top: 20px;
  14. padding-bottom: 20px;
  15. }
  16. .results-table th {
  17. cursor: pointer;
  18. }
  19. .results-table thead {
  20. background-color: #fff;
  21. }
  22. input.search {
  23. border: none;
  24. box-shadow: none;
  25. }
  26. input.search:focus {
  27. outline: none;
  28. box-shadow: none;
  29. }
  30. .button_to {
  31. display: inline-block;
  32. }
  33. .button_to input:focus {
  34. outline: none;
  35. }
  36. .form-inline .selectize-control, .text-right .selectize-control {
  37. display: inline-block;
  38. vertical-align: middle;
  39. margin-left: 5px;
  40. margin-right: 20px;
  41. text-align: left;
  42. }
  43. #editor-container {
  44. background-color: #141414;
  45. padding-top: 10px;
  46. padding-bottom: 10px;
  47. }
  48. #editor {
  49. display: none;
  50. height: 160px;
  51. }
  52. .ace_print-margin-layer {
  53. display: none;
  54. }
  55. .ace_gutter-cell.error {
  56. background-color: red;
  57. }
  58. .chart {
  59. height: 300px;
  60. text-align: center;
  61. display: flex;
  62. justify-content: center;
  63. flex-direction: column;
  64. }
  65. .chart > .results-container {
  66. height: 300px;
  67. border: solid 1px #ddd;
  68. overflow: scroll;
  69. text-align: left;
  70. }