|
@@ -1434,11 +1434,6 @@ table > tbody > tr:hover > th {
|
|
|
* Alerts
|
|
|
**************************************************/
|
|
|
|
|
|
-div.alert {
|
|
|
- border-radius: 10px;
|
|
|
- margin-bottom: 1rem;
|
|
|
-}
|
|
|
-
|
|
|
div.alert p {
|
|
|
position: relative;
|
|
|
display: block;
|
|
@@ -1453,7 +1448,7 @@ div.alert p:first-child::before {
|
|
|
top: -0.5rem;
|
|
|
left: -2rem;
|
|
|
font-size: 1.5rem;
|
|
|
- color: #fff;
|
|
|
+ color: #209cee;
|
|
|
font-family: 'Font Awesome 5 Free';
|
|
|
font-weight: 900;
|
|
|
content: '\f05a';
|
|
@@ -1464,34 +1459,28 @@ div.alert p:first-child::before {
|
|
|
div.alert-warning p:first-child::before {
|
|
|
font-family: 'Font Awesome 5 Free';
|
|
|
font-weight: 900;
|
|
|
+ color: #ff3860;
|
|
|
content: '\f071';
|
|
|
}
|
|
|
|
|
|
div.alert a {
|
|
|
- color: rgba(255,255,255,0.9);
|
|
|
+ color: currentColor;
|
|
|
text-decoration: none;
|
|
|
- border-bottom: solid 1px #e4e4e4;
|
|
|
- transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
|
-}
|
|
|
-
|
|
|
-div.alert a:hover {
|
|
|
- border-bottom-color: transparent;
|
|
|
- color: rgba(255,255,255,0.5) !important;
|
|
|
+ border-bottom: solid 1px currentColor;
|
|
|
}
|
|
|
|
|
|
.alert-note {
|
|
|
- color: #fff;
|
|
|
- background-color: #03A9F4; /* Material LightBlue500 */
|
|
|
- border-color: #bce8f1;
|
|
|
+ color: #12537e;
|
|
|
+ background-color: #f6fbfe;
|
|
|
+ border-color: #209cee;
|
|
|
}
|
|
|
|
|
|
.alert-warning {
|
|
|
- color: #fff;
|
|
|
- background-color: #f44336; /* Material Red500 */
|
|
|
- border-color: #ebccd1;
|
|
|
+ color: #cd0930;
|
|
|
+ background-color: #fff5f7;
|
|
|
+ border-color: #ff3860;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/*************************************************
|
|
|
* Documentation layout
|
|
|
**************************************************/
|
|
@@ -1673,13 +1662,22 @@ div.alert a:hover {
|
|
|
|
|
|
/* Docs TOC nav. */
|
|
|
|
|
|
+.docs-toc-title {
|
|
|
+ color: #b5b5b5;
|
|
|
+ font-size: .875rem;
|
|
|
+ font-weight: 600;
|
|
|
+ padding-left: calc(1.5rem + 1px);
|
|
|
+ margin-bottom: .5rem;
|
|
|
+}
|
|
|
+
|
|
|
#TableOfContents {
|
|
|
padding-left: 0;
|
|
|
border-left: 1px solid #eee;
|
|
|
}
|
|
|
|
|
|
-#TableOfContents ul {
|
|
|
- padding-left: 1rem;
|
|
|
+#TableOfContents ul,
|
|
|
+ul.toc-top {
|
|
|
+ padding-left: 0;
|
|
|
}
|
|
|
|
|
|
#TableOfContents ul ul {
|
|
@@ -1690,13 +1688,16 @@ div.alert a:hover {
|
|
|
display: block;
|
|
|
}
|
|
|
|
|
|
-#TableOfContents li a {
|
|
|
+#TableOfContents li a,
|
|
|
+.toc-top li a {
|
|
|
display: block;
|
|
|
padding: .125rem 1.5rem;
|
|
|
color: #99979c;
|
|
|
+ font-size: 0.7rem;
|
|
|
}
|
|
|
|
|
|
-#TableOfContents li a:hover {
|
|
|
+#TableOfContents li a:hover,
|
|
|
+.toc-top li a:hover {
|
|
|
color: {{ .Get "primary" }};
|
|
|
text-decoration: none;
|
|
|
}
|