This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/royale-docs.git
commit 0cb95bd0a4398c79989b60f05715ab5679de7749 Author: Josh Tynjala <[email protected]> AuthorDate: Tue Jun 20 09:56:07 2023 -0700 main-menu-options: use normal case in markup, and use CSS to transform to uppercase --- _includes/main-menu-options.html | 12 ++++++------ _sass/royale-theme.sass | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/_includes/main-menu-options.html b/_includes/main-menu-options.html index 683e0cc..97f4d34 100644 --- a/_includes/main-menu-options.html +++ b/_includes/main-menu-options.html @@ -1,18 +1,18 @@ <li class="topMenu_li fa"> - <a class="topMenu_li_a" href="https://royale.apache.org/features/">FEATURES</a> + <a class="topMenu_li_a" href="https://royale.apache.org/features/">Features</a> </li> <li class="topMenu_li fa"> - <a class="topMenu_li_a" href="{{ site.baseurl }}/get-started">GET STARTED</a> + <a class="topMenu_li_a" href="{{ site.baseurl }}/get-started">Get Started</a> </li> <li class="topMenu_li fa"> - <a class="topMenu_li_a" href="https://royale.apache.org/download/">DOWNLOAD</a> + <a class="topMenu_li_a" href="https://royale.apache.org/download/">Download</a> </li> <li class="topMenu_li fa"> - <a class="topMenu_li_a" href="https://royale.apache.org/docs/">DOCS</a> + <a class="topMenu_li_a" href="https://royale.apache.org/docs/">Docs</a> </li> <li class="topMenu_li fa"> - <a class="topMenu_li_a" href="https://royale.apache.org/blog/">BLOG</a> + <a class="topMenu_li_a" href="https://royale.apache.org/blog/">Blog</a> </li> <li class="topMenu_li"> - <a class="topMenu_li_a" href="https://github.com/apache/royale-asjs/wiki/Apache-Royale-Source-Code-Repositories"><span class="grve-item"><i class="grve-menu-icon fa fa-github"></i>GITHUB</span></a> + <a class="topMenu_li_a" href="https://github.com/apache/royale-asjs/wiki/Apache-Royale-Source-Code-Repositories"><span class="grve-item"><i class="grve-menu-icon fa fa-github"></i> Github</span></a> </li> \ No newline at end of file diff --git a/_sass/royale-theme.sass b/_sass/royale-theme.sass index dda602e..c87eccf 100644 --- a/_sass/royale-theme.sass +++ b/_sass/royale-theme.sass @@ -135,6 +135,7 @@ .topMenu_li_a text-decoration: none color: rgba(255,255,255,0.7) + text-transform: uppercase .topMenu_li_a:hover color: #fff
