mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Set theme config
This commit is contained in:
parent
25bbbf10dd
commit
8d31440349
BIN
custom_theme/img/favicon.ico
Normal file
BIN
custom_theme/img/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
10
custom_theme/main.html
Normal file
10
custom_theme/main.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block footer %}
|
||||
<div role="contentinfo">
|
||||
<!-- Copyright etc -->
|
||||
{% if config.copyright %}
|
||||
<p>{{ config.copyright }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
20
docs/css/extra.css
Normal file
20
docs/css/extra.css
Normal file
@ -0,0 +1,20 @@
|
||||
/* https://stackoverflow.com/questions/23211695/modifying-content-width-of-the-sphinx-theme-read-the-docs
|
||||
|
||||
and https://github.com/readthedocs/sphinx_rtd_theme/issues/295
|
||||
|
||||
*/
|
||||
.wy-nav-content {
|
||||
max-width: none !important;
|
||||
}
|
||||
|
||||
|
||||
/* and fix wrap bug per https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html */
|
||||
.wy-table-responsive table td {
|
||||
/* !important prevents the common CSS stylesheets from overriding
|
||||
this as on RTD they are loaded after this stylesheet */
|
||||
white-space: normal !important;
|
||||
}
|
||||
|
||||
.wy-table-responsive {
|
||||
overflow: visible !important;
|
||||
}
|
||||
BIN
docs/img/favicon.ico
Normal file
BIN
docs/img/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
21
docs/img/lens-logo-icon.svg
Normal file
21
docs/img/lens-logo-icon.svg
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{fill:#3D90CE;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<rect y="0" class="st0" width="512" height="512"/>
|
||||
<rect x="16" y="16" class="st1" width="480" height="480"/>
|
||||
<g>
|
||||
<path class="st2" d="M242.6,426h130.9l-30.2-128.7L242.6,426z"/>
|
||||
<path class="st2" d="M86,352.5V426h137.6l57.5-73.5H86z"/>
|
||||
<path class="st2" d="M273.1,167L426,241.4v-148L273.1,167z"/>
|
||||
<path class="st2" d="M388.9,426H426V258l-86.4-42.1L388.9,426z"/>
|
||||
<path class="st2" d="M406.9,86H216.4l-23,102.7L406.9,86z"/>
|
||||
<path class="st2" d="M86,195.1v142.5h113.3L86,195.1z"/>
|
||||
<path class="st2" d="M201.1,86H86v85.1l75,94.3L201.1,86z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 999 B |
19
mkdocs.yml
19
mkdocs.yml
@ -1,12 +1,21 @@
|
||||
site_name: Test docs
|
||||
site_description: 'A docs test'
|
||||
site_author: ''
|
||||
site_name: Lens Extensions
|
||||
site_description: Lens Extensions Documentation for Lens IDE. The only system you’ll ever need to take control of your Kubernetes clusters. It's open source and free. Download it today!
|
||||
site_author: Mirantis, Inc.
|
||||
site_url: https://docs.k8slens.dev
|
||||
docs_dir: docs/
|
||||
repo_name: 'lensapp/lens'
|
||||
repo_url: 'https://github.com/lensapp/lens'
|
||||
repo_name: GitHub
|
||||
repo_url: https://github.com/lensapp/lens
|
||||
copyright: Copyright © 2020 <a href="https://mirantis.com/">Mirantis Inc.</a> - All rights reserved.
|
||||
edit_uri: ""
|
||||
nav:
|
||||
- Overview: index.md
|
||||
- Get Started:
|
||||
- Your First Extension: your_first_extension.md
|
||||
theme:
|
||||
name: 'readthedocs'
|
||||
highlightjs: true
|
||||
language: 'en'
|
||||
custom_dir: custom_theme
|
||||
|
||||
extra_css:
|
||||
- css/extra.css
|
||||
Loading…
Reference in New Issue
Block a user