Skip to content

Commit

Permalink
Admin console: Hover over plugins makes background change
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Jan 4, 2025
1 parent 8db6a10 commit 697b8f4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
8 changes: 6 additions & 2 deletions xmppserver/src/main/webapp/available-plugins.jsp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
- Copyright (C) 2017-2023 Ignite Realtime Foundation. All rights reserved.
- Copyright (C) 2017-2025 Ignite Realtime Foundation. All rights reserved.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -114,6 +114,10 @@
padding: 5px;
}
.regular:hover {
background-color: white;
}
.line-bottom-border {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 9pt;
Expand Down Expand Up @@ -256,7 +260,7 @@
</c:when>
<c:otherwise>
<c:forEach items="${notInstalledPlugins}" var="notInstalledPlugin">
<tr id="${notInstalledPlugin.hashCode}">
<tr class="regular" id="${notInstalledPlugin.hashCode}">
<td class="line-bottom-border" style="width: 1%">
<c:choose>
<c:when test="${not empty notInstalledPlugin.icon}">
Expand Down
9 changes: 8 additions & 1 deletion xmppserver/src/main/webapp/plugin-admin.jsp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
- Copyright (C) 2005-2008 Jive Software, 2017-2024 Ignite Realtime Foundation. All rights reserved.
- Copyright (C) 2005-2008 Jive Software, 2017-2025 Ignite Realtime Foundation. All rights reserved.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -267,6 +267,10 @@ tr.regular td {
border-color: #e3e3e3;
}
tr.regular:hover {
background-color: white;
}
tr.update td {
font-size: 8pt;
background: #E7FBDE;
Expand Down Expand Up @@ -314,6 +318,9 @@ tr.lowerhalf > td:last-child {
border-right-width: 1px;
border-bottom-width: 1px;
}
.table-data:hover {
background-color: white;
}
</style>


Expand Down

0 comments on commit 697b8f4

Please sign in to comment.