This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch WW-5653-bootstrap5-sample-apps in repository https://gitbox.apache.org/repos/asf/struts.git
commit 91ad0a63bb44df771c7f00944bede9c79731e87f Author: Lukasz Lenart <[email protected]> AuthorDate: Sat Jul 18 06:25:23 2026 +0200 WW-5653 fix(showcase): migrate leftover Bootstrap 2 icon and fixed-navbar classes Co-Authored-By: Claude Opus 4.8 <[email protected]> --- apps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp | 8 ++++---- apps/showcase/src/main/webapp/WEB-INF/filedownload/index.jsp | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp b/apps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp index 9f1b66288..41fda1cb9 100644 --- a/apps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp +++ b/apps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp @@ -97,7 +97,7 @@ <body id="page-home"> -<nav class="navbar navbar-expand-lg navbar-light bg-light navbar-fixed-top"> +<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top"> <div class="container-fluid"> <div class="navbar-header"> @@ -268,11 +268,11 @@ <ul class="dropdown-menu"> <s:url var="help" action="help" namespace="/" includeContext="false" /> <li><s:a value="%{help}" cssClass="dropdown-item">Help</s:a></li> - <li><a href="http://struts.apache.org/mail.html" class="dropdown-item"><i class="icon-share"></i> User Mailing + <li><a href="http://struts.apache.org/mail.html" class="dropdown-item"><i class="bi bi-share"></i> User Mailing List</a></li> - <li><a href="http://struts.apache.org" class="dropdown-item"><i class="icon-share"></i> Struts2 Website</a> + <li><a href="http://struts.apache.org" class="dropdown-item"><i class="bi bi-share"></i> Struts2 Website</a> </li> - <li><a href="http://struts.apache.org/docs/home.html" class="dropdown-item"><i class="icon-share"></i> + <li><a href="http://struts.apache.org/docs/home.html" class="dropdown-item"><i class="bi bi-share"></i> Documentation</a></li> </ul> </li> diff --git a/apps/showcase/src/main/webapp/WEB-INF/filedownload/index.jsp b/apps/showcase/src/main/webapp/WEB-INF/filedownload/index.jsp index 4080c6dc7..e7ad4fff0 100644 --- a/apps/showcase/src/main/webapp/WEB-INF/filedownload/index.jsp +++ b/apps/showcase/src/main/webapp/WEB-INF/filedownload/index.jsp @@ -39,7 +39,7 @@ </div> <s:url var="url" action="download"/> - <s:a href="%{url}" cssClass="btn btn-large btn-info"><i class="icon-picture"></i> Download image file.</s:a> + <s:a href="%{url}" cssClass="btn btn-large btn-info"><i class="bi bi-image"></i> Download image file.</s:a> </div> <div class="col-md-6" style="text-align: center;"> <div class="alert alert-info"> @@ -47,7 +47,7 @@ </div> <s:url var="url" action="download2"/> - <s:a href="%{url}" cssClass="btn btn-large btn-info"><i class="icon-download-alt"></i> Download ZIP file.</s:a> + <s:a href="%{url}" cssClass="btn btn-large btn-info"><i class="bi bi-download"></i> Download ZIP file.</s:a> </div> </div> </div>
