flipper-ui 0.2.0.beta2 → 0.2.0.beta3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +12 -11
  3. data/README.md +5 -7
  4. data/examples/basic.ru +27 -26
  5. data/flipper-ui.gemspec +5 -3
  6. data/lib/flipper-ui.rb +1 -0
  7. data/lib/flipper/ui.rb +11 -2
  8. data/lib/flipper/ui/action.rb +45 -4
  9. data/lib/flipper/ui/actions/actors_gate.rb +48 -0
  10. data/lib/flipper/ui/actions/add_feature.rb +20 -0
  11. data/lib/flipper/ui/actions/boolean_gate.rb +26 -0
  12. data/lib/flipper/ui/actions/feature.rb +32 -0
  13. data/lib/flipper/ui/actions/features.rb +23 -3
  14. data/lib/flipper/ui/actions/file.rb +1 -1
  15. data/lib/flipper/ui/actions/gate.rb +11 -117
  16. data/lib/flipper/ui/actions/groups_gate.rb +43 -0
  17. data/lib/flipper/ui/actions/{index.rb → home.rb} +3 -3
  18. data/lib/flipper/ui/actions/percentage_of_actors_gate.rb +27 -0
  19. data/lib/flipper/ui/actions/percentage_of_time_gate.rb +27 -0
  20. data/lib/flipper/ui/actor.rb +13 -0
  21. data/lib/flipper/ui/assets/javascripts/application.coffee +0 -305
  22. data/lib/flipper/ui/assets/stylesheets/_bootstrap-compass.scss +9 -0
  23. data/lib/flipper/ui/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  24. data/lib/flipper/ui/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  25. data/lib/flipper/ui/assets/stylesheets/_bootstrap.scss +50 -0
  26. data/lib/flipper/ui/assets/stylesheets/application.scss +33 -216
  27. data/lib/flipper/ui/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  28. data/lib/flipper/ui/assets/stylesheets/bootstrap/_badges.scss +68 -0
  29. data/lib/flipper/ui/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  30. data/lib/flipper/ui/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
  31. data/lib/flipper/ui/assets/stylesheets/bootstrap/_buttons.scss +160 -0
  32. data/lib/flipper/ui/assets/stylesheets/bootstrap/_carousel.scss +269 -0
  33. data/lib/flipper/ui/assets/stylesheets/bootstrap/_close.scss +36 -0
  34. data/lib/flipper/ui/assets/stylesheets/bootstrap/_code.scss +69 -0
  35. data/lib/flipper/ui/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
  36. data/lib/flipper/ui/assets/stylesheets/bootstrap/_dropdowns.scss +214 -0
  37. data/lib/flipper/ui/assets/stylesheets/bootstrap/_forms.scss +578 -0
  38. data/lib/flipper/ui/assets/stylesheets/bootstrap/_glyphicons.scss +305 -0
  39. data/lib/flipper/ui/assets/stylesheets/bootstrap/_grid.scss +84 -0
  40. data/lib/flipper/ui/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
  41. data/lib/flipper/ui/assets/stylesheets/bootstrap/_jumbotron.scss +50 -0
  42. data/lib/flipper/ui/assets/stylesheets/bootstrap/_labels.scss +66 -0
  43. data/lib/flipper/ui/assets/stylesheets/bootstrap/_list-group.scss +124 -0
  44. data/lib/flipper/ui/assets/stylesheets/bootstrap/_media.scss +61 -0
  45. data/lib/flipper/ui/assets/stylesheets/bootstrap/_mixins.scss +39 -0
  46. data/lib/flipper/ui/assets/stylesheets/bootstrap/_modals.scss +150 -0
  47. data/lib/flipper/ui/assets/stylesheets/bootstrap/_navbar.scss +662 -0
  48. data/lib/flipper/ui/assets/stylesheets/bootstrap/_navs.scss +242 -0
  49. data/lib/flipper/ui/assets/stylesheets/bootstrap/_normalize.scss +427 -0
  50. data/lib/flipper/ui/assets/stylesheets/bootstrap/_pager.scss +54 -0
  51. data/lib/flipper/ui/assets/stylesheets/bootstrap/_pagination.scss +88 -0
  52. data/lib/flipper/ui/assets/stylesheets/bootstrap/_panels.scss +265 -0
  53. data/lib/flipper/ui/assets/stylesheets/bootstrap/_popovers.scss +135 -0
  54. data/lib/flipper/ui/assets/stylesheets/bootstrap/_print.scss +107 -0
  55. data/lib/flipper/ui/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  56. data/lib/flipper/ui/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  57. data/lib/flipper/ui/assets/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
  58. data/lib/flipper/ui/assets/stylesheets/bootstrap/_scaffolding.scss +162 -0
  59. data/lib/flipper/ui/assets/stylesheets/bootstrap/_tables.scss +234 -0
  60. data/lib/flipper/ui/assets/stylesheets/bootstrap/_theme.scss +273 -0
  61. data/lib/flipper/ui/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  62. data/lib/flipper/ui/assets/stylesheets/bootstrap/_tooltip.scss +102 -0
  63. data/lib/flipper/ui/assets/stylesheets/bootstrap/_type.scss +298 -0
  64. data/lib/flipper/ui/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  65. data/lib/flipper/ui/assets/stylesheets/bootstrap/_variables.scss +866 -0
  66. data/lib/flipper/ui/assets/stylesheets/bootstrap/_wells.scss +29 -0
  67. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  68. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
  69. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  70. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
  71. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  72. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  73. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  74. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  75. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  76. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  77. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  78. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  79. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  80. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
  81. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  82. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  83. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  84. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
  85. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  86. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  87. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  88. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  89. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  90. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  91. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  92. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  93. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
  94. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  95. data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  96. data/lib/flipper/ui/assets/stylesheets/primer/.scss-lint.yml +446 -0
  97. data/lib/flipper/ui/assets/stylesheets/primer/_alerts.scss +106 -0
  98. data/lib/flipper/ui/assets/stylesheets/primer/_avatars.scss +36 -0
  99. data/lib/flipper/ui/assets/stylesheets/primer/_base.scss +40 -0
  100. data/lib/flipper/ui/assets/stylesheets/primer/_blankslate.scss +96 -0
  101. data/lib/flipper/ui/assets/stylesheets/primer/_buttons.scss +404 -0
  102. data/lib/flipper/ui/assets/stylesheets/primer/_counter.scss +10 -0
  103. data/lib/flipper/ui/assets/stylesheets/primer/_filter-list.scss +68 -0
  104. data/lib/flipper/ui/assets/stylesheets/primer/_flex-table.scss +20 -0
  105. data/lib/flipper/ui/assets/stylesheets/primer/_forms.scss +756 -0
  106. data/lib/flipper/ui/assets/stylesheets/primer/_layout.scss +69 -0
  107. data/lib/flipper/ui/assets/stylesheets/primer/_menu.scss +113 -0
  108. data/lib/flipper/ui/assets/stylesheets/primer/_mixins.scss +53 -0
  109. data/lib/flipper/ui/assets/stylesheets/primer/_normalize.scss +425 -0
  110. data/lib/flipper/ui/assets/stylesheets/primer/_states.scss +32 -0
  111. data/lib/flipper/ui/assets/stylesheets/primer/_tabnav.scss +65 -0
  112. data/lib/flipper/ui/assets/stylesheets/primer/_tooltips.scss +255 -0
  113. data/lib/flipper/ui/assets/stylesheets/primer/_truncate.scss +27 -0
  114. data/lib/flipper/ui/assets/stylesheets/primer/_type.scss +92 -0
  115. data/lib/flipper/ui/assets/stylesheets/primer/_utility.scss +73 -0
  116. data/lib/flipper/ui/assets/stylesheets/primer/_variables.scss +34 -0
  117. data/lib/flipper/ui/assets/stylesheets/primer/primer.scss +39 -0
  118. data/lib/flipper/ui/decorators/feature.rb +37 -4
  119. data/lib/flipper/ui/middleware.rb +12 -3
  120. data/lib/flipper/ui/public/css/application.css +2563 -144
  121. data/lib/flipper/ui/public/css/primer.css +1 -0
  122. data/lib/flipper/ui/public/css/primer/primer.css +1933 -0
  123. data/lib/flipper/ui/public/css/scss/primer.css +1933 -0
  124. data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  125. data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  126. data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  127. data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  128. data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  129. data/lib/flipper/ui/public/js/application.js +0 -539
  130. data/lib/flipper/ui/public/js/bootstrap-sprockets.js +12 -0
  131. data/lib/flipper/ui/public/js/bootstrap.js +2317 -0
  132. data/lib/flipper/ui/public/js/bootstrap.min.js +7 -0
  133. data/lib/flipper/ui/public/js/bootstrap/affix.js +162 -0
  134. data/lib/flipper/ui/public/js/bootstrap/alert.js +94 -0
  135. data/lib/flipper/ui/public/js/bootstrap/button.js +116 -0
  136. data/lib/flipper/ui/public/js/bootstrap/carousel.js +237 -0
  137. data/lib/flipper/ui/public/js/bootstrap/collapse.js +211 -0
  138. data/lib/flipper/ui/public/js/bootstrap/dropdown.js +161 -0
  139. data/lib/flipper/ui/public/js/bootstrap/modal.js +339 -0
  140. data/lib/flipper/ui/public/js/bootstrap/popover.js +108 -0
  141. data/lib/flipper/ui/public/js/bootstrap/scrollspy.js +172 -0
  142. data/lib/flipper/ui/public/js/bootstrap/tab.js +153 -0
  143. data/lib/flipper/ui/public/js/bootstrap/tooltip.js +476 -0
  144. data/lib/flipper/ui/public/js/bootstrap/transition.js +59 -0
  145. data/lib/flipper/ui/public/octicons/LICENSE.txt +9 -0
  146. data/lib/flipper/ui/public/octicons/README.md +1 -0
  147. data/lib/flipper/ui/public/octicons/octicons-local.ttf +0 -0
  148. data/lib/flipper/ui/public/octicons/octicons.css +236 -0
  149. data/lib/flipper/ui/public/octicons/octicons.eot +0 -0
  150. data/lib/flipper/ui/public/octicons/octicons.less +235 -0
  151. data/lib/flipper/ui/public/octicons/octicons.svg +200 -0
  152. data/lib/flipper/ui/public/octicons/octicons.ttf +0 -0
  153. data/lib/flipper/ui/public/octicons/octicons.woff +0 -0
  154. data/lib/flipper/ui/public/octicons/sprockets-octicons.scss +232 -0
  155. data/lib/flipper/ui/util.rb +4 -0
  156. data/lib/flipper/ui/version.rb +1 -1
  157. data/lib/flipper/ui/views/add_actor.erb +22 -0
  158. data/lib/flipper/ui/views/add_feature.erb +18 -0
  159. data/lib/flipper/ui/views/add_group.erb +31 -0
  160. data/lib/flipper/ui/views/feature.erb +209 -0
  161. data/lib/flipper/ui/views/features.erb +46 -0
  162. data/lib/flipper/ui/views/layout.erb +31 -149
  163. data/script/release +15 -0
  164. data/spec/flipper/ui/actions/actors_gate_spec.rb +68 -0
  165. data/spec/flipper/ui/actions/add_feature_spec.rb +17 -0
  166. data/spec/flipper/ui/actions/boolean_gate_spec.rb +41 -0
  167. data/spec/flipper/ui/actions/feature_spec.rb +59 -0
  168. data/spec/flipper/ui/actions/features_spec.rb +37 -0
  169. data/spec/flipper/ui/actions/file_spec.rb +43 -0
  170. data/spec/flipper/ui/actions/gate_spec.rb +24 -0
  171. data/spec/flipper/ui/actions/groups_gate_spec.rb +80 -0
  172. data/spec/flipper/ui/actions/home_spec.rb +16 -0
  173. data/spec/flipper/ui/actions/percentage_of_actors_gate_spec.rb +40 -0
  174. data/spec/flipper/ui/actions/percentage_of_time_gate_spec.rb +39 -0
  175. data/spec/flipper/ui/decorators/feature_spec.rb +38 -1
  176. data/spec/flipper/ui/decorators/gate_spec.rb +1 -1
  177. data/spec/flipper/ui_spec.rb +18 -441
  178. data/spec/helper.rb +22 -7
  179. metadata +199 -52
  180. data/examples/flipper.html +0 -14
  181. data/examples/flipper.png +0 -0
  182. data/lib/flipper/ui/assets/javascripts/spine/ajax.coffee +0 -223
  183. data/lib/flipper/ui/assets/javascripts/spine/list.coffee +0 -43
  184. data/lib/flipper/ui/assets/javascripts/spine/local.coffee +0 -16
  185. data/lib/flipper/ui/assets/javascripts/spine/manager.coffee +0 -83
  186. data/lib/flipper/ui/assets/javascripts/spine/relation.coffee +0 -148
  187. data/lib/flipper/ui/assets/javascripts/spine/route.coffee +0 -146
  188. data/lib/flipper/ui/assets/javascripts/spine/spine.coffee +0 -542
  189. data/lib/flipper/ui/assets/javascripts/spine/version +0 -1
  190. data/lib/flipper/ui/public/css/images/animated-overlay.gif +0 -0
  191. data/lib/flipper/ui/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  192. data/lib/flipper/ui/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  193. data/lib/flipper/ui/public/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
  194. data/lib/flipper/ui/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  195. data/lib/flipper/ui/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  196. data/lib/flipper/ui/public/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  197. data/lib/flipper/ui/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  198. data/lib/flipper/ui/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  199. data/lib/flipper/ui/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  200. data/lib/flipper/ui/public/css/images/ui-icons_222222_256x240.png +0 -0
  201. data/lib/flipper/ui/public/css/images/ui-icons_228ef1_256x240.png +0 -0
  202. data/lib/flipper/ui/public/css/images/ui-icons_ef8c08_256x240.png +0 -0
  203. data/lib/flipper/ui/public/css/images/ui-icons_ffd27a_256x240.png +0 -0
  204. data/lib/flipper/ui/public/css/images/ui-icons_ffffff_256x240.png +0 -0
  205. data/lib/flipper/ui/public/css/jquery-ui-1.10.3.slider.min.css +0 -5
  206. data/lib/flipper/ui/public/js/handlebars.js +0 -1992
  207. data/lib/flipper/ui/public/js/jquery-ui-1.10.3.slider.min.js +0 -6
  208. data/lib/flipper/ui/public/js/jquery.js +0 -9555
  209. data/lib/flipper/ui/public/js/jquery.min.js +0 -4
  210. data/lib/flipper/ui/public/js/jquery.min.map +0 -1
  211. data/lib/flipper/ui/public/js/spine/ajax.js +0 -320
  212. data/lib/flipper/ui/public/js/spine/list.js +0 -72
  213. data/lib/flipper/ui/public/js/spine/local.js +0 -29
  214. data/lib/flipper/ui/public/js/spine/manager.js +0 -157
  215. data/lib/flipper/ui/public/js/spine/relation.js +0 -260
  216. data/lib/flipper/ui/public/js/spine/route.js +0 -223
  217. data/lib/flipper/ui/public/js/spine/spine.js +0 -927
  218. data/lib/flipper/ui/views/index.erb +0 -9
