application.css 2.2 KB

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