From 697b8f452d3cb926fc885106c083e5c76919b0ad Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Sat, 4 Jan 2025 21:10:59 +0100 Subject: [PATCH] Admin console: Hover over plugins makes background change --- xmppserver/src/main/webapp/available-plugins.jsp | 8 ++++++-- xmppserver/src/main/webapp/plugin-admin.jsp | 9 ++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/xmppserver/src/main/webapp/available-plugins.jsp b/xmppserver/src/main/webapp/available-plugins.jsp index 6cce83f81a..fb531dc7ea 100644 --- a/xmppserver/src/main/webapp/available-plugins.jsp +++ b/xmppserver/src/main/webapp/available-plugins.jsp @@ -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. @@ -114,6 +114,10 @@ padding: 5px; } +.regular:hover { + background-color: white; +} + .line-bottom-border { font-family: verdana, arial, helvetica, sans-serif; font-size: 9pt; @@ -256,7 +260,7 @@ - + diff --git a/xmppserver/src/main/webapp/plugin-admin.jsp b/xmppserver/src/main/webapp/plugin-admin.jsp index 20de3d6d2e..ad218a9050 100644 --- a/xmppserver/src/main/webapp/plugin-admin.jsp +++ b/xmppserver/src/main/webapp/plugin-admin.jsp @@ -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. @@ -267,6 +267,10 @@ tr.regular td { border-color: #e3e3e3; } +tr.regular:hover { + background-color: white; +} + tr.update td { font-size: 8pt; background: #E7FBDE; @@ -314,6 +318,9 @@ tr.lowerhalf > td:last-child { border-right-width: 1px; border-bottom-width: 1px; } +.table-data:hover { + background-color: white; +}