Commit 19ab6b36 authored by Van's avatar Van

🎨 fixed #12554

parent 8d19f6e5
......@@ -37,8 +37,7 @@ ${addCategoryLabel}
<button onclick="admin.categoryList.add();" class="right">${saveLabel}</button>
<div class="clear"></div>
</div>
<div id="categoryUpdate" class="none form__no-table form">
${updateCategoryLabel}
<div id="categoryUpdate" class="none form__no-table form" data-title="${updateCategoryLabel}">
<label for="categoryNameUpdate">${linkTitle1Label}</label>
<input id="categoryNameUpdate" type="text"/>
<label for="categoryURIUpdate">URI:</label>
......
......@@ -33,8 +33,7 @@ ${addLinkLabel}
<button onclick="admin.linkList.add();" class="right">${saveLabel}</button>
<div class="clear"></div>
</div>
<div id="updateLink" class="none form form__no-table">
${updateLinkLabel}
<div id="updateLink" class="none form form__no-table" data-title="${updateLinkLabel}">
<label>${linkTitle1Label}</label>
<input id="linkTitleUpdate" type="text"/>
<label>${url1Label}</label>
......
......@@ -37,7 +37,7 @@ ${addUserLabel}
<button onclick="admin.userList.add();" class="right">${saveLabel}</button>
<div class="clear"></div>
</div>
<div id="userUpdate" class="none form form__table">
<div id="userUpdate" class="none form form__no-table">
<label for="userNameUpdate">${userName1Label}</label>
<input id="userNameUpdate" type="text"/>
<label for="userEmailUpdate">${commentEmail1Label}</label>
......
......@@ -19,7 +19,7 @@
* admin style
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.5.0.0, Apr 5, 2018
* @version 2.5.0.1, Oct 24, 2018
*/
/* start resset */
......@@ -1250,18 +1250,15 @@ button#submitArticle:hover {
color: #FFFFFF;
float: left;
font-size: 12px;
line-height: 27px;
margin-left: 3px;
margin-left: 12px;
}
.dialog-header-bg {
background: #F1F1F1;
border-color: #C0C0C0 #D9D9D9 #D9D9D9;
background: #32323a;
border-radius: 6px 6px 0 0;
border-style: solid;
border-width: 1px 1px 0;
cursor: move;
height: 34px;
line-height: 34px;
}
.dialog-header-bg .icon-close {
......
......@@ -20,7 +20,7 @@
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.3.0, Sep 10, 2018
* @version 1.1.3.1, Oct 24, 2018
* @since 2.0.0
*/
......@@ -61,6 +61,7 @@ admin.categoryList = {
this.getList(page);
$("#categoryUpdate").dialog({
title: $("#categoryUpdate").data('title'),
width: 700,
height: 358,
"modal": true,
......
......@@ -20,7 +20,7 @@
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.2.0, Sep 10, 2018
* @version 1.1.2.1, Oct 24, 2018
*/
/* link-list 相关操作 */
......@@ -61,6 +61,7 @@ admin.linkList = {
this.getList(page);
$("#updateLink").dialog({
title: $("#updateLink").data('title'),
width: 700,
height: 290,
"modal": true,
......
......@@ -20,7 +20,7 @@
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.2.1, Oct 19, 2018
* @version 1.1.2.2, Oct 24, 2018
*/
/* user-list 相关操作 */
......@@ -61,7 +61,7 @@ admin.userList = {
$("#userUpdate").dialog({
width: 700,
height: 360,
height: 450,
"modal": true,
"hideFooter": true
});
......
Subproject commit 656874bd20a5ce94e34d4797e109ba4a082743b6
Subproject commit 38ea877e71305813178d6ff5796497eb77a23612
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