forked from p85126437/datagear
[web]页面左上角添加LOGO
This commit is contained in:
parent
049a24a8b3
commit
fe2c60a48c
|
@ -0,0 +1,13 @@
|
|||
<%--
|
||||
/*
|
||||
* Copyright (c) 2018 by datagear.org.
|
||||
*/
|
||||
--%>
|
||||
<%--
|
||||
依赖:
|
||||
jsp_jstl.jsp
|
||||
--%>
|
||||
<%@ page language="java" pageEncoding="UTF-8"%>
|
||||
<div class="logo">
|
||||
<div class="logo-content"><fmt:message key='app.name' /></div>
|
||||
</div>
|
|
@ -39,6 +39,7 @@ if(loginUser == null)
|
|||
<body>
|
||||
<div id="${pageId}">
|
||||
<div class="main-page-head">
|
||||
<%@ include file="include/html_logo.jsp" %>
|
||||
<div class="toolbar">
|
||||
<a class="link" href="<c:url value="/" />"><fmt:message key='backToMainPage' /></a>
|
||||
</div>
|
||||
|
|
|
@ -1013,6 +1013,7 @@
|
|||
</head>
|
||||
<body id="${pageId}">
|
||||
<div class="main-page-head">
|
||||
<%@ include file="include/html_logo.jsp" %>
|
||||
<div class="toolbar">
|
||||
<ul id="systemSetMenu" class="lightweight-menu">
|
||||
<li class="system-set-root"><span><span class="ui-icon ui-icon-gear"></span></span>
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
<body>
|
||||
<div id="${pageId}">
|
||||
<div class="main-page-head">
|
||||
<%@ include file="include/html_logo.jsp" %>
|
||||
<div class="toolbar">
|
||||
<a class="link" href="<c:url value="/" />"><fmt:message key='backToMainPage' /></a>
|
||||
</div>
|
||||
|
|
|
@ -21,6 +21,7 @@ String loginUrl = request.getContextPath() + "/login";
|
|||
<body>
|
||||
<div id="${pageId}">
|
||||
<div class="main-page-head">
|
||||
<%@ include file="include/html_logo.jsp" %>
|
||||
<div class="toolbar">
|
||||
<a class="link" href="<c:url value="/" />"><fmt:message key='backToMainPage' /></a>
|
||||
</div>
|
||||
|
|
|
@ -40,6 +40,7 @@ String loginUrl = request.getContextPath() + "/login";
|
|||
<body>
|
||||
<div id="${pageId}">
|
||||
<div class="main-page-head main-page-head-reset-passord">
|
||||
<%@ include file="include/html_logo.jsp" %>
|
||||
<div class="toolbar">
|
||||
<a class="link" href="javascript:void(0);" id="viewResetPasswordAdminReqHistoryLink"><fmt:message key='resetPassword.viewResetPasswordAdminReqHistory' /></a>
|
||||
<a class="link" href="<c:url value="/login" />"><fmt:message key='resetPassword.backToLoginPage' /></a>
|
||||
|
|
|
@ -392,6 +392,17 @@ table.dataTable.no-footer{
|
|||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
.main-page-head .logo{
|
||||
float: left;
|
||||
vertical-align: middle;
|
||||
margin-left: 0.1em;
|
||||
margin-top: 0.2em;
|
||||
}
|
||||
.main-page-head .logo .logo-content{
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
opacity: 0.7;
|
||||
}
|
||||
.main-page-head .toolbar{
|
||||
float: right;
|
||||
text-align: right;
|
||||
|
|
Loading…
Reference in New Issue