added v1 override styles to style v1 blockquoates as notes
parent
9257f25d9a
commit
f156570fe5
|
@ -0,0 +1,76 @@
|
||||||
|
body.v1{
|
||||||
|
.article .article--content {
|
||||||
|
blockquote {
|
||||||
|
padding: 1.65rem 2rem .1rem 2rem;
|
||||||
|
margin: 1rem 0 2rem;
|
||||||
|
border-width: 0 0 0 4px;
|
||||||
|
border-style: solid;
|
||||||
|
border-radius: 0 $radius $radius 0;
|
||||||
|
|
||||||
|
p,li {
|
||||||
|
font-size: .95rem;
|
||||||
|
font-style: inherit;
|
||||||
|
}
|
||||||
|
ul,ol {
|
||||||
|
&:last-child { margin-bottom: 1.85rem; }
|
||||||
|
}
|
||||||
|
|
||||||
|
border-color: $article-note-base;
|
||||||
|
background: rgba($article-note-base, .1);
|
||||||
|
h1,h2,h3,h4,h5,h6 {
|
||||||
|
color: $article-note-heading;
|
||||||
|
}
|
||||||
|
p, li {
|
||||||
|
color: $article-note-text;
|
||||||
|
}
|
||||||
|
strong {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: $article-note-link;
|
||||||
|
code:after {
|
||||||
|
border-color: transparent rgba($article-note-code, .35) transparent transparent;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
color: $article-note-link-hover;
|
||||||
|
code:after {
|
||||||
|
border-color: transparent $article-note-link-hover transparent transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ol li:before {
|
||||||
|
color: $article-note-text;
|
||||||
|
}
|
||||||
|
code, pre{
|
||||||
|
color: $article-note-code;
|
||||||
|
background: $article-note-code-bg;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
box-shadow: 1px 3px 10px $article-note-shadow;
|
||||||
|
}
|
||||||
|
table{
|
||||||
|
color: $article-note-text;
|
||||||
|
box-shadow: 1px 3px 10px $article-note-shadow;
|
||||||
|
thead{
|
||||||
|
@include gradient($article-note-table-header);
|
||||||
|
}
|
||||||
|
tr:nth-child(even) td {
|
||||||
|
background: $article-note-table-row-alt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
border-color: rgba($article-note-text, .25);
|
||||||
|
p { color: rgba($article-note-text, .6); }
|
||||||
|
}
|
||||||
|
.code-tabs-wrapper .code-tabs a {
|
||||||
|
background: transparent;
|
||||||
|
color: rgba($article-note-text, .5);
|
||||||
|
&:hover { color: rgba($article-note-text, 1); }
|
||||||
|
&.is-active {
|
||||||
|
color: rgba($article-note-text, 1);
|
||||||
|
background: $article-note-code-bg};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -23,4 +23,5 @@
|
||||||
"layouts/landing",
|
"layouts/landing",
|
||||||
"layouts/error-page",
|
"layouts/error-page",
|
||||||
"layouts/url-selector",
|
"layouts/url-selector",
|
||||||
"layouts/feature-callouts";
|
"layouts/feature-callouts",
|
||||||
|
"layouts/v1-overrides";
|
||||||
|
|
|
@ -12,9 +12,9 @@ When configured with a signed certificate, HTTPS can also verify the authenticit
|
||||||
|
|
||||||
This pages outlines how to set up HTTPS with InfluxDB Enterprise using either a signed or self-signed certificate.
|
This pages outlines how to set up HTTPS with InfluxDB Enterprise using either a signed or self-signed certificate.
|
||||||
|
|
||||||
<dt>
|
{{% warn %}}
|
||||||
InfluxData **strongly recommends** enabling HTTPS, especially if you plan on sending requests to InfluxDB Enterprise over a network.
|
InfluxData **strongly recommends** enabling HTTPS, especially if you plan on sending requests to InfluxDB Enterprise over a network.
|
||||||
</dt>
|
{{% /warn %}}
|
||||||
|
|
||||||
{{% note %}}
|
{{% note %}}
|
||||||
These steps have been tested on Debian-based Linux distributions.
|
These steps have been tested on Debian-based Linux distributions.
|
||||||
|
|
|
@ -12,9 +12,9 @@ When configured with a signed certificate, HTTPS can also verify the authenticit
|
||||||
|
|
||||||
This pages outlines how to set up HTTPS with InfluxDB Enterprise using either a signed or self-signed certificate.
|
This pages outlines how to set up HTTPS with InfluxDB Enterprise using either a signed or self-signed certificate.
|
||||||
|
|
||||||
<dt>
|
{{% warn %}}
|
||||||
InfluxData **strongly recommends** enabling HTTPS, especially if you plan on sending requests to InfluxDB Enterprise over a network.
|
InfluxData **strongly recommends** enabling HTTPS, especially if you plan on sending requests to InfluxDB Enterprise over a network.
|
||||||
</dt>
|
{{% /warn %}}
|
||||||
|
|
||||||
{{% note %}}
|
{{% note %}}
|
||||||
These steps have been tested on Debian-based Linux distributions.
|
These steps have been tested on Debian-based Linux distributions.
|
||||||
|
|
|
@ -29,5 +29,5 @@
|
||||||
|
|
||||||
<meta name="Copyright" content="InfluxData Inc." />
|
<meta name="Copyright" content="InfluxData Inc." />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class='{{if ne $product nil}}{{ $product }}{{ end }}{{ if in $currentVersion "v1" }} v1{{ end }}'>
|
||||||
{{ partial "header/google-analytics-body.html" }}
|
{{ partial "header/google-analytics-body.html" }}
|
||||||
|
|
Loading…
Reference in New Issue