Merge branch 'master' into bug/2903-wrong-font-for-error

This commit is contained in:
Kyle
2017-08-04 16:37:17 -07:00
committed by GitHub
60 changed files with 1281 additions and 165 deletions

View File

@@ -56,6 +56,11 @@
{
border-color: $color;
}
.tab-header .tab-item.active h4 span:after
{
background: $color;
}
}
@@ -126,6 +131,51 @@
border-radius: 4px;
box-shadow: 0 0 3px rgba(#000,.19);
.tab-header
{
display: flex;
flex: 1;
.tab-item
{
padding: 0 40px;
cursor: pointer;
&:first-of-type
{
padding: 0 40px 0 0;
}
&.active
{
h4
{
span
{
position: relative;
&:after
{
position: absolute;
bottom: -15px;
left: 50%;
width: 120%;
height: 4px;
content: '';
transform: translateX(-50%);
background: #888;
}
}
}
}
}
}
&.is-open
{
@@ -142,6 +192,8 @@
padding: 8px 20px;
min-height: 50px;
background: rgba(#fff,.8);
box-shadow: 0 1px 2px rgba(#000,.1);
@@ -154,6 +206,7 @@
align-items: center;
margin: 0;
margin-left: auto;
@include text_headline();
@@ -625,6 +678,17 @@
}
}
.renderedMarkdown {
p {
@include text_body();
margin-top: 0px;
margin-bottom: 0px;
}
}
.response-content-type {
padding-top: 1em;
}
@keyframes blinker
{