fix code climate popup overflow bug
This commit is contained in:
parent
9e7af7eaad
commit
6367f1882b
|
@ -15,7 +15,7 @@ $top-height: 55px
|
||||||
|
|
||||||
p
|
p
|
||||||
position: relative
|
position: relative
|
||||||
margin: 0
|
margin: auto
|
||||||
padding: 0
|
padding: 0
|
||||||
|
|
||||||
.arrow
|
.arrow
|
||||||
|
@ -92,7 +92,7 @@ $top-height: 55px
|
||||||
position: relative
|
position: relative
|
||||||
|
|
||||||
a,
|
a,
|
||||||
.navigation-handle span
|
.navigation-handle span:not(.sync-spinner)
|
||||||
display: block
|
display: block
|
||||||
color: #898989
|
color: #898989
|
||||||
border-bottom: solid 1px #eff0ec
|
border-bottom: solid 1px #eff0ec
|
||||||
|
@ -127,7 +127,7 @@ $top-height: 55px
|
||||||
margin-right: 0
|
margin-right: 0
|
||||||
|
|
||||||
a,
|
a,
|
||||||
.navigation-handle span
|
.navigation-handle span:not(.sync-spinner)
|
||||||
padding: 0 .2em
|
padding: 0 .2em
|
||||||
|
|
||||||
.navigation--profile
|
.navigation--profile
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
background-color: $cream-light
|
background-color: $cream-light
|
||||||
p
|
p
|
||||||
margin: 0
|
margin: 0
|
||||||
white-space: nowrap
|
|
||||||
.icon
|
.icon
|
||||||
vertical-align: middle
|
vertical-align: middle
|
||||||
.icon--lang
|
.icon--lang
|
||||||
|
@ -133,10 +132,6 @@
|
||||||
position: absolute
|
position: absolute
|
||||||
bottom: 0
|
bottom: 0
|
||||||
|
|
||||||
|
|
||||||
// repo header
|
|
||||||
.tile--repo
|
|
||||||
|
|
||||||
// build history etc
|
// build history etc
|
||||||
.tile--build
|
.tile--build
|
||||||
.tile-main
|
.tile-main
|
||||||
|
@ -151,10 +146,12 @@
|
||||||
&:after
|
&:after
|
||||||
@include fadeOut(right, -90deg, $cream-light)
|
@include fadeOut(right, -90deg, $cream-light)
|
||||||
@media #{$xlarge-up}
|
@media #{$xlarge-up}
|
||||||
@include grid-column(8)
|
@include grid-column(7)
|
||||||
.tile-additional
|
.tile-additional
|
||||||
|
p
|
||||||
|
white-space: nowrap
|
||||||
@media #{$xlarge-up}
|
@media #{$xlarge-up}
|
||||||
@include grid-column(4)
|
@include grid-column(5)
|
||||||
|
|
||||||
p.tile-single-line
|
p.tile-single-line
|
||||||
padding: .7em 0
|
padding: .7em 0
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
|
|
||||||
p
|
p
|
||||||
font-size: $font-size-normal
|
font-size: $font-size-normal
|
||||||
|
word-wrap: normal
|
||||||
|
|
||||||
pre
|
pre
|
||||||
background-color: $color-bg-pre
|
background-color: $color-bg-pre
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<p>
|
<p>
|
||||||
Integrating <a href="https://codeclimate.com">Code Climate's test coverage</a> reporting with your test
|
Integrating <a href="https://codeclimate.com">Code Climate's test coverage</a> reporting with your test
|
||||||
suite on Travis CI allows to track changes in coverage over time. If you haven't tried it out already, <a
|
suite on Travis CI allows to track changes in coverage over time. If you haven't tried it out already, <a
|
||||||
{{bind-attr href=config.codeClimateUrl}}" target="_blank">sign
|
{{bind-attr href="config.codeClimateUrl"}} target="_blank">sign
|
||||||
up today</a> to improve your code's quality. New customers get 20% off for the first three months!
|
up today</a> to improve your code's quality. New customers get 20% off for the first three months!
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -17,14 +17,14 @@
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
<li>
|
<li>
|
||||||
Add the `code-climate-reporter` gem to your Gemfile:<br/>
|
<p>Add the `code-climate-reporter` gem to your Gemfile:</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
gem "codeclimate-test-reporter", group: :test, require: nil
|
gem "codeclimate-test-reporter", group: :test, require: nil
|
||||||
</pre>
|
</pre>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Load the reporter in your `test_helper` or `spec_helper`, putting it at the very top:
|
<p>Load the reporter in your `test_helper` or `spec_helper`, putting it at the very top:</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
require "codeclimate-test-reporter"
|
require "codeclimate-test-reporter"
|
||||||
|
@ -32,7 +32,7 @@ CodeClimate::TestReporter.start
|
||||||
</pre>
|
</pre>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Add the Code Climate token to your .travis.yml:
|
<p>Add the Code Climate token to your .travis.yml:</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
addons:
|
addons:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user