Commit c42f35de authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-1263] Fixed highlighting of current page in paginated displays.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9909 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2c5e32ab
...@@ -1000,6 +1000,11 @@ th.jive-table-th-center { ...@@ -1000,6 +1000,11 @@ th.jive-table-th-center {
padding:7px; padding:7px;
} }
.jive-current {
font-weight : bold;
text-decoration : none;
}
/* --------------------------------------------- */ /* --------------------------------------------- */
/* Main content */ /* Main content */
/* --------------------------------------------- */ /* --------------------------------------------- */
......
...@@ -89,12 +89,6 @@ ...@@ -89,12 +89,6 @@
<title><fmt:message key="user.roster.title"/></title> <title><fmt:message key="user.roster.title"/></title>
<meta name="subPageID" content="user-roster"/> <meta name="subPageID" content="user-roster"/>
<meta name="extraParams" content="<%= "username="+URLEncoder.encode(username, "UTF-8") %>"/> <meta name="extraParams" content="<%= "username="+URLEncoder.encode(username, "UTF-8") %>"/>
<style type="text/css">
.jive-current {
font-weight: bold;
text-decoration: none;
}
</style>
</head> </head>
<body> <body>
......
...@@ -60,13 +60,6 @@ ...@@ -60,13 +60,6 @@
int curPage = (start/range) + 1; int curPage = (start/range) + 1;
%> %>
<style type="text/css">
.jive-current {
font-weight : bold;
text-decoration : none;
}
</style>
<% if (request.getParameter("deletesuccess") != null) { %> <% if (request.getParameter("deletesuccess") != null) { %>
<div class="jive-success"> <div class="jive-success">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment