This is an automated email from the ASF dual-hosted git repository. djencks pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/aries-antora-ui.git
commit 4f5c70325b139ab8a7b5d4ffe17b93de41cb7593 Author: David Jencks <[email protected]> AuthorDate: Wed Aug 12 17:17:36 2020 -0700 Use svg logo from Ray Auge, shorten footer text --- build/aries-antora-ui-bundle.zip | Bin 280565 -> 275250 bytes src/css/aries-header.css | 3 +++ src/css/aries-vars.css | 3 ++- src/css/site.css | 1 + src/img/Arieslogo_Horizontal.gif | Bin 6029 -> 0 bytes src/img/ram.svg | 4 ++++ src/partials/footer-content.hbs | 4 +--- src/partials/header-content.hbs | 2 +- 8 files changed, 12 insertions(+), 5 deletions(-) diff --git a/build/aries-antora-ui-bundle.zip b/build/aries-antora-ui-bundle.zip index f9c6435..01a83fb 100644 Binary files a/build/aries-antora-ui-bundle.zip and b/build/aries-antora-ui-bundle.zip differ diff --git a/src/css/aries-header.css b/src/css/aries-header.css new file mode 100644 index 0000000..2a329fb --- /dev/null +++ b/src/css/aries-header.css @@ -0,0 +1,3 @@ +.navbar-brand img { + height: var(--navbar-image-height); +} diff --git a/src/css/aries-vars.css b/src/css/aries-vars.css index 41e71e9..2525fab 100644 --- a/src/css/aries-vars.css +++ b/src/css/aries-vars.css @@ -4,7 +4,8 @@ --navbar-background: var(--color-smoke-70); --navbar_hover-background: var(--color-smoke-90); --navbar-font-color: var(--color-gray-50); - --navbar-height: calc(108 / var(--rem-base) * 1rem); + --navbar-height: calc(90 / var(--rem-base) * 1rem); + --navbar-image-height: calc(72 / var(--rem-base) * 1rem); /* footer */ --footer-background: var(--color-smoke-70); } diff --git a/src/css/site.css b/src/css/site.css index 0ff1f27..5624432 100644 --- a/src/css/site.css +++ b/src/css/site.css @@ -13,6 +13,7 @@ @import "doc.css"; @import "pagination.css"; @import "header.css"; +@import "aries-header.css"; @import "footer.css"; @import "highlight.css"; @import "print.css"; diff --git a/src/img/Arieslogo_Horizontal.gif b/src/img/Arieslogo_Horizontal.gif deleted file mode 100644 index bd4fbea..0000000 Binary files a/src/img/Arieslogo_Horizontal.gif and /dev/null differ diff --git a/src/img/ram.svg b/src/img/ram.svg new file mode 100644 index 0000000..15f0f7f --- /dev/null +++ b/src/img/ram.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<svg width="1.18056in" height="1.29167in" viewBox="0 0 85 93" xmlns="http://www.w3.org/2000/svg"> + <path id="Selection" stroke="black" d="M 54.893 22.317 C 54.305 25.065 53.708 27.617 50.876 28.962 C 46.721 30.925 43.566 26.39 44.879 22.317 C 47.123 15.398 54.815 13.896 59.371 19.481 C 63.506 24.535 61.899 33.28 57.5 37.687 C 49.22 45.98 41.459 39.179 35.296 38.384 C 32.621 38.03 28.064 38.904 25.497 39.777 C 13.748 43.743 13.337 55.343 11.093 60.594 C 9.309 64.775 6.164 66.532 3.861 71.39 C 0.814 77.819 1 85.082 1 92.001 C 1 92.001 3.94 92.001 3.94 92.001 C 4.381 82.903 6.762 74.26 [...] +</svg> \ No newline at end of file diff --git a/src/partials/footer-content.hbs b/src/partials/footer-content.hbs index e746f9f..59ad4d6 100644 --- a/src/partials/footer-content.hbs +++ b/src/partials/footer-content.hbs @@ -1,5 +1,3 @@ <footer class="footer"> - <p>The UI for this page extends the Antora default UI.</p> - <p>The source code for the Antora default UI is licensed under the terms of the MPL-2.0 license.</p> - <p>Extensions and content are licensed under AL2</p> + <p>Content licensed under AL2. UI licensed under MPL-2.0 with extensions licensed under AL2</p> </footer> diff --git a/src/partials/header-content.hbs b/src/partials/header-content.hbs index ff767a0..9457434 100644 --- a/src/partials/header-content.hbs +++ b/src/partials/header-content.hbs @@ -6,7 +6,7 @@ <img src="{{siteRootPath}}/_/img/feather.png"> </span> <span> - <img src="{{siteRootPath}}/_/img/Arieslogo_Horizontal.gif"> + <img src="{{siteRootPath}}/_/img/ram.svg"> </span> {{site.title}} </a>
