application.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. }
  71. .dashboard a {
  72. font-weight: bold;
  73. }
  74. #search-item {
  75. display: none;
  76. }
  77. .creator {
  78. text-align: right;
  79. color: #999;
  80. }
  81. .vars {
  82. color: #ccc;
  83. }
  84. .check-state {
  85. font-weight: bold;
  86. }
  87. .check-state a {
  88. color: inherit;
  89. }
  90. .check-state.failing {
  91. color: red;
  92. }
  93. .check-state.passing {
  94. color: #5cb85c;
  95. }
  96. .check-state.error {
  97. color: #666;
  98. }
  99. .check-state.timed_out {
  100. color: orange;
  101. }
  102. .check-state.disabled {
  103. color: #000;
  104. }