Skip to content

Commit

Permalink
update docs css
Browse files Browse the repository at this point in the history
  • Loading branch information
John Brezovec committed Mar 4, 2024
1 parent 429d279 commit a82022b
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,5 @@ bin/
venv/
```

# built documentation
/docs/build/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2024 Seeq Corporation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
27 changes: 27 additions & 0 deletions addon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"identifier": "com.seeq.addon.spc-accelerator",
"name": "SPC Accelerator",
"description": "DESCRIPTION HERE",
"version": "0.1.0",
"license": "Apache 2.0",
"icon": "fa fa-wrench",
"maintainer": "Seeq Corporation",
"previews": [
"docs/source/_static/preview.png"
],
"elements": [
{
"name": "SPC Accelerator",
"identifier": "com.seeq.addon.spc-accelerator.ui",
"type": "AddOnTool",
"path": "add-on/add-on tools"
},
{
"name": "Run Rules",
"identifier": "com.seeq.addon.spc-accelerator.udf",
"type": "FormulaPackage",
"path": "add-on/udf"
}
]
}

Binary file removed docs/source/_static/Seeq_logo_darkBlue_sm.png
Binary file not shown.
8 changes: 8 additions & 0 deletions docs/source/_static/Seeq_logo_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 32 additions & 1 deletion docs/source/_static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,35 @@
*/

/* This line is theme specific - it includes the base theme CSS */
@import '../nature.css'; /* for Alabaster */
@import '../nature.css';
/* for Alabaster */

.wy-side-nav-search {
background-color: #081F2C;
}

.wy-nav-side {
background: #081F2C;
}

.wy-side-nav-search img.logo {
width: 50% !important;
}

.wy-menu.wy-menu-vertical span {
color: #00FA87
}

.wy-nav-content-wrap {
background: #fcfcfc;
}

.wy-menu-vertical a:active {
background-color: #00FA87 !important;
color: #081F2C !important;
}

.wy-menu-vertical a:hover {
background-color: #00FA87 !important;
color: #081F2C !important;
}
26 changes: 14 additions & 12 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,29 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'SPC Accelerator'
copyright = '2024, Seeq Corporation'
author = 'Chris Harp'
project = "SPC Accelerator"
copyright = "2024, Seeq Corporation"
author = "Chris Harp"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
'myst_parser'
]
extensions = ["myst_parser"]

templates_path = ['_templates']
templates_path = ["_templates"]
exclude_patterns = []



# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]

html_favicon = '_static/seeq-favicon.ico'
html_logo = '_static/Seeq_logo_darkBlue_sm.png'
html_favicon = "_static/seeq-favicon.ico"
html_logo = "_static/Seeq_logo_white.svg"

# CSS
html_css_files = [
"css/style.css",
]
2 changes: 1 addition & 1 deletion docs/source/license.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# License

Copyright [2024] [Seeq Corporation]
Copyright 2024 Seeq Corporation

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the
License. You may obtain a copy of the License at
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user_guide.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# User Guide

This is where you'll include basic information on how to use the addon
This is where you'll include basic information on how to use the addon.

0 comments on commit a82022b

Please sign in to comment.