diff --git a/changelog.html b/changelog.html
index 177099e7e..acb198b7f 100644
--- a/changelog.html
+++ b/changelog.html
@@ -44,6 +44,11 @@
Monitoring Plugin Changelog
+2.3.1 -- (tbd)
+
+ - [Issue #125] - Combining keyword and date range makes search fail
+
+
2.3.0 -- January 19, 2022
- Requires Openfire 4.7.0
diff --git a/plugin.xml b/plugin.xml
index 149a5a73b..2f9fad28a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -6,7 +6,7 @@
Monitors conversations and statistics of the server.
Ignite Realtime
${project.version}
- 01/19/2022
+ 2022-03-05
4.7.0
1.8
monitoring
diff --git a/src/web/archive-conversation-participants.jsp b/src/web/archive-conversation-participants.jsp
index 5160e9183..31f3aea34 100644
--- a/src/web/archive-conversation-participants.jsp
+++ b/src/web/archive-conversation-participants.jsp
@@ -63,8 +63,6 @@
-
-
@@ -312,29 +310,6 @@
border-width: 0px 0px 1px 0px;
}
- /* Default DOM Tooltip Style */
- div.domTT {
- border: 1px solid #bbb;
- background-color: #FFFBE2;
- font-family: Arial, Helvetica sans-serif;
- font-size: 9px;
- padding: 5px;
- }
-
- div.domTT .caption {
- font-family: serif;
- font-size: 12px;
- font-weight: bold;
- padding: 1px 2px;
- color: #FFFFFF;
- }
-
- div.domTT .contents {
- font-size: 12px;
- font-family: sans-serif;
- padding: 3px 2px;
- }
-
.textfield {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
@@ -362,6 +337,44 @@
#searchResults p.resultDescription {
margin: 0px 0px 12px 0px;
}
+
+ /* --------------------------------------------- */
+ /* Tooltip styles */
+ /* --------------------------------------------- */
+ .openfire-helpicon-with-tooltip {
+ position: relative;
+ display: inline-block;
+ }
+
+ .openfire-helpicon-with-tooltip .helpicon {
+ display: block;
+ float: left;
+ width: 14px;
+ height: 14px;
+ background: transparent url('images/icon_help_14x14.gif') no-repeat;
+ }
+
+ .openfire-helpicon-with-tooltip .tooltiptext {
+ font-family: Arial, Helvetica sans-serif;
+ font-size: small;
+ visibility: hidden;
+ width: 240px;
+ background-color: #FFFBE2;
+ color: black;
+ text-align: center;
+ border: 1px solid #bbb;
+ padding: 5px;
+ position: absolute;
+ z-index: 1;
+ bottom: 125%;
+ left: 50%;
+ margin-left: -120px;
+ white-space: normal;
+ }
+
+ .openfire-helpicon-with-tooltip:hover .tooltiptext {
+ visibility: visible;
+ }