You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

295 line
4.8KB

  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. .page-container {
  6. min-height: 100%;
  7. }
  8. .content-container {
  9. padding-top: 70px;
  10. }
  11. .footer-fix {
  12. height: 100px;
  13. }
  14. .footer {
  15. margin-top: -60px;
  16. border-top: 1px solid #ddd;
  17. height: 59px;
  18. line-height: 59px;
  19. box-sizing: border-box;
  20. }
  21. .footer p {
  22. margin: 0;
  23. }
  24. .jumbotron {
  25. text-align: center;
  26. background-color: transparent;
  27. }
  28. .jumbotron .btn {
  29. font-size: 21px;
  30. padding: 14px 24px;
  31. }
  32. .navbar-brand {
  33. padding: 0;
  34. margin: 0;
  35. }
  36. .default-index .generator {
  37. min-height: 200px;
  38. margin-bottom: 20px;
  39. }
  40. .list-group .glyphicon {
  41. float: right;
  42. }
  43. .popover {
  44. max-width: 400px;
  45. width: 400px;
  46. }
  47. .hint-block {
  48. display: none;
  49. }
  50. .error-summary {
  51. color: #a94442;
  52. background: #fdf7f7;
  53. border-left: 3px solid #eed3d7;
  54. padding: 10px 20px;
  55. margin: 0 0 15px 0;
  56. }
  57. .default-view .sticky-value {
  58. padding: 6px 12px;
  59. background: lightyellow;
  60. white-space: pre;
  61. word-wrap: break-word;
  62. }
  63. .default-view .form-group label.help {
  64. border-bottom: 1px dashed #888;
  65. cursor: help;
  66. }
  67. .default-view .modal-dialog {
  68. width: 800px;
  69. }
  70. .default-view .modal-dialog .error {
  71. color: #d9534f;
  72. }
  73. .default-view .modal-dialog .content {
  74. background: #fafafa;
  75. border-left: #eee 5px solid;
  76. padding: 5px 10px;
  77. overflow: auto;
  78. }
  79. .default-view .modal-dialog code {
  80. background: transparent;
  81. }
  82. .default-view .modal-dialog .modal-copy-hint {
  83. margin-right: 10px;
  84. }
  85. .default-view .modal-dialog .modal-copy-hint kbd {
  86. margin: 0 2px;
  87. }
  88. .default-view-files table .action {
  89. width: 100px;
  90. }
  91. .default-view-files table .check {
  92. width: 25px;
  93. text-align: center;
  94. }
  95. .default-view-results pre {
  96. overflow: auto;
  97. background-color: #333;
  98. max-height: 300px;
  99. color: white;
  100. padding: 10px;
  101. border-radius: 0;
  102. white-space: nowrap;
  103. }
  104. .default-view-results pre .error {
  105. background: #FFE0E1;
  106. color: black;
  107. padding: 1px;
  108. }
  109. .default-view-results .alert pre {
  110. background: white;
  111. }
  112. .default-diff pre {
  113. padding: 0;
  114. margin: 0;
  115. background: transparent;
  116. border: none;
  117. }
  118. .default-diff pre del {
  119. background: pink;
  120. }
  121. .default-diff pre ins {
  122. background: lightgreen;
  123. text-decoration: none;
  124. }
  125. .Differences {
  126. width: 100%;
  127. border-collapse: collapse;
  128. border-spacing: 0;
  129. empty-cells: show;
  130. }
  131. .Differences thead {
  132. display: none;
  133. }
  134. .Differences tbody th {
  135. text-align: right;
  136. background: #FAFAFA;
  137. padding: 1px 2px;
  138. border-right: 1px solid #eee;
  139. vertical-align: top;
  140. font-size: 13px;
  141. font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
  142. font-weight: normal;
  143. color: #999;
  144. width: 5px;
  145. }
  146. .Differences td {
  147. padding: 1px 2px;
  148. font-size: 13px;
  149. font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
  150. }
  151. .DifferencesSideBySide .ChangeInsert td.Left {
  152. background: #dfd;
  153. }
  154. .DifferencesSideBySide .ChangeInsert td.Right {
  155. background: #cfc;
  156. }
  157. .DifferencesSideBySide .ChangeDelete td.Left {
  158. background: #f88;
  159. }
  160. .DifferencesSideBySide .ChangeDelete td.Right {
  161. background: #faa;
  162. }
  163. .DifferencesSideBySide .ChangeReplace .Left {
  164. background: #fe9;
  165. }
  166. .DifferencesSideBySide .ChangeReplace .Right {
  167. background: #fd8;
  168. }
  169. .Differences ins, .Differences del {
  170. text-decoration: none;
  171. }
  172. .DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del {
  173. background: #fc0;
  174. }
  175. .Differences .Skipped {
  176. background: #f7f7f7;
  177. }
  178. .DifferencesInline .ChangeReplace .Left,
  179. .DifferencesInline .ChangeDelete .Left {
  180. background: #fdd;
  181. }
  182. .DifferencesInline .ChangeReplace .Right,
  183. .DifferencesInline .ChangeInsert .Right {
  184. background: #dfd;
  185. }
  186. .DifferencesInline .ChangeReplace ins {
  187. background: #9e9;
  188. }
  189. .DifferencesInline .ChangeReplace del {
  190. background: #e99;
  191. }
  192. .DifferencesInline th[data-line-number]:before {
  193. content: attr(data-line-number);
  194. }
  195. /* additional styles for typeahead.js, adapted from http://twitter.github.io/typeahead.js/examples/ */
  196. .twitter-typeahead {
  197. display: block !important;
  198. }
  199. .tt-hint {
  200. color: #999
  201. }
  202. .tt-dropdown-menu, .tt-menu {
  203. width: 422px;
  204. margin-top: 2px;
  205. padding: 8px 0;
  206. background-color: #fff;
  207. border: 1px solid #ccc;
  208. border: 1px solid rgba(0, 0, 0, 0.2);
  209. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  210. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  211. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  212. }
  213. .tt-suggestion {
  214. padding: 3px 20px;
  215. font-size: 18px;
  216. line-height: 24px;
  217. }
  218. .tt-suggestion.tt-cursor {
  219. color: #fff;
  220. background-color: #0097cf;
  221. }
  222. .tt-suggestion p {
  223. margin: 0;
  224. }
  225. #clipboard-container {
  226. position: fixed;
  227. left: 0;
  228. top: 0;
  229. width: 0;
  230. height: 0;
  231. z-index: 100;
  232. /*display: none;*/
  233. opacity: 0;
  234. }
  235. #clipboard {
  236. width: 1px;
  237. height: 1px;
  238. padding: 0;
  239. }