application.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. .results-table img {
  23. max-width: 200px;
  24. max-height: 200px;
  25. }
  26. input.search {
  27. border: none;
  28. box-shadow: none;
  29. }
  30. input.search:focus {
  31. outline: none;
  32. box-shadow: none;
  33. }
  34. .button_to {
  35. display: inline-block;
  36. }
  37. .button_to input:focus {
  38. outline: none;
  39. }
  40. .form-inline .selectize-control, .text-right .selectize-control {
  41. display: inline-block;
  42. vertical-align: middle;
  43. margin-left: 5px;
  44. margin-right: 20px;
  45. text-align: left;
  46. }
  47. #editor-container {
  48. background-color: #141414;
  49. padding-top: 10px;
  50. padding-bottom: 10px;
  51. }
  52. #editor {
  53. display: none;
  54. height: 160px;
  55. }
  56. .ace_print-margin-layer {
  57. display: none;
  58. }
  59. .ace_gutter-cell.error {
  60. background-color: red;
  61. }
  62. .chart {
  63. height: 300px;
  64. text-align: center;
  65. display: flex;
  66. justify-content: center;
  67. flex-direction: column;
  68. }
  69. .chart > .results-container {
  70. height: 300px;
  71. border: solid 1px #ddd;
  72. overflow: scroll;
  73. text-align: left;
  74. }
  75. .dashboard a {
  76. font-weight: bold;
  77. }
  78. #search-item {
  79. display: none;
  80. }
  81. .creator {
  82. text-align: right;
  83. color: #999;
  84. }
  85. .vars {
  86. color: #ccc;
  87. }
  88. .check-state {
  89. font-weight: bold;
  90. }
  91. .check-state a {
  92. color: inherit;
  93. }
  94. .check-state.failing {
  95. color: red;
  96. }
  97. .check-state.passing {
  98. color: #5cb85c;
  99. }
  100. .check-state.error {
  101. color: #666;
  102. }
  103. .check-state.timed_out {
  104. color: orange;
  105. }
  106. .check-state.disabled {
  107. color: #000;
  108. }
  109. .topbar {
  110. position: fixed;
  111. top: 0;
  112. left: 0;
  113. right: 0;
  114. background-color: whitesmoke;
  115. height: 60px;
  116. z-index: 1001;
  117. }