improvement: Move inline styles to SCSS instead (#5578)

* fix: convert propStyle to propClass
This commit is contained in:
tomdegoede
2020-06-11 01:39:48 +02:00
committed by GitHub
parent 67627d7587
commit fc3ed30f3d
30 changed files with 282 additions and 70 deletions

View File

@@ -419,6 +419,19 @@
}
}
.filter, .download-url-wrapper
{
.failed
{
color: red;
}
.loading
{
color: #aaa;
}
}
.model-example {
margin-top: 1em;
}
@@ -553,6 +566,11 @@
@include text_body();
}
.curl
{
white-space: normal;
}
}
.response-col_status
@@ -583,6 +601,16 @@
@include text_code($response-col-links-font-color);
}
.operation-link
{
margin-bottom: 1.5em;
.description
{
margin-bottom: 0.5em;
}
}
}
.opblock-body
@@ -793,6 +821,35 @@
}
}
.hidden
{
display: none;
}
.no-margin
{
height: auto;
border: none;
margin: 0;
padding: 0;
}
.float-right
{
float: right;
}
img.full-width
{
width: 100%;
}
.svg-assets
{
position: absolute;
width: 0;
height: 0;
}
section
{
@@ -815,6 +872,12 @@ a.nostyle {
}
}
.fallback
{
padding: 1em;
color: #aaa;
}
.version-pragma {
height: 100%;
padding: 5em 0px;
@@ -841,3 +904,27 @@ a.nostyle {
}
}
}
.opblock-link
{
font-weight: normal;
&.shown
{
font-weight: bold;
}
}
span
{
&.token-string
{
color: #555;
}
&.token-not-formatted
{
color: #555;
font-weight: bold;
}
}