Docs X theme
This commit is contained in:
parent
4698207431
commit
27455f29e0
|
@ -10,6 +10,15 @@ a {
|
||||||
color: #005ec3;
|
color: #005ec3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Navbar */
|
||||||
|
.navbar-nav-svg {
|
||||||
|
display: inline-block;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
vertical-align: text-top;
|
||||||
|
color: rgba(255,255,255,.5);
|
||||||
|
}
|
||||||
|
|
||||||
/* Toc */
|
/* Toc */
|
||||||
#toc {
|
#toc {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -17,6 +26,7 @@ a {
|
||||||
margin: 0 0 0.5em 0.5em;
|
margin: 0 0 0.5em 0.5em;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#toc ul {
|
#toc ul {
|
||||||
|
@ -106,7 +116,37 @@ code {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
empty-cells: show;
|
||||||
|
border: 1px solid #cbcbcb;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead {
|
||||||
|
background-color: #e0e0e0;
|
||||||
|
color: #000;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
display: table-row;
|
||||||
|
vertical-align: inherit;
|
||||||
|
border-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* Footer */
|
/* Footer */
|
||||||
|
footer {
|
||||||
|
border-top: 1px solid #ccc;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 10px 0;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
/* Sidebar */
|
/* Sidebar */
|
||||||
.sidebar {
|
.sidebar {
|
||||||
|
|
|
@ -36,9 +36,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p class="pull-left">
|
<p class="m-0 text-right text-black text-uppercase"><?php echo $site->footer(); ?><span class="ml-3 text-warning">Powered by <a target="_blank" class="text-warning" href="https://www.bludit.com">Bludit</a></span></p>
|
||||||
© Prometheus Authors 2018
|
|
||||||
</p>
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -57,12 +55,17 @@
|
||||||
<!-- TOC generator -->
|
<!-- TOC generator -->
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
var enableToc = false;
|
||||||
if ($('#page-content > h2').length > 1) {
|
if ($('#page-content > h2').length > 1) {
|
||||||
$('#page-content > h2').each(function() {
|
$('#page-content > h2').each(function() {
|
||||||
$('#toc-content').append('<li><a href="' + $(this).attr('id') + '">' + $(this).text() + '</a></li>');
|
if ($(this).attr('id')) {
|
||||||
|
enableToc = true;
|
||||||
|
$('#toc-content').append('<li><a href="#' + $(this).attr('id') + '">' + $(this).text() + '</a></li>');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
} else {
|
}
|
||||||
$('#toc').hide();
|
if (enableToc) {
|
||||||
|
$('#toc').show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<?php echo Theme::css('css/highlight.github.min.css'); ?>
|
<?php echo Theme::css('css/highlight.github.min.css'); ?>
|
||||||
|
|
||||||
<!-- Google Fonts -->
|
<!-- Google Fonts -->
|
||||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
<!-- Load Bludit Plugins: Site head -->
|
<!-- Load Bludit Plugins: Site head -->
|
||||||
<?php Theme::plugins('siteHead'); ?>
|
<?php Theme::plugins('siteHead'); ?>
|
|
@ -1,4 +1,4 @@
|
||||||
<nav class="navbar navbar-static-top bg-dark">
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark text-uppercase">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="<?php echo $site->url() ?>">
|
<a class="navbar-brand" href="<?php echo $site->url() ?>">
|
||||||
<span class="text-white"><?php echo $site->title() ?></span>
|
<span class="text-white"><?php echo $site->title() ?></span>
|
||||||
|
|
Loading…
Reference in New Issue