Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
php
/
chinaamc-2020flag
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
021e5c18
authored
Jan 08, 2020
by
doszhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dos
parent
4f505202
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
Public/static/css/index.css
+9
-2
Public/static/js/common.js
+1
-0
No files found.
Public/static/css/index.css
View file @
021e5c18
...
@@ -170,14 +170,21 @@ input::-webkit-input-placeholder {
...
@@ -170,14 +170,21 @@ input::-webkit-input-placeholder {
.checked-flag-list
.checked-flag-text
{
.checked-flag-list
.checked-flag-text
{
font-size
:
1.4rem
;
font-size
:
1.4rem
;
color
:
#222222
;
color
:
#222222
;
margin-left
:
1rem
;
padding-left
:
0.5rem
;
padding-left
:
0.5rem
;
padding-right
:
0.5
rem
;
padding-right
:
3
rem
;
height
:
auto
;
height
:
auto
;
display
:
inline-block
;
display
:
inline-block
;
flex
:
1
;
flex
:
1
;
}
}
.check-flag-list
.btn-checked-item-delete
{
color
:
#c30101
;
font-size
:
1.4rem
;
text-align
:
right
;
width
:
2.8rem
;
display
:
inline-block
;
}
@keyframes
trans
{
@keyframes
trans
{
to
{
to
{
transform
:
translateY
(
0
);
transform
:
translateY
(
0
);
...
...
Public/static/js/common.js
View file @
021e5c18
...
@@ -361,6 +361,7 @@ function addFlagToList(text) {
...
@@ -361,6 +361,7 @@ function addFlagToList(text) {
let
item
=
$
(
'<div class="checked-item"></div>'
);
let
item
=
$
(
'<div class="checked-item"></div>'
);
let
flagNo
=
$
(
'<div class="checked-flag-no">'
+
parseInt
(
flagStack
.
indexOf
(
text
))
+
1
+
'</div>'
);
let
flagNo
=
$
(
'<div class="checked-flag-no">'
+
parseInt
(
flagStack
.
indexOf
(
text
))
+
1
+
'</div>'
);
let
flagText
=
$
(
'<div class="checked-flag-text">'
+
text
+
'</div>'
);
let
flagText
=
$
(
'<div class="checked-flag-text">'
+
text
+
'</div>'
);
let
flagDelete
=
$
(
'<div class="btn-checked-item-delete">删除</div>'
);
item
.
append
(
flagNo
);
item
.
append
(
flagNo
);
item
.
append
(
flagText
);
item
.
append
(
flagText
);
$
(
'.flag-page .flag-list-content'
).
append
(
item
);
$
(
'.flag-page .flag-list-content'
).
append
(
item
);
...
...
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