Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo-1
Commits
19ab6b36
Unverified
Commit
19ab6b36
authored
Oct 24, 2018
by
Van
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
fixed #12554
parent
8d19f6e5
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
17 deletions
+14
-17
src/main/webapp/admin-category-list.ftl
src/main/webapp/admin-category-list.ftl
+1
-2
src/main/webapp/admin-link-list.ftl
src/main/webapp/admin-link-list.ftl
+1
-2
src/main/webapp/admin-user-list.ftl
src/main/webapp/admin-user-list.ftl
+1
-1
src/main/webapp/css/default-admin.css
src/main/webapp/css/default-admin.css
+4
-7
src/main/webapp/js/admin/categoryList.js
src/main/webapp/js/admin/categoryList.js
+2
-1
src/main/webapp/js/admin/linkList.js
src/main/webapp/js/admin/linkList.js
+2
-1
src/main/webapp/js/admin/userList.js
src/main/webapp/js/admin/userList.js
+2
-2
src/main/webapp/skins
src/main/webapp/skins
+1
-1
No files found.
src/main/webapp/admin-category-list.ftl
View file @
19ab6b36
...
...
@@ -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>
...
...
src/main/webapp/admin-link-list.ftl
View file @
19ab6b36
...
...
@@ -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>
...
...
src/main/webapp/admin-user-list.ftl
View file @
19ab6b36
...
...
@@ -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>
...
...
src/main/webapp/css/default-admin.css
View file @
19ab6b36
...
...
@@ -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
{
...
...
src/main/webapp/js/admin/categoryList.js
View file @
19ab6b36
...
...
@@ -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
,
...
...
src/main/webapp/js/admin/linkList.js
View file @
19ab6b36
...
...
@@ -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
,
...
...
src/main/webapp/js/admin/userList.js
View file @
19ab6b36
...
...
@@ -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
:
36
0
,
height
:
45
0
,
"
modal
"
:
true
,
"
hideFooter
"
:
true
});
...
...
skins
@
38ea877e
Subproject commit
656874bd20a5ce94e34d4797e109ba4a082743b6
Subproject commit
38ea877e71305813178d6ff5796497eb77a23612
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment