| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ page language="java" pageEncoding="UTF-8" %>
- <style>
- /*.navbar-right li a{*/
- /*padding:15px 10px!important;*/
- /*}*/
- .navbar-brand{
- /*padding-top:15px!important;*/
- }
- .btn-sm{
- background-color: transparent;
- outline: none!important;
- }
- .btn-sm:hover{
- background-color: #ddd;
- }
- .btn-sm:active{
- background-color: #ccc;
- box-shadow: none;
- }
- .btn-sm:focus{
- background-color: #ccc;
- box-shadow: none;
- }
- .more_more{
- color:#fff;
- border: 1px solid #fff;
- }
- .more_more:hover{
- background-color: #fff;
- color:#000;
- border: 1px solid #fff;
- }
- .more_more:visited{
- background-color: #fff;
- color:#000;
- border: 1px solid #fff;
- }
- .more_more:focus{
- background-color: #fff;
- color:#000;
- border: 1px solid #fff;
- }
- .lanlan{
- position: relative;
- }
- .container-fluid{
- padding-top: 5px;
- padding-bottom: 5px;
- }
- </style>
- <c:if test="${not empty flashMessages}">
- <div id="m-success-message" style="display:none;">
- <ul>
- <c:forEach items="${flashMessages}" var="item">
- <li>${item}</li>
- </c:forEach>
- </ul>
- </div>
- </c:if>
- <script type="text/javascript">
- function unreadCount() {
- $.getJSON('${tenantPrefix}/rs/msg/unreadCount?_sed=' + new Date().getTime(), {}, function(data) {
- if (data.data == 0) {
- $('#unreadMsg').html('');
- } else {
- $('#unreadMsg').html(data.data);
- }
- });
- }
- unreadCount();
- setInterval(unreadCount, 10000);
- </script>
|