application.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. #statement-box .selectize-control {
  48. margin-right: 0;
  49. }
  50. #editor-container {
  51. background-color: #141414;
  52. padding-top: 10px;
  53. padding-bottom: 10px;
  54. }
  55. #editor {
  56. height: 160px;
  57. }
  58. .ace_print-margin-layer {
  59. display: none;
  60. }
  61. .ace_gutter-cell.error {
  62. background-color: red;
  63. }
  64. .chart {
  65. height: 300px;
  66. text-align: center;
  67. display: flex;
  68. justify-content: center;
  69. flex-direction: column;
  70. }
  71. .chart > .results-container {
  72. height: 300px;
  73. border: solid 1px #ddd;
  74. overflow: scroll;
  75. text-align: left;
  76. }
  77. .dashboard {
  78. font-weight: bold;
  79. }
  80. #search-item {
  81. display: none;
  82. }
  83. .creator {
  84. text-align: right;
  85. color: #999;
  86. }
  87. .vars {
  88. color: #ccc;
  89. }
  90. .check-state {
  91. font-weight: bold;
  92. }
  93. .check-state a {
  94. color: inherit;
  95. }
  96. .check-state.failing {
  97. color: red;
  98. }
  99. .check-state.passing {
  100. color: #5cb85c;
  101. }
  102. .check-state.error {
  103. color: #666;
  104. }
  105. .check-state.timed_out {
  106. color: orange;
  107. }
  108. .check-state.disabled {
  109. color: #000;
  110. }
  111. .topbar {
  112. position: fixed;
  113. top: 0;
  114. left: 0;
  115. right: 0;
  116. background-color: whitesmoke;
  117. height: 60px;
  118. z-index: 1001;
  119. }
  120. .glyphicon-remove {
  121. cursor: pointer;
  122. color: #d9534f;
  123. display: none;
  124. }
  125. .list-group li:hover .glyphicon-remove {
  126. display: inline;
  127. }
  128. .list-group {
  129. cursor: move;
  130. }
  131. #header a.active {
  132. color: #999;
  133. }
  134. #code {
  135. max-height: 236px;
  136. overflow: hidden;
  137. }
  138. #code.expanded {
  139. max-height: none;
  140. }
  141. [v-cloak] {
  142. display: none;
  143. }
  144. .chart-container {
  145. padding-top: 10px;
  146. clear: both;
  147. }
  148. .chart-container h4 {
  149. text-align: center;
  150. }
  151. .chart-container h4 a {
  152. color: inherit;
  153. }