@@ -0,0 +1 @@
1
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}input,select,textarea,button{font:13px/1.4 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol"}body{font:13px/1.4 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#333;background-color:#fff}a{color:#4183c4;text-decoration:none}a:hover,a:active{text-decoration:underline}hr,.rule{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #ddd}hr:before,.rule:before{display:table;content:""}hr:after,.rule:after{display:table;clear:both;content:""}h1,h2,h3,h4,h5,h6{margin-top:15px;margin-bottom:15px;line-height:1.1}h1{font-size:30px}h2{font-size:21px}h3{font-size:16px}h4{font-size:14px}h5{font-size:12px}h6{font-size:11px}small{font-size:90%}blockquote{margin:0}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#555}.text-muted{color:#999}.text-danger{color:#bd2c00}.text-emphasized{font-weight:bold;color:#333}ul,ol{padding:0;margin-top:0;margin-bottom:0}ol ol,ul ol{list-style-type:lower-roman}ul ul ol,ul ol ol,ol ul ol,ol ol ol{list-style-type:lower-alpha}dd{margin-left:0}tt,code{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}pre{margin-top:0;margin-bottom:0;font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}.container{width:980px;margin-right:auto;margin-left:auto}.container:before{display:table;content:""}.container:after{display:table;clear:both;content:""}.columns{margin-right:-10px;margin-left:-10px}.columns:before{display:table;content:""}.columns:after{display:table;clear:both;content:""}.column{float:left;padding-right:10px;padding-left:10px}.one-third{width:33.333333%}.two-thirds{width:66.666667%}.one-fourth{width:25%}.one-half{width:50%}.three-fourths{width:75%}.one-fifth{width:20%}.four-fifths{width:80%}.single-column{padding-right:10px;padding-left:10px}.table-column{display:table-cell;width:1%;padding-right:10px;padding-left:10px;vertical-align:top}fieldset{padding:0;margin:0;border:0}label{font-size:13px;font-weight:bold}.form-control,input[type="text"],input[type="password"],input[type="email"],input[type="number"],input[type="tel"],input[type="url"],textarea{min-height:34px;padding:7px 8px;font-size:13px;color:#333;vertical-align:middle;background-color:#fff;background-repeat:no-repeat;background-position:right center;border:1px solid #ccc;border-radius:3px;outline:none;box-shadow:inset 0 1px 2px rgba(0,0,0,0.075)}.form-control.focus,.form-control:focus,input[type="text"].focus,input[type="text"]:focus,.focused .drag-and-drop,input[type="password"].focus,input[type="password"]:focus,input[type="email"].focus,input[type="email"]:focus,input[type="number"].focus,input[type="number"]:focus,input[type="tel"].focus,input[type="tel"]:focus,input[type="url"].focus,input[type="url"]:focus,textarea.focus,textarea:focus{border-color:#51a7e8;box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(81,167,232,0.5)}input.input-contrast,.input-contrast{background-color:#fafafa}input.input-contrast:focus,.input-contrast:focus{background-color:#fff}::-webkit-input-placeholder,:-moz-placeholder{color:#aaa}::-webkit-validation-bubble-message{font-size:12px;color:#fff;background:#9c2400;border:0;border-radius:3px;-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.1)}input::-webkit-validation-bubble-icon{display:none}::-webkit-validation-bubble-arrow{background-color:#9c2400;border:solid 1px #9c2400;-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.1)}input.input-mini{min-height:26px;padding-top:4px;padding-bottom:4px;font-size:12px}input.input-large{padding:6px 10px;font-size:16px}.input-block{display:block;width:100%}.input-monospace{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace}dl.form{margin:15px 0}dl.form input[type="text"],dl.form input[type="password"],dl.form input[type="email"],dl.form input[type="url"],dl.form textarea{background-color:#fafafa}dl.form input[type="text"]:focus,dl.form .focused .drag-and-drop,.focused dl.form .drag-and-drop,dl.form input[type="password"]:focus,dl.form input[type="email"]:focus,dl.form input[type="url"]:focus,dl.form textarea:focus{background-color:#fff}dl.form>dt{margin:0 0 6px}dl.form>dt label{position:relative}dl.form.flattened>dt{float:left;margin:0;line-height:32px}dl.form.flattened>dd{line-height:32px}dl.form>dd input[type="text"],dl.form>dd input[type="password"],dl.form>dd input[type="email"],dl.form>dd input[type="url"]{width:440px;max-width:100%;margin-right:5px;background-position-x:98%}dl.form>dd input.shorter{width:130px}dl.form>dd input.short{width:250px}dl.form>dd input.long{width:100%}dl.form>dd textarea{width:100%;height:200px;min-height:200px}dl.form>dd textarea.short{height:50px;min-height:50px}dl.form>dd h4{margin:4px 0 0}dl.form>dd h4.is-error{color:#bd2c00}dl.form>dd h4.is-success{color:#6cc644}dl.form>dd h4+p.note{margin-top:0}dl.form.required>dt>label:after{padding-left:5px;color:#9f1006;content:"*"}.note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#777}.note .spinner{margin-right:3px;vertical-align:middle}.form-checkbox{padding-left:20px;margin:15px 0;vertical-align:middle}.form-checkbox label em.highlight{position:relative;left:-4px;padding:2px 4px;font-style:normal;background:#fffbdc;border-radius:3px}.form-checkbox input[type=checkbox],.form-checkbox input[type=radio]{float:left;margin:2px 0 0 -20px;vertical-align:middle}.form-checkbox .note{display:block;margin:0;font-size:12px;font-weight:normal;color:#666}dl.form .success,dl.form .error,dl.form .indicator{display:none;font-size:12px;font-weight:bold}dl.form.loading{opacity:0.5}dl.form.loading .indicator{display:inline}dl.form.loading .spinner{display:inline-block;vertical-align:middle}dl.form.successful .success{display:inline;color:#390}dl.form.errored>dt label{color:#900}dl.form.errored .error{display:inline;color:#900}dl.form.errored dd.error,dl.form.errored dd.warning{display:inline-block;padding:5px;font-size:11px;color:#494620;background:#f7ea57;border:1px solid #c0b536;border-top-color:#fff;border-bottom-right-radius:3px;border-bottom-left-radius:3px}dl.form.warn .warning{display:inline;color:#900}dl.form.warn dd.warning{display:inline-block;padding:5px;font-size:11px;color:#494620;background:#f7ea57;border:1px solid #c0b536;border-top-color:#fff;border-bottom-right-radius:3px;border-bottom-left-radius:3px}dl.form .form-note{display:inline-block;padding:5px;margin-top:-1px;font-size:11px;color:#494620;background:#f7ea57;border:1px solid #c0b536;border-top-color:#fff;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.hfields{margin:15px 0}.hfields:before{display:table;content:""}.hfields:after{display:table;clear:both;content:""}.hfields dl.form{float:left;margin:0 30px 0 0}.hfields dl.form>dt label{display:inline-block;margin:5px 0 0;color:#666}.hfields dl.form>dt label img{position:relative;top:-2px}.hfields .btn{float:left;margin:28px 25px 0 -20px}.hfields select{margin-top:5px}html.no-dnd-uploads .drag-and-drop{min-height:32px}html.no-dnd-uploads .drag-and-drop .default{display:none}html.no-dnd-uploads .upload-enabled textarea{border-bottom:1px solid #ddd}.drag-and-drop{padding:7px 10px;margin:0;font-size:13px;line-height:16px;color:#aaa;background-color:#fafafa;border:1px solid #ccc;border-top:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.drag-and-drop .default,.drag-and-drop .loading,.drag-and-drop .error{display:none}.drag-and-drop .error{color:#bd2c00}.drag-and-drop img{vertical-align:top}.is-default .drag-and-drop .default{display:inline-block}.is-uploading .drag-and-drop .loading{display:inline-block}.is-bad-file .drag-and-drop .bad-file{display:inline-block}.is-too-big .drag-and-drop .too-big{display:inline-block}.is-empty .drag-and-drop .empty{display:inline-block}.is-bad-browser .drag-and-drop .bad-browser{display:inline-block}.drag-and-drop-error-info{font-weight:normal;color:#aaa}.drag-and-drop-error-info a{color:#4183c4}.is-failed .drag-and-drop .failed-request{display:inline-block}.manual-file-chooser{position:absolute;width:240px;padding:5px;margin-left:-80px;cursor:pointer;opacity:0.0001}.manual-file-chooser:hover+.manual-file-chooser-text{text-decoration:underline}.btn .manual-file-chooser{top:0;padding:0;line-height:34px}.upload-enabled textarea{display:block;border-bottom:1px dashed #ddd;border-bottom-right-radius:0;border-bottom-left-radius:0}.focused .drag-and-drop{box-shadow:rgba(81,167,232,0.5) 0 0 3px}.dragover textarea,.dragover .drag-and-drop{box-shadow:#c9ff00 0 0 3px}.previewable-comment-form{position:relative}.previewable-comment-form .tabnav{position:relative;padding:10px 10px 0}.previewable-comment-form .comment{border:1px solid #cacaca}.previewable-comment-form .comment-header .comment-header-actions{display:none}.previewable-comment-form .comment-form-error{margin-bottom:10px}.previewable-comment-form .write-content,.previewable-comment-form .preview-content{display:none;padding:0 10px 10px}.previewable-comment-form.write-selected .write-content,.previewable-comment-form.preview-selected .preview-content{display:block}.previewable-comment-form textarea{display:block;width:100%;min-height:100px;max-height:500px;padding:10px;resize:vertical}.previewable-comment-form textarea.fullscreen-contents:focus{border:0;box-shadow:none}div.composer{margin-top:0;border:0}.composer .comment-form-textarea{height:200px;min-height:200px}.composer-infobar{height:35px;padding:0 10px;margin-bottom:10px;border-bottom:1px solid #eee}.composer .tabnav{margin:0 0 10px}.infobar-widget.milestone{position:relative;float:right}.infobar-widget.milestone .select-menu-modal-holder{right:0}.infobar-widget.assignee{float:left}.infobar-widget.assignee .css-truncate-target{max-width:110px}.infobar-widget .text,.infobar-widget .avatar,.infobar-widget .select-menu{display:inline-block;vertical-align:top}.infobar-widget .text{margin-top:3px}.infobar-widget .text a{font-weight:bold;color:#333}.infobar-widget .progress-bar{width:200px;overflow:hidden;line-height:18px}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.input-group{display:table}.input-group input{position:relative;width:100%}.input-group input:focus{z-index:2}.input-group input[type="text"]+.btn{margin-left:0}.input-group.inline{display:inline-table}.input-group input,.input-group-button{display:table-cell}.input-group-button{width:1%;vertical-align:middle}.input-group input:first-child,.input-group-button:first-child .btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-button:first-child .btn{margin-right:-1px}.input-group input:last-child,.input-group-button:last-child .btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-button:last-child .btn{margin-left:-1px}h2.account{margin:15px 0 0;font-size:18px;font-weight:normal;color:#666}p.explain{position:relative;font-size:12px;color:#666}p.explain strong{color:#333}p.explain .octicon{margin-right:5px;color:#bbb}p.explain .minibutton{top:-4px;float:right}.options-content p.explain{padding:10px 10px 0;margin-top:0;border-top:1px solid #ddd}.form-actions:before{display:table;content:""}.form-actions:after{display:table;clear:both;content:""}.form-actions .btn{float:right}.form-actions .btn+.btn{margin-right:5px}.form-warning{padding:8px 10px;margin:10px 0;font-size:14px;color:#333;background:#ffffe2;border:1px solid #e7e4c2;border-radius:4px}.form-warning p{margin:0;line-height:1.5}.form-warning strong{color:#000}.form-warning a{font-weight:bold}.status-indicator{font:normal normal 16px/1 "octicons";display:inline-block;text-decoration:none;-webkit-font-smoothing:antialiased;margin-left:5px}.status-indicator-success:before{color:#6cc644;content:"\f03a"}.status-indicator-failed:before{color:#bd2c00;content:"\f02d"}.clearfix:before{display:table;content:""}.clearfix:after{display:table;clear:both;content:""}.right{float:right}.left{float:left}.text-right{text-align:right}.text-left{text-align:left}.danger{color:#c00}.mute{color:#000}.text-diff-added{color:#55a532}.text-diff-deleted{color:#bd2c00}.text-open,.text-success{color:#6cc644}.text-closed{color:#bd2c00}.text-reverted{color:#bd2c00}.text-merged{color:#6e5494}.text-renamed{color:#fffa5d}.text-pending{color:#cea61b}.text-error,.text-failure{color:#bd2c00}.muted-link{color:#777}.muted-link:hover{color:#4183c4;text-decoration:none}.hidden{display:none}.warning{padding:0.5em;margin-bottom:0.8em;font-weight:bold;background-color:#fffccc}.error_box{padding:1em;font-weight:bold;background-color:#ffebe8;border:1px solid #dd3c10}.flash-messages{margin-top:15px;margin-bottom:15px}.flash,.flash-global{position:relative;font-size:14px;line-height:1.6;color:#246;background-color:#e2eef9;border:solid 1px #bac6d3}.flash.flash-warn,.flash-global.flash-warn{color:#4c4a42;background-color:#fff9ea;border-color:#dfd8c2}.flash.flash-error,.flash-global.flash-error{color:#911;background-color:#fcdede;border-color:#d2b2b2}.flash .flash-close,.flash-global .flash-close{float:right;padding:17px;margin-top:-15px;margin-right:-15px;margin-left:20px;color:inherit;text-decoration:none;cursor:pointer;opacity:0.6}.flash .flash-close:hover,.flash-global .flash-close:hover{opacity:1}.flash p:last-child,.flash-global p:last-child{margin-bottom:0}.flash .flash-action,.flash-global .flash-action{float:right;margin-top:-4px;margin-left:20px}.flash a,.flash-global a{font-weight:bold}.flash{padding:15px;border-radius:3px}.flash+.flash{margin-top:5px}.flash-with-icon{padding-left:40px}.flash-with-icon>.octicon{float:left;margin-top:3px;margin-left:-25px}.flash-global{padding:10px;margin-top:-1px;border-width:1px 0}.flash-global h2,.flash-global p{margin-top:0;margin-bottom:0;font-size:14px;line-height:1.4}.flash-global .flash-action{margin-top:5px}.flash-title{margin-top:0;margin-bottom:5px}.avatar{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px}.avatar-small{border-radius:2px}.avatar-link{float:left;line-height:1}.avatar-group-item{display:inline-block;margin-bottom:3px}.avatar-parent-child{position:relative}.avatar-child{position:absolute;right:-15%;bottom:-9%;border-radius:2px;box-shadow:-2px -2px 0 rgba(255,255,255,0.8)}.blankslate{position:relative;padding:30px;text-align:center;background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;box-shadow:inset 0 0 10px rgba(0,0,0,0.05)}.blankslate.clean-background{background:none;border:0;box-shadow:none}.blankslate.capped{border-radius:0 0 3px 3px}.blankslate.spacious{padding:100px 60px 120px}.blankslate.has-fixed-width{width:485px;margin:0 auto}.blankslate.large-format h3{margin:0.75em 0;font-size:20px}.blankslate.large-format p{font-size:16px}.blankslate.large-format p.has-fixed-width{width:540px;margin:0 auto;text-align:left}.blankslate.large-format .mega-octicon{width:40px;height:40px;font-size:40px;color:#aaa}.blankslate.large-format .octicon-inbox{font-size:48px;line-height:40px}.blankslate code{padding:2px 5px 3px;font-size:14px;background:#fff;border:1px solid #eee;border-radius:3px}.blankslate>.mega-octicon{color:#aaa}.blankslate .mega-octicon+.mega-octicon{margin-left:10px}.tabnav+.blankslate{margin-top:20px}.blankslate .context-loader.large-format-loader{padding-top:50px}.spinner-forking{display:block;margin:20px auto 40px}.forking-repo{margin:40px 0;text-align:center}.forking-repo h3{margin-bottom:10px;font-size:28px;font-weight:300}.forking-repo h4{margin:0 0 30px;font-size:16px;font-weight:300}.counter{display:inline-block;padding:2px 5px;font-size:11px;font-weight:bold;line-height:1;color:#777;background-color:#eee;border-radius:20px}.btn{position:relative;display:inline-block;padding:6px 12px;font-size:13px;font-weight:bold;line-height:20px;color:#333;white-space:nowrap;vertical-align:middle;cursor:pointer;background-color:#eee;background-image:linear-gradient(#fcfcfc, #eee);border:1px solid #d5d5d5;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-appearance:none}.btn i{font-style:normal;font-weight:500;opacity:0.6}.btn .octicon{vertical-align:text-top}.btn .counter{text-shadow:none;background-color:#e5e5e5}.btn:focus{text-decoration:none;border-color:#51a7e8;outline:none;box-shadow:0 0 5px rgba(81,167,232,0.5)}.btn:hover,.btn:active,.btn.zeroclipboard-is-hover,.btn.zeroclipboard-is-active{text-decoration:none;background-color:#ddd;background-image:linear-gradient(#eee, #ddd);border-color:#ccc}.btn:active,.btn.selected,.btn.selected:hover,.btn.zeroclipboard-is-active{background-color:#dcdcdc;background-image:none;border-color:#b5b5b5;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15)}.btn:disabled,.btn:disabled:hover,.btn.disabled,.btn.disabled:hover{color:rgba(102,102,102,0.5);cursor:default;background-color:rgba(229,229,229,0.5);background-image:none;border-color:rgba(197,197,197,0.5);box-shadow:none}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.15);background-color:#60b044;background-image:linear-gradient(#8add6d, #60b044);border-color:#5ca941}.btn-primary .counter{color:#60b044;background-color:#fff}.btn-primary:hover{color:#fff;background-color:#569e3d;background-image:linear-gradient(#79d858, #569e3d);border-color:#4a993e}.btn-primary:active,.btn-primary.selected{text-shadow:0 1px 0 rgba(0,0,0,0.15);background-color:#569e3d;background-image:none;border-color:#418737}.btn-primary:disabled,.btn-primary:disabled:hover,.btn-primary.disabled,.btn-primary.disabled:hover{color:#fefefe;background-color:#add39f;background-image:linear-gradient(#c3ecb4, #add39f);border-color:#b9dcac #b9dcac #a7c89b}.btn-danger{color:#900}.btn-danger:hover{color:#fff;background-color:#b33630;background-image:linear-gradient(#dc5f59, #b33630);border-color:#cd504a}.btn-danger:active,.btn-danger.selected{color:#fff;background-color:#b33630;background-image:none;border-color:#9f312c}.btn-danger:disabled,.btn-danger:disabled:hover,.btn-danger.disabled,.btn-danger.disabled:hover{color:#cb7f7f;background-color:#efefef;background-image:linear-gradient(#fefefe, #efefef);border-color:#e1e1e1}.btn-danger:hover .counter,.btn-danger:active .counter,.btn-danger.selected .counter{color:#b33630;background-color:#fff}.btn-outline{color:#4183c4;background-color:#fff;background-image:none;border:1px solid #e5e5e5}.btn-outline .counter{background-color:#eee}.btn-outline:hover,.btn-outline:active,.btn-outline.selected,.btn-outline.selected:hover,.btn-outline.zeroclipboard-is-hover,.btn-outline.zeroclipboard-is-active{color:#fff;background-color:#4183c4;background-image:none;border-color:#4183c4}.btn-outline:hover .counter,.btn-outline:active .counter,.btn-outline.selected .counter,.btn-outline.selected:hover .counter,.btn-outline.zeroclipboard-is-hover .counter,.btn-outline.zeroclipboard-is-active .counter{color:#4183c4;background-color:#fff}.btn-outline:disabled,.btn-outline:disabled:hover,.btn-outline.disabled,.btn-outline.disabled:hover{color:#777;background-color:#fff;background-image:none;border-color:#e5e5e5}.btn-with-count{float:left;border-top-right-radius:0;border-bottom-right-radius:0}.btn-sm{padding:2px 10px}.hidden-text-expander{display:block}.hidden-text-expander.inline{position:relative;top:-1px;display:inline-block;margin-left:5px;line-height:0}.hidden-text-expander a{display:inline-block;height:12px;padding:0 5px;font-size:12px;font-weight:bold;line-height:6px;color:#555;text-decoration:none;vertical-align:middle;background:#ddd;border-radius:1px}.hidden-text-expander a:hover{text-decoration:none;background-color:#ccc}.hidden-text-expander a:active{color:#fff;background-color:#4183c4}.social-count{float:left;padding:2px 7px;font-size:11px;font-weight:bold;line-height:20px;color:#333;vertical-align:middle;background-color:#fff;border:1px solid #ddd;border-left:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.social-count:hover,.social-count:active{text-decoration:none}.social-count:hover{color:#4183c4;cursor:pointer}.btn-block{display:block;width:100%;text-align:center}.btn-group{display:inline-block;vertical-align:middle}.btn-group:before{display:table;content:""}.btn-group:after{display:table;clear:both;content:""}.btn-group .btn{position:relative;float:left}.btn-group .btn:not(:first-child):not(:last-child){border-radius:0}.btn-group .btn:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group .btn:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.selected{z-index:2}.btn-group .btn+.btn{margin-left:-1px;box-shadow:inset 1px 0 0 rgba(255,255,255,0.2)}.btn-group .btn+.btn:hover{box-shadow:none}.btn-group .btn+.btn:active,.btn-group .btn+.btn.selected{box-shadow:inset 0 3px 5px rgba(0,0,0,0.15)}.btn-group .button_to+.button_to{margin-left:-1px}.btn-group .button_to{float:left}.btn-group .button_to .btn{border-radius:0}.btn-group .button_to:first-child .btn{border-top-left-radius:3px;border-bottom-left-radius:3px}.btn-group .button_to:last-child .btn{border-top-right-radius:3px;border-bottom-right-radius:3px}.btn-group+.btn-group,.btn-group+.btn{margin-left:5px}.btn-link{display:inline-block;padding:0;font-size:inherit;color:#4183c4;white-space:nowrap;cursor:pointer;background-color:transparent;border:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-appearance:none}.btn-link:hover,.btn-link:focus{text-decoration:underline}.btn-link:focus{outline:none}.menu{margin-bottom:15px;list-style:none;background-color:#fff;border:1px solid #d8d8d8;border-radius:3px}.menu-item{position:relative;display:block;padding:8px 10px;text-shadow:0 1px 0 #fff;border-bottom:1px solid #eee}.menu-item:first-child{border-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.menu-item:first-child:before{border-top-left-radius:2px}.menu-item:last-child{border-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.menu-item:last-child:before{border-bottom-left-radius:2px}.menu-item:hover{text-decoration:none;background-color:#f9f9f9}.menu-item.selected{font-weight:bold;color:#222;cursor:default;background-color:#fff}.menu-item.selected:before{position:absolute;top:0;left:0;bottom:0;width:2px;content:"";background-color:#d26911}.menu-item .octicon{margin-right:5px;width:16px;color:#333;text-align:center}.menu-item .counter{float:right;margin-left:5px}.menu-item .menu-warning{float:right;color:#d26911}.menu-item .avatar{float:left;margin-right:5px}.menu-item.alert .counter{color:#bd2c00}.menu-heading{display:block;padding:8px 10px;margin-top:0;margin-bottom:0;font-size:13px;font-weight:bold;line-height:20px;color:#555;background-color:#f7f7f7;border-bottom:1px solid #eee}.menu-heading:hover{text-decoration:none}.menu-heading:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.menu-heading:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px;border-bottom:0}.tabnav{margin-top:0;margin-bottom:15px;border-bottom:1px solid #ddd}.tabnav .counter{margin-left:5px}.tabnav-tabs{margin-bottom:-1px}.tabnav-tab{display:inline-block;padding:8px 12px;font-size:14px;line-height:20px;color:#666;text-decoration:none;border:1px solid transparent;border-bottom:0}.tabnav-tab.selected{color:#333;background-color:#fff;border-color:#ddd;border-radius:3px 3px 0 0}.tabnav-tab:hover{text-decoration:none}.tabnav-extra{display:inline-block;padding-top:10px;margin-left:10px;font-size:12px;color:#666}.tabnav-extra>.octicon{margin-right:2px}a.tabnav-extra:hover{color:#4183c4;text-decoration:none}.tabnav-btn{margin-left:10px}.filter-list{list-style-type:none}.filter-list.small .filter-item{padding:4px 10px;margin:0 0 2px;font-size:12px}.filter-list.pjax-active .filter-item{color:#777;background-color:transparent}.filter-list.pjax-active .filter-item.pjax-active{color:#fff;background-color:#4183c4}.filter-item{position:relative;display:block;padding:8px 10px;margin-bottom:5px;overflow:hidden;font-size:14px;color:#777;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;border-radius:3px}.filter-item:hover{text-decoration:none;background-color:#eee}.filter-item.selected{color:#fff;background-color:#4183c4}.filter-item.selected .octicon-remove-close{float:right;opacity:0.8}.filter-item .count{float:right;font-weight:bold}.filter-item .bar{position:absolute;top:2px;right:0;bottom:2px;z-index:-1;display:inline-block;background-color:#f1f1f1}.state{display:inline-block;padding:4px 8px;font-weight:bold;line-height:20px;color:#fff;text-align:center;border-radius:3px;background-color:#999}.state-open,.state-proposed,.state-reopened{background-color:#6cc644}.state-merged{background-color:#6e5494}.state-closed{background-color:#bd2c00}.state-renamed{background-color:#fffa5d}.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,0.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,0.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before,.tooltipped:hover:after,.tooltipped:active:before,.tooltipped:active:after,.tooltipped:focus:before,.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after,.tooltipped-multiline:active:after,.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-s:after,.tooltipped-se:after,.tooltipped-sw:after{top:100%;right:50%;margin-top:5px}.tooltipped-s:before,.tooltipped-se:before,.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,0.8)}.tooltipped-se:after{right:auto;left:50%;margin-left:-15px}.tooltipped-sw:after{margin-right:-15px}.tooltipped-n:after,.tooltipped-ne:after,.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px}.tooltipped-n:before,.tooltipped-ne:before,.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,0.8)}.tooltipped-ne:after{right:auto;left:50%;margin-left:-15px}.tooltipped-nw:after{margin-right:-15px}.tooltipped-s:after,.tooltipped-n:after{-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,0.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,0.8)}.tooltipped-multiline:after{width:-moz-max-content;width:-webkit-max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-multiline.tooltipped-s:after,.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after,.tooltipped-multiline.tooltipped-e:after{right:100%}@media screen and (min-width: 0\0){.tooltipped-multiline:after{width:250px}}.tooltipped-sticky:before,.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before,.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before,.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before,.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before,.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,0.8)}.flex-table{display:table}.flex-table-item{display:table-cell;width:1%;white-space:nowrap;vertical-align:middle}.flex-table-item-primary{width:99%}.css-truncate.css-truncate-target,.css-truncate .css-truncate-target{display:inline-block;max-width:125px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target,.css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target,.css-truncate.expandable:hover .css-truncate-target,.css-truncate.expandable:hover.css-truncate-target{max-width:10000px !important}
@@ -0,0 +1,1933 @@
1
+ /*
2
+ * Primer
3
+ * http://primercss.io
4
+ *
5
+ * Released under MIT license. Copyright 2015 GitHub, Inc.
6
+ */
7
+ /* normalize.css v3.0.1 | MIT License | git.io/normalize */
8
+ /**
9
+ * 1. Set default font family to sans-serif.
10
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
11
+ * user zoom.
12
+ */
13
+ html {
14
+ font-family: sans-serif;
15
+ /* 1 */
16
+ -ms-text-size-adjust: 100%;
17
+ /* 2 */
18
+ -webkit-text-size-adjust: 100%;
19
+ /* 2 */ }
20
+
21
+ /**
22
+ * Remove default margin.
23
+ */
24
+ body {
25
+ margin: 0; }
26
+
27
+ /* HTML5 display definitions
28
+ ========================================================================== */
29
+ /**
30
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
31
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
32
+ * Correct `block` display not defined for `main` in IE 11.
33
+ */
34
+ article,
35
+ aside,
36
+ details,
37
+ figcaption,
38
+ figure,
39
+ footer,
40
+ header,
41
+ hgroup,
42
+ main,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block; }
47
+
48
+ /**
49
+ * 1. Correct `inline-block` display not defined in IE 8/9.
50
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
51
+ */
52
+ audio,
53
+ canvas,
54
+ progress,
55
+ video {
56
+ display: inline-block;
57
+ /* 1 */
58
+ vertical-align: baseline;
59
+ /* 2 */ }
60
+
61
+ /**
62
+ * Prevent modern browsers from displaying `audio` without controls.
63
+ * Remove excess height in iOS 5 devices.
64
+ */
65
+ audio:not([controls]) {
66
+ display: none;
67
+ height: 0; }
68
+
69
+ /**
70
+ * Address `[hidden]` styling not present in IE 8/9/10.
71
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
72
+ */
73
+ [hidden],
74
+ template {
75
+ display: none; }
76
+
77
+ /* Links
78
+ ========================================================================== */
79
+ /**
80
+ * Remove the gray background color from active links in IE 10.
81
+ */
82
+ a {
83
+ background: transparent; }
84
+
85
+ /**
86
+ * Improve readability when focused and also mouse hovered in all browsers.
87
+ */
88
+ a:active,
89
+ a:hover {
90
+ outline: 0; }
91
+
92
+ /* Text-level semantics
93
+ ========================================================================== */
94
+ /**
95
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
96
+ */
97
+ abbr[title] {
98
+ border-bottom: 1px dotted; }
99
+
100
+ /**
101
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
102
+ */
103
+ b,
104
+ strong {
105
+ font-weight: bold; }
106
+
107
+ /**
108
+ * Address styling not present in Safari and Chrome.
109
+ */
110
+ dfn {
111
+ font-style: italic; }
112
+
113
+ /**
114
+ * Address variable `h1` font-size and margin within `section` and `article`
115
+ * contexts in Firefox 4+, Safari, and Chrome.
116
+ */
117
+ h1 {
118
+ font-size: 2em;
119
+ margin: 0.67em 0; }
120
+
121
+ /**
122
+ * Address styling not present in IE 8/9.
123
+ */
124
+ mark {
125
+ background: #ff0;
126
+ color: #000; }
127
+
128
+ /**
129
+ * Address inconsistent and variable font size in all browsers.
130
+ */
131
+ small {
132
+ font-size: 80%; }
133
+
134
+ /**
135
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
136
+ */
137
+ sub,
138
+ sup {
139
+ font-size: 75%;
140
+ line-height: 0;
141
+ position: relative;
142
+ vertical-align: baseline; }
143
+
144
+ sup {
145
+ top: -0.5em; }
146
+
147
+ sub {
148
+ bottom: -0.25em; }
149
+
150
+ /* Embedded content
151
+ ========================================================================== */
152
+ /**
153
+ * Remove border when inside `a` element in IE 8/9/10.
154
+ */
155
+ img {
156
+ border: 0; }
157
+
158
+ /**
159
+ * Correct overflow not hidden in IE 9/10/11.
160
+ */
161
+ svg:not(:root) {
162
+ overflow: hidden; }
163
+
164
+ /* Grouping content
165
+ ========================================================================== */
166
+ /**
167
+ * Address margin not present in IE 8/9 and Safari.
168
+ */
169
+ figure {
170
+ margin: 1em 40px; }
171
+
172
+ /**
173
+ * Address differences between Firefox and other browsers.
174
+ */
175
+ hr {
176
+ -moz-box-sizing: content-box;
177
+ box-sizing: content-box;
178
+ height: 0; }
179
+
180
+ /**
181
+ * Contain overflow in all browsers.
182
+ */
183
+ pre {
184
+ overflow: auto; }
185
+
186
+ /**
187
+ * Address odd `em`-unit font size rendering in all browsers.
188
+ */
189
+ code,
190
+ kbd,
191
+ pre,
192
+ samp {
193
+ font-family: monospace, monospace;
194
+ font-size: 1em; }
195
+
196
+ /* Forms
197
+ ========================================================================== */
198
+ /**
199
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
200
+ * styling of `select`, unless a `border` property is set.
201
+ */
202
+ /**
203
+ * 1. Correct color not being inherited.
204
+ * Known issue: affects color of disabled elements.
205
+ * 2. Correct font properties not being inherited.
206
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
207
+ */
208
+ button,
209
+ input,
210
+ optgroup,
211
+ select,
212
+ textarea {
213
+ color: inherit;
214
+ /* 1 */
215
+ font: inherit;
216
+ /* 2 */
217
+ margin: 0;
218
+ /* 3 */ }
219
+
220
+ /**
221
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
222
+ */
223
+ button {
224
+ overflow: visible; }
225
+
226
+ /**
227
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
228
+ * All other form control elements do not inherit `text-transform` values.
229
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
230
+ * Correct `select` style inheritance in Firefox.
231
+ */
232
+ button,
233
+ select {
234
+ text-transform: none; }
235
+
236
+ /**
237
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
238
+ * and `video` controls.
239
+ * 2. Correct inability to style clickable `input` types in iOS.
240
+ * 3. Improve usability and consistency of cursor style between image-type
241
+ * `input` and others.
242
+ */
243
+ button,
244
+ html input[type="button"],
245
+ input[type="reset"],
246
+ input[type="submit"] {
247
+ -webkit-appearance: button;
248
+ /* 2 */
249
+ cursor: pointer;
250
+ /* 3 */ }
251
+
252
+ /**
253
+ * Re-set default cursor for disabled elements.
254
+ */
255
+ button[disabled],
256
+ html input[disabled] {
257
+ cursor: default; }
258
+
259
+ /**
260
+ * Remove inner padding and border in Firefox 4+.
261
+ */
262
+ button::-moz-focus-inner,
263
+ input::-moz-focus-inner {
264
+ border: 0;
265
+ padding: 0; }
266
+
267
+ /**
268
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
269
+ * the UA stylesheet.
270
+ */
271
+ input {
272
+ line-height: normal; }
273
+
274
+ /**
275
+ * It's recommended that you don't attempt to style these elements.
276
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
277
+ *
278
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
279
+ * 2. Remove excess padding in IE 8/9/10.
280
+ */
281
+ input[type="checkbox"],
282
+ input[type="radio"] {
283
+ box-sizing: border-box;
284
+ /* 1 */
285
+ padding: 0;
286
+ /* 2 */ }
287
+
288
+ /**
289
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
290
+ * `font-size` values of the `input`, it causes the cursor style of the
291
+ * decrement button to change from `default` to `text`.
292
+ */
293
+ input[type="number"]::-webkit-inner-spin-button,
294
+ input[type="number"]::-webkit-outer-spin-button {
295
+ height: auto; }
296
+
297
+ /**
298
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
299
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
300
+ * (include `-moz` to future-proof).
301
+ */
302
+ input[type="search"] {
303
+ -webkit-appearance: textfield;
304
+ /* 1 */
305
+ -moz-box-sizing: content-box;
306
+ -webkit-box-sizing: content-box;
307
+ /* 2 */
308
+ box-sizing: content-box; }
309
+
310
+ /**
311
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
312
+ * Safari (but not Chrome) clips the cancel button when the search input has
313
+ * padding (and `textfield` appearance).
314
+ */
315
+ input[type="search"]::-webkit-search-cancel-button,
316
+ input[type="search"]::-webkit-search-decoration {
317
+ -webkit-appearance: none; }
318
+
319
+ /**
320
+ * Define consistent border, margin, and padding.
321
+ */
322
+ fieldset {
323
+ border: 1px solid silver;
324
+ margin: 0 2px;
325
+ padding: 0.35em 0.625em 0.75em; }
326
+
327
+ /**
328
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
329
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
330
+ */
331
+ legend {
332
+ border: 0;
333
+ /* 1 */
334
+ padding: 0;
335
+ /* 2 */ }
336
+
337
+ /**
338
+ * Remove default vertical scrollbar in IE 8/9/10/11.
339
+ */
340
+ textarea {
341
+ overflow: auto; }
342
+
343
+ /**
344
+ * Don't inherit the `font-weight` (applied by a rule above).
345
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
346
+ */
347
+ optgroup {
348
+ font-weight: bold; }
349
+
350
+ /* Tables
351
+ ========================================================================== */
352
+ /**
353
+ * Remove most spacing between table cells.
354
+ */
355
+ table {
356
+ border-collapse: collapse;
357
+ border-spacing: 0; }
358
+
359
+ td,
360
+ th {
361
+ padding: 0; }
362
+
363
+ * {
364
+ box-sizing: border-box; }
365
+
366
+ input,
367
+ select,
368
+ textarea,
369
+ button {
370
+ font: 13px/1.4 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
371
+
372
+ body {
373
+ font: 13px/1.4 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
374
+ color: #333333;
375
+ background-color: #fff; }
376
+
377
+ a {
378
+ color: #4183c4;
379
+ text-decoration: none; }
380
+ a:hover, a:active {
381
+ text-decoration: underline; }
382
+
383
+ hr,
384
+ .rule {
385
+ height: 0;
386
+ margin: 15px 0;
387
+ overflow: hidden;
388
+ background: transparent;
389
+ border: 0;
390
+ border-bottom: 1px solid #dddddd; }
391
+ hr:before,
392
+ .rule:before {
393
+ display: table;
394
+ content: ""; }
395
+ hr:after,
396
+ .rule:after {
397
+ display: table;
398
+ clear: both;
399
+ content: ""; }
400
+
401
+ h1,
402
+ h2,
403
+ h3,
404
+ h4,
405
+ h5,
406
+ h6 {
407
+ margin-top: 15px;
408
+ margin-bottom: 15px;
409
+ line-height: 1.1; }
410
+
411
+ h1 {
412
+ font-size: 30px; }
413
+
414
+ h2 {
415
+ font-size: 21px; }
416
+
417
+ h3 {
418
+ font-size: 16px; }
419
+
420
+ h4 {
421
+ font-size: 14px; }
422
+
423
+ h5 {
424
+ font-size: 12px; }
425
+
426
+ h6 {
427
+ font-size: 11px; }
428
+
429
+ small {
430
+ font-size: 90%; }
431
+
432
+ blockquote {
433
+ margin: 0; }
434
+
435
+ .lead {
436
+ margin-bottom: 30px;
437
+ font-size: 20px;
438
+ font-weight: 300;
439
+ color: #555; }
440
+
441
+ .text-muted {
442
+ color: #999; }
443
+
444
+ .text-danger {
445
+ color: #bd2c00; }
446
+
447
+ .text-emphasized {
448
+ font-weight: bold;
449
+ color: #333; }
450
+
451
+ ul,
452
+ ol {
453
+ padding: 0;
454
+ margin-top: 0;
455
+ margin-bottom: 0; }
456
+
457
+ ol ol,
458
+ ul ol {
459
+ list-style-type: lower-roman; }
460
+
461
+ ul ul ol,
462
+ ul ol ol,
463
+ ol ul ol,
464
+ ol ol ol {
465
+ list-style-type: lower-alpha; }
466
+
467
+ dd {
468
+ margin-left: 0; }
469
+
470
+ tt,
471
+ code {
472
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
473
+ font-size: 12px; }
474
+
475
+ pre {
476
+ margin-top: 0;
477
+ margin-bottom: 0;
478
+ font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace; }
479
+
480
+ .container {
481
+ width: 980px;
482
+ margin-right: auto;
483
+ margin-left: auto; }
484
+ .container:before {
485
+ display: table;
486
+ content: ""; }
487
+ .container:after {
488
+ display: table;
489
+ clear: both;
490
+ content: ""; }
491
+
492
+ .columns {
493
+ margin-right: -10px;
494
+ margin-left: -10px; }
495
+ .columns:before {
496
+ display: table;
497
+ content: ""; }
498
+ .columns:after {
499
+ display: table;
500
+ clear: both;
501
+ content: ""; }
502
+
503
+ .column {
504
+ float: left;
505
+ padding-right: 10px;
506
+ padding-left: 10px; }
507
+
508
+ .one-third {
509
+ width: 33.333333%; }
510
+
511
+ .two-thirds {
512
+ width: 66.666667%; }
513
+
514
+ .one-fourth {
515
+ width: 25%; }
516
+
517
+ .one-half {
518
+ width: 50%; }
519
+
520
+ .three-fourths {
521
+ width: 75%; }
522
+
523
+ .one-fifth {
524
+ width: 20%; }
525
+
526
+ .four-fifths {
527
+ width: 80%; }
528
+
529
+ .single-column {
530
+ padding-right: 10px;
531
+ padding-left: 10px; }
532
+
533
+ .table-column {
534
+ display: table-cell;
535
+ width: 1%;
536
+ padding-right: 10px;
537
+ padding-left: 10px;
538
+ vertical-align: top; }
539
+
540
+ fieldset {
541
+ padding: 0;
542
+ margin: 0;
543
+ border: 0; }
544
+
545
+ label {
546
+ font-size: 13px;
547
+ font-weight: bold; }
548
+
549
+ .form-control,
550
+ input[type="text"],
551
+ input[type="password"],
552
+ input[type="email"],
553
+ input[type="number"],
554
+ input[type="tel"],
555
+ input[type="url"],
556
+ textarea {
557
+ min-height: 34px;
558
+ padding: 7px 8px;
559
+ font-size: 13px;
560
+ color: #333;
561
+ vertical-align: middle;
562
+ background-color: #fff;
563
+ background-repeat: no-repeat;
564
+ background-position: right center;
565
+ border: 1px solid #cccccc;
566
+ border-radius: 3px;
567
+ outline: none;
568
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); }
569
+ .form-control.focus, .form-control:focus,
570
+ input[type="text"].focus,
571
+ input[type="text"]:focus,
572
+ .focused .drag-and-drop,
573
+ input[type="password"].focus,
574
+ input[type="password"]:focus,
575
+ input[type="email"].focus,
576
+ input[type="email"]:focus,
577
+ input[type="number"].focus,
578
+ input[type="number"]:focus,
579
+ input[type="tel"].focus,
580
+ input[type="tel"]:focus,
581
+ input[type="url"].focus,
582
+ input[type="url"]:focus,
583
+ textarea.focus,
584
+ textarea:focus {
585
+ border-color: #51a7e8;
586
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5); }
587
+
588
+ input.input-contrast,
589
+ .input-contrast {
590
+ background-color: #fafafa; }
591
+ input.input-contrast:focus,
592
+ .input-contrast:focus {
593
+ background-color: #fff; }
594
+
595
+ ::-webkit-input-placeholder,
596
+ :-moz-placeholder {
597
+ color: #aaa; }
598
+
599
+ ::-webkit-validation-bubble-message {
600
+ font-size: 12px;
601
+ color: #fff;
602
+ background: #9c2400;
603
+ border: 0;
604
+ border-radius: 3px;
605
+ -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
606
+
607
+ input::-webkit-validation-bubble-icon {
608
+ display: none; }
609
+
610
+ ::-webkit-validation-bubble-arrow {
611
+ background-color: #9c2400;
612
+ border: solid 1px #9c2400;
613
+ -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
614
+
615
+ input.input-mini {
616
+ min-height: 26px;
617
+ padding-top: 4px;
618
+ padding-bottom: 4px;
619
+ font-size: 12px; }
620
+
621
+ input.input-large {
622
+ padding: 6px 10px;
623
+ font-size: 16px; }
624
+
625
+ .input-block {
626
+ display: block;
627
+ width: 100%; }
628
+
629
+ .input-monospace {
630
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; }
631
+
632
+ dl.form {
633
+ margin: 15px 0; }
634
+ dl.form input[type="text"],
635
+ dl.form input[type="password"],
636
+ dl.form input[type="email"],
637
+ dl.form input[type="url"],
638
+ dl.form textarea {
639
+ background-color: #fafafa; }
640
+ dl.form input[type="text"]:focus, dl.form .focused .drag-and-drop, .focused dl.form .drag-and-drop,
641
+ dl.form input[type="password"]:focus,
642
+ dl.form input[type="email"]:focus,
643
+ dl.form input[type="url"]:focus,
644
+ dl.form textarea:focus {
645
+ background-color: #fff; }
646
+ dl.form > dt {
647
+ margin: 0 0 6px; }
648
+ dl.form > dt label {
649
+ position: relative; }
650
+ dl.form.flattened > dt {
651
+ float: left;
652
+ margin: 0;
653
+ line-height: 32px; }
654
+ dl.form.flattened > dd {
655
+ line-height: 32px; }
656
+ dl.form > dd input[type="text"],
657
+ dl.form > dd input[type="password"],
658
+ dl.form > dd input[type="email"],
659
+ dl.form > dd input[type="url"] {
660
+ width: 440px;
661
+ max-width: 100%;
662
+ margin-right: 5px;
663
+ background-position-x: 98%; }
664
+ dl.form > dd input.shorter {
665
+ width: 130px; }
666
+ dl.form > dd input.short {
667
+ width: 250px; }
668
+ dl.form > dd input.long {
669
+ width: 100%; }
670
+ dl.form > dd textarea {
671
+ width: 100%;
672
+ height: 200px;
673
+ min-height: 200px; }
674
+ dl.form > dd textarea.short {
675
+ height: 50px;
676
+ min-height: 50px; }
677
+ dl.form > dd h4 {
678
+ margin: 4px 0 0; }
679
+ dl.form > dd h4.is-error {
680
+ color: #bd2c00; }
681
+ dl.form > dd h4.is-success {
682
+ color: #6cc644; }
683
+ dl.form > dd h4 + p.note {
684
+ margin-top: 0; }
685
+ dl.form.required > dt > label:after {
686
+ padding-left: 5px;
687
+ color: #9f1006;
688
+ content: "*"; }
689
+
690
+ .note {
691
+ min-height: 17px;
692
+ margin: 4px 0 2px;
693
+ font-size: 12px;
694
+ color: #777; }
695
+ .note .spinner {
696
+ margin-right: 3px;
697
+ vertical-align: middle; }
698
+
699
+ .form-checkbox {
700
+ padding-left: 20px;
701
+ margin: 15px 0;
702
+ vertical-align: middle; }
703
+ .form-checkbox label em.highlight {
704
+ position: relative;
705
+ left: -4px;
706
+ padding: 2px 4px;
707
+ font-style: normal;
708
+ background: #fffbdc;
709
+ border-radius: 3px; }
710
+ .form-checkbox input[type=checkbox],
711
+ .form-checkbox input[type=radio] {
712
+ float: left;
713
+ margin: 2px 0 0 -20px;
714
+ vertical-align: middle; }
715
+ .form-checkbox .note {
716
+ display: block;
717
+ margin: 0;
718
+ font-size: 12px;
719
+ font-weight: normal;
720
+ color: #666; }
721
+
722
+ dl.form .success,
723
+ dl.form .error,
724
+ dl.form .indicator {
725
+ display: none;
726
+ font-size: 12px;
727
+ font-weight: bold; }
728
+ dl.form.loading {
729
+ opacity: 0.5; }
730
+ dl.form.loading .indicator {
731
+ display: inline; }
732
+ dl.form.loading .spinner {
733
+ display: inline-block;
734
+ vertical-align: middle; }
735
+ dl.form.successful .success {
736
+ display: inline;
737
+ color: #390; }
738
+ dl.form.errored > dt label {
739
+ color: #900; }
740
+ dl.form.errored .error {
741
+ display: inline;
742
+ color: #900; }
743
+ dl.form.errored dd.error,
744
+ dl.form.errored dd.warning {
745
+ display: inline-block;
746
+ padding: 5px;
747
+ font-size: 11px;
748
+ color: #494620;
749
+ background: #f7ea57;
750
+ border: 1px solid #c0b536;
751
+ border-top-color: #fff;
752
+ border-bottom-right-radius: 3px;
753
+ border-bottom-left-radius: 3px; }
754
+ dl.form.warn .warning {
755
+ display: inline;
756
+ color: #900; }
757
+ dl.form.warn dd.warning {
758
+ display: inline-block;
759
+ padding: 5px;
760
+ font-size: 11px;
761
+ color: #494620;
762
+ background: #f7ea57;
763
+ border: 1px solid #c0b536;
764
+ border-top-color: #fff;
765
+ border-bottom-right-radius: 3px;
766
+ border-bottom-left-radius: 3px; }
767
+ dl.form .form-note {
768
+ display: inline-block;
769
+ padding: 5px;
770
+ margin-top: -1px;
771
+ font-size: 11px;
772
+ color: #494620;
773
+ background: #f7ea57;
774
+ border: 1px solid #c0b536;
775
+ border-top-color: #fff;
776
+ border-bottom-right-radius: 3px;
777
+ border-bottom-left-radius: 3px; }
778
+
779
+ .hfields {
780
+ margin: 15px 0; }
781
+ .hfields:before {
782
+ display: table;
783
+ content: ""; }
784
+ .hfields:after {
785
+ display: table;
786
+ clear: both;
787
+ content: ""; }
788
+ .hfields dl.form {
789
+ float: left;
790
+ margin: 0 30px 0 0; }
791
+ .hfields dl.form > dt label {
792
+ display: inline-block;
793
+ margin: 5px 0 0;
794
+ color: #666; }
795
+ .hfields dl.form > dt label img {
796
+ position: relative;
797
+ top: -2px; }
798
+ .hfields .btn {
799
+ float: left;
800
+ margin: 28px 25px 0 -20px; }
801
+ .hfields select {
802
+ margin-top: 5px; }
803
+
804
+ html.no-dnd-uploads .drag-and-drop {
805
+ min-height: 32px; }
806
+ html.no-dnd-uploads .drag-and-drop .default {
807
+ display: none; }
808
+ html.no-dnd-uploads .upload-enabled textarea {
809
+ border-bottom: 1px solid #dddddd; }
810
+
811
+ .drag-and-drop {
812
+ padding: 7px 10px;
813
+ margin: 0;
814
+ font-size: 13px;
815
+ line-height: 16px;
816
+ color: #aaa;
817
+ background-color: #fafafa;
818
+ border: 1px solid #cccccc;
819
+ border-top: 0;
820
+ border-bottom-right-radius: 3px;
821
+ border-bottom-left-radius: 3px; }
822
+ .drag-and-drop .default,
823
+ .drag-and-drop .loading,
824
+ .drag-and-drop .error {
825
+ display: none; }
826
+ .drag-and-drop .error {
827
+ color: #bd2c00; }
828
+ .drag-and-drop img {
829
+ vertical-align: top; }
830
+
831
+ .is-default .drag-and-drop .default {
832
+ display: inline-block; }
833
+
834
+ .is-uploading .drag-and-drop .loading {
835
+ display: inline-block; }
836
+
837
+ .is-bad-file .drag-and-drop .bad-file {
838
+ display: inline-block; }
839
+
840
+ .is-too-big .drag-and-drop .too-big {
841
+ display: inline-block; }
842
+
843
+ .is-empty .drag-and-drop .empty {
844
+ display: inline-block; }
845
+
846
+ .is-bad-browser .drag-and-drop .bad-browser {
847
+ display: inline-block; }
848
+
849
+ .drag-and-drop-error-info {
850
+ font-weight: normal;
851
+ color: #aaa; }
852
+ .drag-and-drop-error-info a {
853
+ color: #4183c4; }
854
+
855
+ .is-failed .drag-and-drop .failed-request {
856
+ display: inline-block; }
857
+
858
+ .manual-file-chooser {
859
+ position: absolute;
860
+ width: 240px;
861
+ padding: 5px;
862
+ margin-left: -80px;
863
+ cursor: pointer;
864
+ opacity: 0.0001; }
865
+
866
+ .manual-file-chooser:hover + .manual-file-chooser-text {
867
+ text-decoration: underline; }
868
+
869
+ .btn .manual-file-chooser {
870
+ top: 0;
871
+ padding: 0;
872
+ line-height: 34px; }
873
+
874
+ .upload-enabled textarea {
875
+ display: block;
876
+ border-bottom: 1px dashed #dddddd;
877
+ border-bottom-right-radius: 0;
878
+ border-bottom-left-radius: 0; }
879
+
880
+ .focused .drag-and-drop {
881
+ box-shadow: rgba(81, 167, 232, 0.5) 0 0 3px; }
882
+
883
+ .dragover textarea,
884
+ .dragover .drag-and-drop {
885
+ box-shadow: #c9ff00 0 0 3px; }
886
+
887
+ .previewable-comment-form {
888
+ position: relative; }
889
+ .previewable-comment-form .tabnav {
890
+ position: relative;
891
+ padding: 10px 10px 0; }
892
+ .previewable-comment-form .comment {
893
+ border: 1px solid #cacaca; }
894
+ .previewable-comment-form .comment-header .comment-header-actions {
895
+ display: none; }
896
+ .previewable-comment-form .comment-form-error {
897
+ margin-bottom: 10px; }
898
+ .previewable-comment-form .write-content,
899
+ .previewable-comment-form .preview-content {
900
+ display: none;
901
+ padding: 0 10px 10px; }
902
+ .previewable-comment-form.write-selected .write-content, .previewable-comment-form.preview-selected .preview-content {
903
+ display: block; }
904
+ .previewable-comment-form textarea {
905
+ display: block;
906
+ width: 100%;
907
+ min-height: 100px;
908
+ max-height: 500px;
909
+ padding: 10px;
910
+ resize: vertical; }
911
+ .previewable-comment-form textarea.fullscreen-contents:focus {
912
+ border: 0;
913
+ box-shadow: none; }
914
+
915
+ div.composer {
916
+ margin-top: 0;
917
+ border: 0; }
918
+
919
+ .composer .comment-form-textarea {
920
+ height: 200px;
921
+ min-height: 200px; }
922
+
923
+ .composer-infobar {
924
+ height: 35px;
925
+ padding: 0 10px;
926
+ margin-bottom: 10px;
927
+ border-bottom: 1px solid #eeeeee; }
928
+
929
+ .composer .tabnav {
930
+ margin: 0 0 10px; }
931
+
932
+ .infobar-widget.milestone {
933
+ position: relative;
934
+ float: right; }
935
+ .infobar-widget.milestone .select-menu-modal-holder {
936
+ right: 0; }
937
+ .infobar-widget.assignee {
938
+ float: left; }
939
+ .infobar-widget.assignee .css-truncate-target {
940
+ max-width: 110px; }
941
+ .infobar-widget .text,
942
+ .infobar-widget .avatar,
943
+ .infobar-widget .select-menu {
944
+ display: inline-block;
945
+ vertical-align: top; }
946
+ .infobar-widget .text {
947
+ margin-top: 3px; }
948
+ .infobar-widget .text a {
949
+ font-weight: bold;
950
+ color: #333; }
951
+ .infobar-widget .progress-bar {
952
+ width: 200px;
953
+ overflow: hidden;
954
+ line-height: 18px; }
955
+
956
+ input::-webkit-outer-spin-button,
957
+ input::-webkit-inner-spin-button {
958
+ margin: 0;
959
+ -webkit-appearance: none; }
960
+
961
+ .input-group {
962
+ display: table; }
963
+ .input-group input {
964
+ position: relative;
965
+ width: 100%; }
966
+ .input-group input:focus {
967
+ z-index: 2; }
968
+ .input-group input[type="text"] + .btn {
969
+ margin-left: 0; }
970
+ .input-group.inline {
971
+ display: inline-table; }
972
+
973
+ .input-group input,
974
+ .input-group-button {
975
+ display: table-cell; }
976
+
977
+ .input-group-button {
978
+ width: 1%;
979
+ vertical-align: middle; }
980
+
981
+ .input-group input:first-child,
982
+ .input-group-button:first-child .btn {
983
+ border-top-right-radius: 0;
984
+ border-bottom-right-radius: 0; }
985
+
986
+ .input-group-button:first-child .btn {
987
+ margin-right: -1px; }
988
+
989
+ .input-group input:last-child,
990
+ .input-group-button:last-child .btn {
991
+ border-top-left-radius: 0;
992
+ border-bottom-left-radius: 0; }
993
+
994
+ .input-group-button:last-child .btn {
995
+ margin-left: -1px; }
996
+
997
+ h2.account {
998
+ margin: 15px 0 0;
999
+ font-size: 18px;
1000
+ font-weight: normal;
1001
+ color: #666; }
1002
+
1003
+ p.explain {
1004
+ position: relative;
1005
+ font-size: 12px;
1006
+ color: #666; }
1007
+ p.explain strong {
1008
+ color: #333; }
1009
+ p.explain .octicon {
1010
+ margin-right: 5px;
1011
+ color: #bbb; }
1012
+ p.explain .minibutton {
1013
+ top: -4px;
1014
+ float: right; }
1015
+
1016
+ .options-content p.explain {
1017
+ padding: 10px 10px 0;
1018
+ margin-top: 0;
1019
+ border-top: 1px solid #dddddd; }
1020
+
1021
+ .form-actions:before {
1022
+ display: table;
1023
+ content: ""; }
1024
+ .form-actions:after {
1025
+ display: table;
1026
+ clear: both;
1027
+ content: ""; }
1028
+ .form-actions .btn {
1029
+ float: right; }
1030
+ .form-actions .btn + .btn {
1031
+ margin-right: 5px; }
1032
+
1033
+ .form-warning {
1034
+ padding: 8px 10px;
1035
+ margin: 10px 0;
1036
+ font-size: 14px;
1037
+ color: #333;
1038
+ background: #ffffe2;
1039
+ border: 1px solid #e7e4c2;
1040
+ border-radius: 4px; }
1041
+ .form-warning p {
1042
+ margin: 0;
1043
+ line-height: 1.5; }
1044
+ .form-warning strong {
1045
+ color: #000; }
1046
+ .form-warning a {
1047
+ font-weight: bold; }
1048
+
1049
+ .status-indicator {
1050
+ font: normal normal 16px/1 "octicons";
1051
+ display: inline-block;
1052
+ text-decoration: none;
1053
+ -webkit-font-smoothing: antialiased;
1054
+ margin-left: 5px; }
1055
+
1056
+ .status-indicator-success:before {
1057
+ color: #6cc644;
1058
+ content: "\f03a"; }
1059
+
1060
+ .status-indicator-failed:before {
1061
+ color: #bd2c00;
1062
+ content: "\f02d"; }
1063
+
1064
+ .clearfix:before {
1065
+ display: table;
1066
+ content: ""; }
1067
+ .clearfix:after {
1068
+ display: table;
1069
+ clear: both;
1070
+ content: ""; }
1071
+
1072
+ .right {
1073
+ float: right; }
1074
+
1075
+ .left {
1076
+ float: left; }
1077
+
1078
+ .text-right {
1079
+ text-align: right; }
1080
+
1081
+ .text-left {
1082
+ text-align: left; }
1083
+
1084
+ .danger {
1085
+ color: #c00; }
1086
+
1087
+ .mute {
1088
+ color: #000; }
1089
+
1090
+ .text-diff-added {
1091
+ color: #55a532; }
1092
+
1093
+ .text-diff-deleted {
1094
+ color: #bd2c00; }
1095
+
1096
+ .text-open,
1097
+ .text-success {
1098
+ color: #6cc644; }
1099
+
1100
+ .text-closed {
1101
+ color: #bd2c00; }
1102
+
1103
+ .text-reverted {
1104
+ color: #bd2c00; }
1105
+
1106
+ .text-merged {
1107
+ color: #6e5494; }
1108
+
1109
+ .text-renamed {
1110
+ color: #fffa5d; }
1111
+
1112
+ .text-pending {
1113
+ color: #cea61b; }
1114
+
1115
+ .text-error,
1116
+ .text-failure {
1117
+ color: #bd2c00; }
1118
+
1119
+ .muted-link {
1120
+ color: #777; }
1121
+ .muted-link:hover {
1122
+ color: #4183c4;
1123
+ text-decoration: none; }
1124
+
1125
+ .hidden {
1126
+ display: none; }
1127
+
1128
+ .warning {
1129
+ padding: 0.5em;
1130
+ margin-bottom: 0.8em;
1131
+ font-weight: bold;
1132
+ background-color: #fffccc; }
1133
+
1134
+ .error_box {
1135
+ padding: 1em;
1136
+ font-weight: bold;
1137
+ background-color: #ffebe8;
1138
+ border: 1px solid #dd3c10; }
1139
+
1140
+ .flash-messages {
1141
+ margin-top: 15px;
1142
+ margin-bottom: 15px; }
1143
+
1144
+ .flash,
1145
+ .flash-global {
1146
+ position: relative;
1147
+ font-size: 14px;
1148
+ line-height: 1.6;
1149
+ color: #246;
1150
+ background-color: #e2eef9;
1151
+ border: solid 1px #bac6d3; }
1152
+ .flash.flash-warn,
1153
+ .flash-global.flash-warn {
1154
+ color: #4c4a42;
1155
+ background-color: #fff9ea;
1156
+ border-color: #dfd8c2; }
1157
+ .flash.flash-error,
1158
+ .flash-global.flash-error {
1159
+ color: #911;
1160
+ background-color: #fcdede;
1161
+ border-color: #d2b2b2; }
1162
+ .flash .flash-close,
1163
+ .flash-global .flash-close {
1164
+ float: right;
1165
+ padding: 17px;
1166
+ margin-top: -15px;
1167
+ margin-right: -15px;
1168
+ margin-left: 20px;
1169
+ color: inherit;
1170
+ text-decoration: none;
1171
+ cursor: pointer;
1172
+ opacity: 0.6; }
1173
+ .flash .flash-close:hover,
1174
+ .flash-global .flash-close:hover {
1175
+ opacity: 1; }
1176
+ .flash p:last-child,
1177
+ .flash-global p:last-child {
1178
+ margin-bottom: 0; }
1179
+ .flash .flash-action,
1180
+ .flash-global .flash-action {
1181
+ float: right;
1182
+ margin-top: -4px;
1183
+ margin-left: 20px; }
1184
+ .flash a,
1185
+ .flash-global a {
1186
+ font-weight: bold; }
1187
+
1188
+ .flash {
1189
+ padding: 15px;
1190
+ border-radius: 3px; }
1191
+ .flash + .flash {
1192
+ margin-top: 5px; }
1193
+
1194
+ .flash-with-icon {
1195
+ padding-left: 40px; }
1196
+ .flash-with-icon > .octicon {
1197
+ float: left;
1198
+ margin-top: 3px;
1199
+ margin-left: -25px; }
1200
+
1201
+ .flash-global {
1202
+ padding: 10px;
1203
+ margin-top: -1px;
1204
+ border-width: 1px 0; }
1205
+ .flash-global h2,
1206
+ .flash-global p {
1207
+ margin-top: 0;
1208
+ margin-bottom: 0;
1209
+ font-size: 14px;
1210
+ line-height: 1.4; }
1211
+ .flash-global .flash-action {
1212
+ margin-top: 5px; }
1213
+
1214
+ .flash-title {
1215
+ margin-top: 0;
1216
+ margin-bottom: 5px; }
1217
+
1218
+ .avatar {
1219
+ display: inline-block;
1220
+ overflow: hidden;
1221
+ line-height: 1;
1222
+ vertical-align: middle;
1223
+ border-radius: 3px; }
1224
+
1225
+ .avatar-small {
1226
+ border-radius: 2px; }
1227
+
1228
+ .avatar-link {
1229
+ float: left;
1230
+ line-height: 1; }
1231
+
1232
+ .avatar-group-item {
1233
+ display: inline-block;
1234
+ margin-bottom: 3px; }
1235
+
1236
+ .avatar-parent-child {
1237
+ position: relative; }
1238
+
1239
+ .avatar-child {
1240
+ position: absolute;
1241
+ right: -15%;
1242
+ bottom: -9%;
1243
+ border-radius: 2px;
1244
+ box-shadow: -2px -2px 0 rgba(255, 255, 255, 0.8); }
1245
+
1246
+ .blankslate {
1247
+ position: relative;
1248
+ padding: 30px;
1249
+ text-align: center;
1250
+ background-color: #fafafa;
1251
+ border: 1px solid #e5e5e5;
1252
+ border-radius: 3px;
1253
+ box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05); }
1254
+ .blankslate.clean-background {
1255
+ background: none;
1256
+ border: 0;
1257
+ box-shadow: none; }
1258
+ .blankslate.capped {
1259
+ border-radius: 0 0 3px 3px; }
1260
+ .blankslate.spacious {
1261
+ padding: 100px 60px 120px; }
1262
+ .blankslate.has-fixed-width {
1263
+ width: 485px;
1264
+ margin: 0 auto; }
1265
+ .blankslate.large-format h3 {
1266
+ margin: 0.75em 0;
1267
+ font-size: 20px; }
1268
+ .blankslate.large-format p {
1269
+ font-size: 16px; }
1270
+ .blankslate.large-format p.has-fixed-width {
1271
+ width: 540px;
1272
+ margin: 0 auto;
1273
+ text-align: left; }
1274
+ .blankslate.large-format .mega-octicon {
1275
+ width: 40px;
1276
+ height: 40px;
1277
+ font-size: 40px;
1278
+ color: #aaa; }
1279
+ .blankslate.large-format .octicon-inbox {
1280
+ font-size: 48px;
1281
+ line-height: 40px; }
1282
+ .blankslate code {
1283
+ padding: 2px 5px 3px;
1284
+ font-size: 14px;
1285
+ background: #fff;
1286
+ border: 1px solid #eeeeee;
1287
+ border-radius: 3px; }
1288
+ .blankslate > .mega-octicon {
1289
+ color: #aaa; }
1290
+ .blankslate .mega-octicon + .mega-octicon {
1291
+ margin-left: 10px; }
1292
+ .tabnav + .blankslate {
1293
+ margin-top: 20px; }
1294
+ .blankslate .context-loader.large-format-loader {
1295
+ padding-top: 50px; }
1296
+
1297
+ .spinner-forking {
1298
+ display: block;
1299
+ margin: 20px auto 40px; }
1300
+
1301
+ .forking-repo {
1302
+ margin: 40px 0;
1303
+ text-align: center; }
1304
+ .forking-repo h3 {
1305
+ margin-bottom: 10px;
1306
+ font-size: 28px;
1307
+ font-weight: 300; }
1308
+ .forking-repo h4 {
1309
+ margin: 0 0 30px;
1310
+ font-size: 16px;
1311
+ font-weight: 300; }
1312
+
1313
+ .counter {
1314
+ display: inline-block;
1315
+ padding: 2px 5px;
1316
+ font-size: 11px;
1317
+ font-weight: bold;
1318
+ line-height: 1;
1319
+ color: #777;
1320
+ background-color: #eee;
1321
+ border-radius: 20px; }
1322
+
1323
+ .btn {
1324
+ position: relative;
1325
+ display: inline-block;
1326
+ padding: 6px 12px;
1327
+ font-size: 13px;
1328
+ font-weight: bold;
1329
+ line-height: 20px;
1330
+ color: #333;
1331
+ white-space: nowrap;
1332
+ vertical-align: middle;
1333
+ cursor: pointer;
1334
+ background-color: #eee;
1335
+ background-image: linear-gradient(#fcfcfc, #eeeeee);
1336
+ border: 1px solid #d5d5d5;
1337
+ border-radius: 3px;
1338
+ user-select: none;
1339
+ -webkit-appearance: none; }
1340
+ .btn i {
1341
+ font-style: normal;
1342
+ font-weight: 500;
1343
+ opacity: 0.6; }
1344
+ .btn .octicon {
1345
+ vertical-align: text-top; }
1346
+ .btn .counter {
1347
+ text-shadow: none;
1348
+ background-color: #e5e5e5; }
1349
+ .btn:focus {
1350
+ text-decoration: none;
1351
+ border-color: #51a7e8;
1352
+ outline: none;
1353
+ box-shadow: 0 0 5px rgba(81, 167, 232, 0.5); }
1354
+ .btn:hover, .btn:active, .btn.zeroclipboard-is-hover, .btn.zeroclipboard-is-active {
1355
+ text-decoration: none;
1356
+ background-color: #ddd;
1357
+ background-image: linear-gradient(#eeeeee, #dddddd);
1358
+ border-color: #ccc; }
1359
+ .btn:active, .btn.selected, .btn.selected:hover, .btn.zeroclipboard-is-active {
1360
+ background-color: #dcdcdc;
1361
+ background-image: none;
1362
+ border-color: #b5b5b5;
1363
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); }
1364
+ .btn:disabled, .btn:disabled:hover, .btn.disabled, .btn.disabled:hover {
1365
+ color: rgba(102, 102, 102, 0.5);
1366
+ cursor: default;
1367
+ background-color: rgba(229, 229, 229, 0.5);
1368
+ background-image: none;
1369
+ border-color: rgba(197, 197, 197, 0.5);
1370
+ box-shadow: none; }
1371
+
1372
+ .btn-primary {
1373
+ color: #fff;
1374
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
1375
+ background-color: #60b044;
1376
+ background-image: linear-gradient(#8add6d, #60b044);
1377
+ border-color: #5ca941; }
1378
+ .btn-primary .counter {
1379
+ color: #60b044;
1380
+ background-color: #fff; }
1381
+ .btn-primary:hover {
1382
+ color: #fff;
1383
+ background-color: #569e3d;
1384
+ background-image: linear-gradient(#79d858, #569e3d);
1385
+ border-color: #4a993e; }
1386
+ .btn-primary:active, .btn-primary.selected {
1387
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
1388
+ background-color: #569e3d;
1389
+ background-image: none;
1390
+ border-color: #418737; }
1391
+ .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary.disabled, .btn-primary.disabled:hover {
1392
+ color: #fefefe;
1393
+ background-color: #add39f;
1394
+ background-image: linear-gradient(#c3ecb4, #add39f);
1395
+ border-color: #b9dcac #b9dcac #a7c89b; }
1396
+
1397
+ .btn-danger {
1398
+ color: #900; }
1399
+ .btn-danger:hover {
1400
+ color: #fff;
1401
+ background-color: #b33630;
1402
+ background-image: linear-gradient(#dc5f59, #b33630);
1403
+ border-color: #cd504a; }
1404
+ .btn-danger:active, .btn-danger.selected {
1405
+ color: #fff;
1406
+ background-color: #b33630;
1407
+ background-image: none;
1408
+ border-color: #9f312c; }
1409
+ .btn-danger:disabled, .btn-danger:disabled:hover, .btn-danger.disabled, .btn-danger.disabled:hover {
1410
+ color: #cb7f7f;
1411
+ background-color: #efefef;
1412
+ background-image: linear-gradient(#fefefe, #efefef);
1413
+ border-color: #e1e1e1; }
1414
+ .btn-danger:hover .counter, .btn-danger:active .counter, .btn-danger.selected .counter {
1415
+ color: #b33630;
1416
+ background-color: #fff; }
1417
+
1418
+ .btn-outline {
1419
+ color: #4183c4;
1420
+ background-color: #fff;
1421
+ background-image: none;
1422
+ border: 1px solid #e5e5e5; }
1423
+ .btn-outline .counter {
1424
+ background-color: #eee; }
1425
+ .btn-outline:hover, .btn-outline:active, .btn-outline.selected, .btn-outline.selected:hover, .btn-outline.zeroclipboard-is-hover, .btn-outline.zeroclipboard-is-active {
1426
+ color: #fff;
1427
+ background-color: #4183c4;
1428
+ background-image: none;
1429
+ border-color: #4183c4; }
1430
+ .btn-outline:hover .counter, .btn-outline:active .counter, .btn-outline.selected .counter, .btn-outline.selected:hover .counter, .btn-outline.zeroclipboard-is-hover .counter, .btn-outline.zeroclipboard-is-active .counter {
1431
+ color: #4183c4;
1432
+ background-color: #fff; }
1433
+ .btn-outline:disabled, .btn-outline:disabled:hover, .btn-outline.disabled, .btn-outline.disabled:hover {
1434
+ color: #777;
1435
+ background-color: #fff;
1436
+ background-image: none;
1437
+ border-color: #e5e5e5; }
1438
+
1439
+ .btn-with-count {
1440
+ float: left;
1441
+ border-top-right-radius: 0;
1442
+ border-bottom-right-radius: 0; }
1443
+
1444
+ .btn-sm {
1445
+ padding: 2px 10px; }
1446
+
1447
+ .hidden-text-expander {
1448
+ display: block; }
1449
+ .hidden-text-expander.inline {
1450
+ position: relative;
1451
+ top: -1px;
1452
+ display: inline-block;
1453
+ margin-left: 5px;
1454
+ line-height: 0; }
1455
+ .hidden-text-expander a {
1456
+ display: inline-block;
1457
+ height: 12px;
1458
+ padding: 0 5px;
1459
+ font-size: 12px;
1460
+ font-weight: bold;
1461
+ line-height: 6px;
1462
+ color: #555;
1463
+ text-decoration: none;
1464
+ vertical-align: middle;
1465
+ background: #ddd;
1466
+ border-radius: 1px; }
1467
+ .hidden-text-expander a:hover {
1468
+ text-decoration: none;
1469
+ background-color: #ccc; }
1470
+ .hidden-text-expander a:active {
1471
+ color: #fff;
1472
+ background-color: #4183c4; }
1473
+
1474
+ .social-count {
1475
+ float: left;
1476
+ padding: 2px 7px;
1477
+ font-size: 11px;
1478
+ font-weight: bold;
1479
+ line-height: 20px;
1480
+ color: #333333;
1481
+ vertical-align: middle;
1482
+ background-color: #fff;
1483
+ border: 1px solid #dddddd;
1484
+ border-left: 0;
1485
+ border-top-right-radius: 3px;
1486
+ border-bottom-right-radius: 3px; }
1487
+ .social-count:hover, .social-count:active {
1488
+ text-decoration: none; }
1489
+ .social-count:hover {
1490
+ color: #4183c4;
1491
+ cursor: pointer; }
1492
+
1493
+ .btn-block {
1494
+ display: block;
1495
+ width: 100%;
1496
+ text-align: center; }
1497
+
1498
+ .btn-group {
1499
+ display: inline-block;
1500
+ vertical-align: middle; }
1501
+ .btn-group:before {
1502
+ display: table;
1503
+ content: ""; }
1504
+ .btn-group:after {
1505
+ display: table;
1506
+ clear: both;
1507
+ content: ""; }
1508
+ .btn-group .btn {
1509
+ position: relative;
1510
+ float: left; }
1511
+ .btn-group .btn:not(:first-child):not(:last-child) {
1512
+ border-radius: 0; }
1513
+ .btn-group .btn:first-child {
1514
+ border-top-right-radius: 0;
1515
+ border-bottom-right-radius: 0; }
1516
+ .btn-group .btn:last-child {
1517
+ border-top-left-radius: 0;
1518
+ border-bottom-left-radius: 0; }
1519
+ .btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active, .btn-group .btn.selected {
1520
+ z-index: 2; }
1521
+ .btn-group .btn + .btn {
1522
+ margin-left: -1px;
1523
+ box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.2); }
1524
+ .btn-group .btn + .btn:hover {
1525
+ box-shadow: none; }
1526
+ .btn-group .btn + .btn:active, .btn-group .btn + .btn.selected {
1527
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15); }
1528
+ .btn-group .button_to + .button_to {
1529
+ margin-left: -1px; }
1530
+ .btn-group .button_to {
1531
+ float: left; }
1532
+ .btn-group .button_to .btn {
1533
+ border-radius: 0; }
1534
+ .btn-group .button_to:first-child .btn {
1535
+ border-top-left-radius: 3px;
1536
+ border-bottom-left-radius: 3px; }
1537
+ .btn-group .button_to:last-child .btn {
1538
+ border-top-right-radius: 3px;
1539
+ border-bottom-right-radius: 3px; }
1540
+
1541
+ .btn-group + .btn-group,
1542
+ .btn-group + .btn {
1543
+ margin-left: 5px; }
1544
+
1545
+ .btn-link {
1546
+ display: inline-block;
1547
+ padding: 0;
1548
+ font-size: inherit;
1549
+ color: #4183c4;
1550
+ white-space: nowrap;
1551
+ cursor: pointer;
1552
+ background-color: transparent;
1553
+ border: 0;
1554
+ user-select: none;
1555
+ -webkit-appearance: none; }
1556
+ .btn-link:hover, .btn-link:focus {
1557
+ text-decoration: underline; }
1558
+ .btn-link:focus {
1559
+ outline: none; }
1560
+
1561
+ .menu {
1562
+ margin-bottom: 15px;
1563
+ list-style: none;
1564
+ background-color: #fff;
1565
+ border: 1px solid #d8d8d8;
1566
+ border-radius: 3px; }
1567
+
1568
+ .menu-item {
1569
+ position: relative;
1570
+ display: block;
1571
+ padding: 8px 10px;
1572
+ text-shadow: 0 1px 0 white;
1573
+ border-bottom: 1px solid #eeeeee; }
1574
+ .menu-item:first-child {
1575
+ border-top: 0;
1576
+ border-top-right-radius: 2px;
1577
+ border-top-left-radius: 2px; }
1578
+ .menu-item:first-child:before {
1579
+ border-top-left-radius: 2px; }
1580
+ .menu-item:last-child {
1581
+ border-bottom: 0;
1582
+ border-bottom-right-radius: 2px;
1583
+ border-bottom-left-radius: 2px; }
1584
+ .menu-item:last-child:before {
1585
+ border-bottom-left-radius: 2px; }
1586
+ .menu-item:hover {
1587
+ text-decoration: none;
1588
+ background-color: #f9f9f9; }
1589
+ .menu-item.selected {
1590
+ font-weight: bold;
1591
+ color: #222;
1592
+ cursor: default;
1593
+ background-color: #fff; }
1594
+ .menu-item.selected:before {
1595
+ position: absolute;
1596
+ top: 0;
1597
+ left: 0;
1598
+ bottom: 0;
1599
+ width: 2px;
1600
+ content: "";
1601
+ background-color: #d26911; }
1602
+ .menu-item .octicon {
1603
+ margin-right: 5px;
1604
+ width: 16px;
1605
+ color: #333333;
1606
+ text-align: center; }
1607
+ .menu-item .counter {
1608
+ float: right;
1609
+ margin-left: 5px; }
1610
+ .menu-item .menu-warning {
1611
+ float: right;
1612
+ color: #d26911; }
1613
+ .menu-item .avatar {
1614
+ float: left;
1615
+ margin-right: 5px; }
1616
+ .menu-item.alert .counter {
1617
+ color: #bd2c00; }
1618
+
1619
+ .menu-heading {
1620
+ display: block;
1621
+ padding: 8px 10px;
1622
+ margin-top: 0;
1623
+ margin-bottom: 0;
1624
+ font-size: 13px;
1625
+ font-weight: bold;
1626
+ line-height: 20px;
1627
+ color: #555;
1628
+ background-color: #f7f7f7;
1629
+ border-bottom: 1px solid #eeeeee; }
1630
+ .menu-heading:hover {
1631
+ text-decoration: none; }
1632
+ .menu-heading:first-child {
1633
+ border-top-right-radius: 2px;
1634
+ border-top-left-radius: 2px; }
1635
+ .menu-heading:last-child {
1636
+ border-bottom-right-radius: 2px;
1637
+ border-bottom-left-radius: 2px;
1638
+ border-bottom: 0; }
1639
+
1640
+ .tabnav {
1641
+ margin-top: 0;
1642
+ margin-bottom: 15px;
1643
+ border-bottom: 1px solid #dddddd; }
1644
+ .tabnav .counter {
1645
+ margin-left: 5px; }
1646
+
1647
+ .tabnav-tabs {
1648
+ margin-bottom: -1px; }
1649
+
1650
+ .tabnav-tab {
1651
+ display: inline-block;
1652
+ padding: 8px 12px;
1653
+ font-size: 14px;
1654
+ line-height: 20px;
1655
+ color: #666;
1656
+ text-decoration: none;
1657
+ border: 1px solid transparent;
1658
+ border-bottom: 0; }
1659
+ .tabnav-tab.selected {
1660
+ color: #333;
1661
+ background-color: #fff;
1662
+ border-color: #ddd;
1663
+ border-radius: 3px 3px 0 0; }
1664
+ .tabnav-tab:hover {
1665
+ text-decoration: none; }
1666
+
1667
+ .tabnav-extra {
1668
+ display: inline-block;
1669
+ padding-top: 10px;
1670
+ margin-left: 10px;
1671
+ font-size: 12px;
1672
+ color: #666; }
1673
+ .tabnav-extra > .octicon {
1674
+ margin-right: 2px; }
1675
+
1676
+ a.tabnav-extra:hover {
1677
+ color: #4183c4;
1678
+ text-decoration: none; }
1679
+
1680
+ .tabnav-btn {
1681
+ margin-left: 10px; }
1682
+
1683
+ .filter-list {
1684
+ list-style-type: none; }
1685
+ .filter-list.small .filter-item {
1686
+ padding: 4px 10px;
1687
+ margin: 0 0 2px;
1688
+ font-size: 12px; }
1689
+ .filter-list.pjax-active .filter-item {
1690
+ color: #777;
1691
+ background-color: transparent; }
1692
+ .filter-list.pjax-active .filter-item.pjax-active {
1693
+ color: #fff;
1694
+ background-color: #4183c4; }
1695
+
1696
+ .filter-item {
1697
+ position: relative;
1698
+ display: block;
1699
+ padding: 8px 10px;
1700
+ margin-bottom: 5px;
1701
+ overflow: hidden;
1702
+ font-size: 14px;
1703
+ color: #777;
1704
+ text-decoration: none;
1705
+ text-overflow: ellipsis;
1706
+ white-space: nowrap;
1707
+ cursor: pointer;
1708
+ border-radius: 3px; }
1709
+ .filter-item:hover {
1710
+ text-decoration: none;
1711
+ background-color: #eee; }
1712
+ .filter-item.selected {
1713
+ color: #fff;
1714
+ background-color: #4183c4; }
1715
+ .filter-item.selected .octicon-remove-close {
1716
+ float: right;
1717
+ opacity: 0.8; }
1718
+ .filter-item .count {
1719
+ float: right;
1720
+ font-weight: bold; }
1721
+ .filter-item .bar {
1722
+ position: absolute;
1723
+ top: 2px;
1724
+ right: 0;
1725
+ bottom: 2px;
1726
+ z-index: -1;
1727
+ display: inline-block;
1728
+ background-color: #f1f1f1; }
1729
+
1730
+ .state {
1731
+ display: inline-block;
1732
+ padding: 4px 8px;
1733
+ font-weight: bold;
1734
+ line-height: 20px;
1735
+ color: #fff;
1736
+ text-align: center;
1737
+ border-radius: 3px;
1738
+ background-color: #999; }
1739
+
1740
+ .state-open,
1741
+ .state-proposed,
1742
+ .state-reopened {
1743
+ background-color: #6cc644; }
1744
+
1745
+ .state-merged {
1746
+ background-color: #6e5494; }
1747
+
1748
+ .state-closed {
1749
+ background-color: #bd2c00; }
1750
+
1751
+ .state-renamed {
1752
+ background-color: #fffa5d; }
1753
+
1754
+ .tooltipped {
1755
+ position: relative; }
1756
+
1757
+ .tooltipped:after {
1758
+ position: absolute;
1759
+ z-index: 1000000;
1760
+ display: none;
1761
+ padding: 5px 8px;
1762
+ font: normal normal 11px/1.5 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
1763
+ color: white;
1764
+ text-align: center;
1765
+ text-decoration: none;
1766
+ text-shadow: none;
1767
+ text-transform: none;
1768
+ letter-spacing: normal;
1769
+ word-wrap: break-word;
1770
+ white-space: pre;
1771
+ pointer-events: none;
1772
+ content: attr(aria-label);
1773
+ background: rgba(0, 0, 0, 0.8);
1774
+ border-radius: 3px;
1775
+ -webkit-font-smoothing: subpixel-antialiased; }
1776
+
1777
+ .tooltipped:before {
1778
+ position: absolute;
1779
+ z-index: 1000001;
1780
+ display: none;
1781
+ width: 0;
1782
+ height: 0;
1783
+ color: rgba(0, 0, 0, 0.8);
1784
+ pointer-events: none;
1785
+ content: "";
1786
+ border: 5px solid transparent; }
1787
+
1788
+ .tooltipped:hover:before, .tooltipped:hover:after,
1789
+ .tooltipped:active:before,
1790
+ .tooltipped:active:after,
1791
+ .tooltipped:focus:before,
1792
+ .tooltipped:focus:after {
1793
+ display: inline-block;
1794
+ text-decoration: none; }
1795
+
1796
+ .tooltipped-multiline:hover:after,
1797
+ .tooltipped-multiline:active:after,
1798
+ .tooltipped-multiline:focus:after {
1799
+ display: table-cell; }
1800
+
1801
+ .tooltipped-s:after,
1802
+ .tooltipped-se:after,
1803
+ .tooltipped-sw:after {
1804
+ top: 100%;
1805
+ right: 50%;
1806
+ margin-top: 5px; }
1807
+ .tooltipped-s:before,
1808
+ .tooltipped-se:before,
1809
+ .tooltipped-sw:before {
1810
+ top: auto;
1811
+ right: 50%;
1812
+ bottom: -5px;
1813
+ margin-right: -5px;
1814
+ border-bottom-color: rgba(0, 0, 0, 0.8); }
1815
+
1816
+ .tooltipped-se:after {
1817
+ right: auto;
1818
+ left: 50%;
1819
+ margin-left: -15px; }
1820
+
1821
+ .tooltipped-sw:after {
1822
+ margin-right: -15px; }
1823
+
1824
+ .tooltipped-n:after,
1825
+ .tooltipped-ne:after,
1826
+ .tooltipped-nw:after {
1827
+ right: 50%;
1828
+ bottom: 100%;
1829
+ margin-bottom: 5px; }
1830
+ .tooltipped-n:before,
1831
+ .tooltipped-ne:before,
1832
+ .tooltipped-nw:before {
1833
+ top: -5px;
1834
+ right: 50%;
1835
+ bottom: auto;
1836
+ margin-right: -5px;
1837
+ border-top-color: rgba(0, 0, 0, 0.8); }
1838
+
1839
+ .tooltipped-ne:after {
1840
+ right: auto;
1841
+ left: 50%;
1842
+ margin-left: -15px; }
1843
+
1844
+ .tooltipped-nw:after {
1845
+ margin-right: -15px; }
1846
+
1847
+ .tooltipped-s:after,
1848
+ .tooltipped-n:after {
1849
+ transform: translateX(50%); }
1850
+
1851
+ .tooltipped-w:after {
1852
+ right: 100%;
1853
+ bottom: 50%;
1854
+ margin-right: 5px;
1855
+ transform: translateY(50%); }
1856
+ .tooltipped-w:before {
1857
+ top: 50%;
1858
+ bottom: 50%;
1859
+ left: -5px;
1860
+ margin-top: -5px;
1861
+ border-left-color: rgba(0, 0, 0, 0.8); }
1862
+
1863
+ .tooltipped-e:after {
1864
+ bottom: 50%;
1865
+ left: 100%;
1866
+ margin-left: 5px;
1867
+ transform: translateY(50%); }
1868
+ .tooltipped-e:before {
1869
+ top: 50%;
1870
+ right: -5px;
1871
+ bottom: 50%;
1872
+ margin-top: -5px;
1873
+ border-right-color: rgba(0, 0, 0, 0.8); }
1874
+
1875
+ .tooltipped-multiline:after {
1876
+ width: -moz-max-content;
1877
+ width: -webkit-max-content;
1878
+ max-width: 250px;
1879
+ word-break: break-word;
1880
+ word-wrap: normal;
1881
+ white-space: pre-line;
1882
+ border-collapse: separate; }
1883
+ .tooltipped-multiline.tooltipped-s:after, .tooltipped-multiline.tooltipped-n:after {
1884
+ right: auto;
1885
+ left: 50%;
1886
+ transform: translateX(-50%); }
1887
+ .tooltipped-multiline.tooltipped-w:after, .tooltipped-multiline.tooltipped-e:after {
1888
+ right: 100%; }
1889
+
1890
+ @media screen and (min-width: 0 \0) {
1891
+ .tooltipped-multiline:after {
1892
+ width: 250px; } }
1893
+ .tooltipped-sticky:before, .tooltipped-sticky:after {
1894
+ display: inline-block; }
1895
+ .tooltipped-sticky.tooltipped-multiline:after {
1896
+ display: table-cell; }
1897
+
1898
+ .fullscreen-overlay-enabled.dark-theme .tooltipped:after {
1899
+ color: black;
1900
+ background: rgba(255, 255, 255, 0.8); }
1901
+ .fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before,
1902
+ .fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before,
1903
+ .fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before {
1904
+ border-bottom-color: rgba(255, 255, 255, 0.8); }
1905
+ .fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before, .fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before, .fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before {
1906
+ border-top-color: rgba(255, 255, 255, 0.8); }
1907
+ .fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before {
1908
+ border-right-color: rgba(255, 255, 255, 0.8); }
1909
+ .fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before {
1910
+ border-left-color: rgba(255, 255, 255, 0.8); }
1911
+
1912
+ .flex-table {
1913
+ display: table; }
1914
+
1915
+ .flex-table-item {
1916
+ display: table-cell;
1917
+ width: 1%;
1918
+ white-space: nowrap;
1919
+ vertical-align: middle; }
1920
+
1921
+ .flex-table-item-primary {
1922
+ width: 99%; }
1923
+
1924
+ .css-truncate.css-truncate-target,
1925
+ .css-truncate .css-truncate-target {
1926
+ display: inline-block;
1927
+ max-width: 125px;
1928
+ overflow: hidden;
1929
+ text-overflow: ellipsis;
1930
+ white-space: nowrap;
1931
+ vertical-align: top; }
1932
+ .css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target, .css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target, .css-truncate.expandable:hover .css-truncate-target, .css-truncate.expandable:hover.css-truncate-target {
1933
+ max-width: 10000px !important; }