Skip to content

Commit

Permalink
fix mobile doc nav bar color (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
ITProKyle authored Dec 8, 2019
1 parent 17951bf commit 7c1f448
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .markdownlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
default: true
MD013: false # line-length
MD024: false # no-duplicate-heading/no-duplicate-header
11 changes: 10 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintEnabled": true,
"python.pythonPath": "python3",
"python.pythonPath": ".venv/bin/python",
"python.formatting.provider": "autopep8",
"yaml.customTags": [
"!Equals sequence",
Expand All @@ -37,18 +37,21 @@
"cSpell.words": [
"DHCP",
"ENIs",
"Emph",
"GUID",
"MSYSTEM",
"VPCID",
"WSLENV",
"amazonaws",
"antialiased",
"applicationlb",
"asadmin",
"authn",
"awscli",
"awslabs",
"awslambda",
"awsrun",
"backref",
"basepath",
"bitbucket",
"boto",
Expand Down Expand Up @@ -78,9 +81,12 @@
"deregistered",
"deregistering",
"deregisters",
"descclassname",
"descname",
"devops",
"distro",
"dockerignore",
"docutils",
"dotnetcore",
"dynamodb",
"elasticache",
Expand Down Expand Up @@ -108,6 +114,7 @@
"kwarg",
"labelmaker",
"lifecycle",
"linenodiv",
"loadtest",
"mailto",
"maint",
Expand Down Expand Up @@ -140,6 +147,7 @@
"preuninstall",
"provisioners",
"pydocstyle",
"pygment",
"pygments",
"pyhcl",
"pyinstaller",
Expand Down Expand Up @@ -172,6 +180,7 @@
"submodules",
"subnet",
"subnets",
"subpixel",
"sysprep",
"systemctl",
"systemd",
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.4.0] - 2019-12-7
## [0.4.1] - 2019-12-08

### Changed

- color of nav arrows in the docs to be more appropriate for a "dark mode" theme
- color of links will be the same whether they have been visited or not
- markdown lint error `MD024 no-duplicate-heading/no-duplicate-header` is ignored

### Fixed

- doc nav bar color on mobile

## [0.4.0] - 2019-12-07

### Added

Expand Down
19 changes: 8 additions & 11 deletions docs/source/_static/css/rtd_dark.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
a:visited {
color: #bf84d8;
a, a:visited {
color: #C776DF !important;
}

blockquote {
Expand All @@ -26,30 +26,27 @@ code.docutils {
color: grey !important;
}

.wy-nav-content-wrap {
.wy-nav-content-wrap, .wy-nav-side, .wy-nav-top {
background-color: #181a1f !important;
}

.wy-nav-side {
.btn-neutral, .fa-arrow-circle-right, .fa-arrow-circle-left {
color: aliceblue !important;
background-color: #181a1f !important;
}

.sidebar {
background-color: #21252b !important;
.btn-neutral:visited {
color: aliceblue !important;
}

.sidebar-title {
.admonition, .note, .sidebar-title {
background-color: #21252b !important;
}

.xref, .py-meth {
color: #7ec3e6 !important;
}

.admonition, .note {
background-color: #21252b !important;
}

.wy-side-nav-search {
background-color: inherit;
border-bottom: 1px solid #b9b9b9;
Expand Down
46 changes: 46 additions & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2019-12-7

### Added

- [ReadTheDocs](https://readthedocs.org) starter
- custom _"dark mode"_ css
- custom "One Dark" syntax highlighting

### Changed

- `test.yaml` workflow is now `default.yaml`
- workflow was also renamed to `Test => Build => Deploy`
- python tests now only run in the `src/` directory instead of the entire repo

## [0.3.0] - 2019-11-30

### Changed

- moved pipenv virtual environment into the project with the `make sync` command and exportable `.env` file
- `.env` is not tracked in the repo
- updated runway pin to `~=1.2`
- ran `pipenv update --dev` to update all packages

### Fixed

- Makefile directives

## [0.2.0] - 2019-09-02

### Added

- label.json file for configuring repo labels using `git-labelmaker`
- issue and pull request templates

## [0.1.0] - 2019-09-01

- initial release of module

0 comments on commit 7c1f448

Please sign in to comment.