diff options
author | Ian Lewis <ianmlewis@gmail.com> | 2019-04-17 14:43:35 -0400 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2019-04-23 11:51:39 +0900 |
commit | c010346c76457ed89b658e6030dd597cc5d6dcca (patch) | |
tree | c59c4a5b010b95eae46625e0127f4554d48631a5 /themes/docsy/assets | |
parent | 45028bdd82ca3f54d8bb0e99330b1bab6e64cb78 (diff) |
Updated docsy to HEAD
- Docsy has support for the _styles_project.scss file now so we don't need
to override main.scss anymore.
- Docsy doc edit links now work for non-multilingual sites so we don't
need to override page-meta-links.html anymore.
Diffstat (limited to 'themes/docsy/assets')
-rw-r--r-- | themes/docsy/assets/scss/_styles_project.scss | 7 | ||||
-rw-r--r-- | themes/docsy/assets/scss/_variables_project.scss | 4 | ||||
-rw-r--r-- | themes/docsy/assets/scss/main.scss | 4 |
3 files changed, 12 insertions, 3 deletions
diff --git a/themes/docsy/assets/scss/_styles_project.scss b/themes/docsy/assets/scss/_styles_project.scss new file mode 100644 index 000000000..ab68a8844 --- /dev/null +++ b/themes/docsy/assets/scss/_styles_project.scss @@ -0,0 +1,7 @@ +/* + +Nothing defined here. The Hugo project that uses this theme can override Bootstrap by adding a file to: + +assets/scss/_styles_project.scss + +*/ diff --git a/themes/docsy/assets/scss/_variables_project.scss b/themes/docsy/assets/scss/_variables_project.scss index 69ee04629..387082dca 100644 --- a/themes/docsy/assets/scss/_variables_project.scss +++ b/themes/docsy/assets/scss/_variables_project.scss @@ -1,7 +1,7 @@ /* -Nothing defined here. The Hugo project that uses this theme can override Bootstrap and theme variables by adding a file to: +Nothing defined here. The Hugo project that uses this theme can override theme variables by adding a file to: assets/scss/_variables_project.scss -*/
\ No newline at end of file +*/ diff --git a/themes/docsy/assets/scss/main.scss b/themes/docsy/assets/scss/main.scss index 909935b4d..66c036c7b 100644 --- a/themes/docsy/assets/scss/main.scss +++ b/themes/docsy/assets/scss/main.scss @@ -53,4 +53,6 @@ footer { height: 5rem; visibility: hidden; } -}
\ No newline at end of file +} + +@import "styles_project"; |