Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
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
Commits
7df58422
Commit
7df58422
authored
Jul 25, 2012
by
Vanessa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加前端小工具,
parent
4f1927cd
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
191 additions
and
125 deletions
+191
-125
war/src/main/webapp/js/tools/compress.js
war/src/main/webapp/js/tools/compress.js
+24
-0
war/src/main/webapp/js/tools/update-version.js
war/src/main/webapp/js/tools/update-version.js
+22
-0
war/src/main/webapp/skins/ease/css/ease-ie8.min.css
war/src/main/webapp/skins/ease/css/ease-ie8.min.css
+7
-6
war/src/main/webapp/skins/ease/css/ease.css
war/src/main/webapp/skins/ease/css/ease.css
+2
-2
war/src/main/webapp/skins/ease/css/ease.min.css
war/src/main/webapp/skins/ease/css/ease.min.css
+116
-116
war/src/main/webapp/skins/ease/js/ease.min.js
war/src/main/webapp/skins/ease/js/ease.min.js
+20
-1
No files found.
war/src/main/webapp/js/tools/compress.js
0 → 100644
View file @
7df58422
var
fs
=
require
(
"
fs
"
),
exec
=
require
(
"
child_process
"
).
exec
;
// js compress
var
jsPaths
=
[
"
ease
"
];
for
(
var
i
=
0
;
i
<
jsPaths
.
length
;
i
++
)
{
var
content
=
""
;
exec
(
"
uglifyjs ../../skins/
"
+
jsPaths
[
i
]
+
"
/js/
"
+
jsPaths
[
i
]
+
"
.js > ../../skins/
"
+
jsPaths
[
i
]
+
"
/js/
"
+
jsPaths
[
i
]
+
"
.min.js
"
,
function
(
error
,
stdout
,
stderr
)
{
if
(
error
!==
null
)
{
console
.
log
(
error
);
}
});
}
// css compress
var
csses
=
[
"
ease
"
,
"
ease-ie8
"
];
for
(
var
i
=
0
;
i
<
csses
.
length
;
i
++
)
{
var
content
=
""
;
exec
(
"
lessc -compress ../../skins/ease/css/
"
+
csses
[
i
]
+
"
.css > ../../skins/ease/css/
"
+
csses
[
i
]
+
"
.min.css
"
,
function
(
error
,
stdout
,
stderr
)
{
if
(
error
!==
null
)
{
console
.
log
(
error
);
}
});
}
\ No newline at end of file
war/src/main/webapp/js/tools/update-version.js
0 → 100644
View file @
7df58422
var
version
=
""
,
newVersion
=
""
;
process
.
argv
.
forEach
(
function
(
val
,
index
,
array
)
{
if
(
index
===
2
)
{
version
=
val
;
}
if
(
index
===
3
)
{
newVersion
=
val
;
}
});
var
fs
=
require
(
"
fs
"
);
var
skins
=
[
"
ease
"
,
"
mobile
"
];
for
(
var
i
=
0
;
i
<
skins
.
length
;
i
++
)
{
var
fileName
=
"
../../skins/
"
+
skins
[
i
]
+
"
/skin.properties
"
;
var
file
=
fs
.
readFileSync
(
fileName
,
"
UTF-8
"
);
fs
.
writeFileSync
(
fileName
,
file
.
replace
(
"
forSolo=
"
+
version
,
"
forSolo=
"
+
newVersion
),
"
UTF-8
"
);
}
\ No newline at end of file
war/src/main/webapp/skins/ease/css/ease-ie8.min.css
View file @
7df58422
.nav
{
border-top
:
1px
solid
#e2e2e2
;
border-bottom
:
1px
solid
#e2e2e2
;}
.article-next
{
border
:
1px
solid
#e2e2e2
;
border-top-color
:
#fefefe
;}
.article-next
:hover
{
background-color
:
#f2f2f2
;
border
:
1px
solid
#e2e2e2
;}
#tags
a
,
.archives
>
div
,
.dynamic
.module
,
.form
input
[
type
=
text
],
.form
input
[
type
=
password
],
.form
textarea
,
.article-relative
{
border
:
1px
solid
#f2f2f2
;}
.comment-body-ref
{
border
:
1px
solid
#e2e2e2
;}
#tags
a
,
.archives
>
div
,
.dynamic
.module
,
.form
input
[
type
=
"text"
],
.form
input
[
type
=
"password"
],
.form
textarea
,
.article-relative
{
border
:
1px
solid
#f2f2f2
;}
#tags
a
:hover
,
.archives
>
div
:hover
,
.dynamic
.module
:hover
,
.form
input
:focus
,
.form
textarea
:focus
,
.article-relative
:hover
{
border
:
1px
solid
#e2e2e2
;}
.article-relative
{
width
:
363px
;}
.comment-body-ref
,
#tags
a
:hover
,
.archives
>
div
:hover
,
.dynamic
.module
:hover
,
.form
input
:focus
,
.form
textarea
:focus
,
.article-relative
:hover
{
border
:
1px
solid
#e2e2e2
;}
\ No newline at end of file
war/src/main/webapp/skins/ease/css/ease.css
View file @
7df58422
...
...
@@ -17,7 +17,7 @@
* skin ease style
*
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
* @version 1.0.1.
6, Jul 24
, 2012
* @version 1.0.1.
7, Jul 25
, 2012
*/
/* start base */
html
,
body
,
div
,
ul
,
li
{
...
...
@@ -185,7 +185,7 @@ sup {
cursor
:
pointer
;
float
:
right
;
height
:
16px
;
margin
:
-3px
0
0
15px
;
;
margin
:
-3px
0
0
15px
;
padding
:
1px
;
width
:
16px
;
}
...
...
war/src/main/webapp/skins/ease/css/ease.min.css
View file @
7df58422
...
...
@@ -16,7 +16,7 @@ sup{font-size:10px;font-weight:normal;-webkit-text-size-adjust:none;}
.ft-gray
:hover
{
color
:
#676767
;
text-decoration
:
none
;}
.fn-mgtb10
{
margin
:
10px
0
;}
.logo
{
padding
:
0
5px
;
text-shadow
:
0
0
1px
#D5D5D5
;}
.em00
,
.em01
,
.em02
,
.em03
,
.em04
,
.em05
,
.em06
,
.em07
,
.em08
,
.em09
,
.em10
,
.em11
,
.em12
,
.em13
,
.em14
{
cursor
:
pointer
;
background-image
:
url(
../../ease/images/emotions/emotions-ease.png)
;
float
:
left
;
height
:
24px
;
margin-right
:
5px
;
width
:
24px
;
transition
:
all
.2s
ease-out
;
-webkit-transition
:
all
.2s
ease-out
;
-moz-transition
:
all
.2s
ease-out
;}
.em00
,
.em01
,
.em02
,
.em03
,
.em04
,
.em05
,
.em06
,
.em07
,
.em08
,
.em09
,
.em10
,
.em11
,
.em12
,
.em13
,
.em14
{
cursor
:
pointer
;
background-image
:
url(
"../../ease/images/emotions/emotions-ease.png")
;
float
:
left
;
height
:
24px
;
margin-right
:
5px
;
width
:
24px
;
transition
:
all
0.2s
ease-out
;
-webkit-transition
:
all
0.2s
ease-out
;
-moz-transition
:
all
0.2s
ease-out
;}
#emotions
span
:hover
{
transform
:
scale
(
1.2
)
rotate
(
360deg
);
-webkit-transform
:
scale
(
1.2
)
rotate
(
360deg
);
-moz-transform
:
scale
(
1.2
)
rotate
(
360deg
);}
.em01
{
background-position
:
-24px
0
;}
.em02
{
background-position
:
-48px
0
;}
...
...
@@ -32,28 +32,28 @@ sup{font-size:10px;font-weight:normal;-webkit-text-size-adjust:none;}
.em12
{
background-position
:
-48px
-48px
;}
.em13
{
background-position
:
-72px
-48px
;}
.em14
{
background-position
:
-96px
-48px
;}
#search
,
.translate-ico
{
background-image
:
url(
/skins/ease/images/icons.png)
;}
#search
,
.translate-ico
{
background-image
:
url(
"/skins/ease/images/icons.png")
;}
.translate-ico
{
background-position
:
1px
-125px
;
background-repeat
:
no-repeat
;
border
:
1px
solid
#D5D5D5
;
border-radius
:
3px
;
cursor
:
pointer
;
float
:
right
;
height
:
16px
;
margin
:
-3px
0
0
15px
;
padding
:
1px
;
width
:
16px
;}
.translate-ico
:hover
{
border-color
:
#9a9a9a
;
box-shadow
:
0
0
1px
#808080
;
background-color
:
#FCFCFC
;}
.wrapper
{
margin
:
0
auto
;
width
:
990px
;}
.header
{
width
:
100%
;
background-color
:
#FCFCFC
;
z-index
:
1
;}
.header
.title
{
border-bottom
:
1px
solid
#808080
;
font-size
:
26px
;
font-weight
:
normal
;}
.header
.sub-title
{
font-size
:
11px
;}
#search
{
background-position
:
7px
-99px
;
background-repeat
:
no-repeat
;
background-color
:
#FFF
;
border
:
1px
solid
#D5D5D5
;
border-radius
:
2px
2px
2px
2px
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
;
color
:
#808080
;
float
:
right
;
font-size
:
14px
;
height
:
19px
;
line-height
:
145%
;
padding
:
4px
10px
4px
28px
;
width
:
24px
;
-moz-transition
:
width
.4s
ease
,
background
.4s
ease
;
-webkit-transition
:
width
.4s
ease
,
background
.4s
ease
;
transition
:
width
.4s
ease
,
background
.4s
ease
;}
#search
{
background-position
:
7px
-99px
;
background-repeat
:
no-repeat
;
background-color
:
#FFF
;
border
:
1px
solid
#D5D5D5
;
border-radius
:
2px
2px
2px
2px
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
;
color
:
#808080
;
float
:
right
;
font-size
:
14px
;
height
:
19px
;
line-height
:
145%
;
padding
:
4px
10px
4px
28px
;
width
:
24px
;
-moz-transition
:
width
0.4s
ease
,
background
0.4s
ease
;
-webkit-transition
:
width
0.4s
ease
,
background
0.4s
ease
;
transition
:
width
0.4s
ease
,
background
0.4s
ease
;}
#search
:focus
{
background-color
:
#FCFCFC
;
width
:
196px
;}
.banner
{
margin-bottom
:
20px
;}
.banner
.notice
{
float
:
left
;
margin
:
20px
0
0
50px
;}
.nav
{
background-color
:
#2C2C2C
;
box-shadow
:
0
2px
2px
#
D5D5D5
,
0
3px
3px
-3px
#D5D5D5
inset
;
height
:
29px
;
top
:
0
;
width
:
100%
;
z-index
:
1
;}
.nav
{
background-color
:
#2C2C2C
;
box-shadow
:
0
2px
2px
#
d5d5d5
,
0
3px
3px
-3px
#d5d5d5
inset
;
height
:
29px
;
top
:
0
;
width
:
100%
;
z-index
:
1
;}
.nav
ul
{
list-style
:
none
;
float
:
left
;}
.nav
li
{
float
:
left
;}
.nav
a
{
color
:
#C9C9C9
;
display
:
block
;
float
:
left
;
font-size
:
14px
;
font-weight
:
700
;
line-height
:
29px
;
margin-right
:
20px
;
padding
:
0
10px
;
text-decoration
:
none
;
transition
:
color
.4s
ease
,
background-color
.8s
ease
;
-webkit-transition
:
color
.4s
ease
,
background-color
.8s
ease
;
-moz-transition
:
color
.4s
ease
,
background-color
.8s
ease
;}
.nav
a
{
color
:
#C9C9C9
;
display
:
block
;
float
:
left
;
font-size
:
14px
;
font-weight
:
700
;
line-height
:
29px
;
margin-right
:
20px
;
padding
:
0
10px
;
text-decoration
:
none
;
transition
:
color
0.4s
ease
,
background-color
0.8s
ease
;
-webkit-transition
:
color
0.4s
ease
,
background-color
0.8s
ease
;
-moz-transition
:
color
0.4s
ease
,
background-color
0.8s
ease
;}
.nav
a
:hover
{
color
:
#FFF
;
background-color
:
#535353
;}
.nav
a
.current
{
background-color
:
#FFF
;
box-shadow
:
0
-1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
,
0
1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
;
color
:
#808080
;}
.nav
a
.current
{
background-color
:
#FFF
;
box-shadow
:
0
-1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
,
0
1px
1px
rgba
(
0
,
0
,
0
,
0.1
)
inset
;
color
:
#808080
;}
.nav
img
{
margin-left
:
3px
;}
.footer
{
background-color
:
#FCFCFC
;
border-top
:
2px
solid
#D5D5D5
;
font-size
:
11px
;
padding
:
12px
0
;
-webkit-text-size-adjust
:
none
;
margin-top
:
50px
;}
#goTop
{
background
:
url(
/skins/ease/images/icons.png)
no-repeat
scroll
5px
-51px
#D5D5D5
;
border-radius
:
2px
2px
0
0
;
cursor
:
pointer
;
font-size
:
11px
;
height
:
21px
;
line-height
:
21px
;
padding
:
0
10px
0
23px
;
position
:
absolute
;
right
:
50px
;
display
:
none
;}
#goTop
{
background
:
url(
"/skins/ease/images/icons.png")
no-repeat
scroll
5px
-51px
#d5d5d5
;
border-radius
:
2px
2px
0
0
;
cursor
:
pointer
;
font-size
:
11px
;
height
:
21px
;
line-height
:
21px
;
padding
:
0
10px
0
23px
;
position
:
absolute
;
right
:
50px
;
display
:
none
;}
#goTop
:hover
{
background-color
:
#D5D5D5
;}
.wrapper
>
ul
{
list-style
:
none
;}
.wrapper
>
ul
{
list-style
:
none
;}
.article
{
border-bottom
:
1px
solid
#f6f6f6
;
padding
:
30px
50px
;}
.article
:hover
{
border-bottom-color
:
#D5D5D5
;
box-shadow
:
0
0
1px
#f6f6f6
inset
;
background-color
:
#FCFCFC
;}
.article-body
{
line-height
:
145%
;
overflow
:
hidden
;
word-wrap
:
break-word
;
margin-bottom
:
10px
;}
...
...
@@ -75,14 +75,14 @@ sup{font-size:10px;font-weight:normal;-webkit-text-size-adjust:none;}
.comment-header
{
float
:
left
;
background-color
:
#FFF
;
border
:
1px
solid
#DEDEDE
;
padding
:
2px
;
height
:
60px
;
width
:
60px
;}
.comment-panel
{
float
:
left
;
line-height
:
16px
;
margin
:
0
0
20px
10px
;
min-height
:
64px
;
overflow
:
hidden
;
width
:
814px
;}
.comment-body-ref
{
background-color
:
#FCFCFC
;
box-shadow
:
0
0
2px
#D5D5D5
;
display
:
block
;
left
:
127px
;
padding
:
10px
;
opacity
:
0.9
;
filter
:
alpha
(
opacity
=
90
);
position
:
absolute
;}
.comment-body-ref
>
.comment-header
{
border
:
0
none
;
float
:
right
;
height
:
48px
;
width
:
48px
;
padding
:
0
;}
.comment-body-ref
>
.comment-panel
{
margin
:
0
20px
0
0
;
min-height
:
48px
;
width
:
725px
;}
.comment-body-ref
>
.comment-panel
>
.right
{
display
:
none
;}
.comment-body-ref
>
.comment-header
{
border
:
0
none
;
float
:
right
;
height
:
48px
;
width
:
48px
;
padding
:
0
;}
.comment-body-ref
>
.comment-panel
{
margin
:
0
20px
0
0
;
min-height
:
48px
;
width
:
725px
;}
.comment-body-ref
>
.comment-panel
>
.right
{
display
:
none
;}
#replyForm
{
margin-left
:
25px
;}
.form
{
padding
:
0
50px
20px
;}
.wrapper
>
.form
{
float
:
left
;}
.wrapper
>
.form
{
float
:
left
;}
.form
th
{
text-align
:
right
;
white-space
:
nowrap
;}
.form
input
[
type
=
text
],
.form
input
[
type
=
password
],
.form
textarea
{
background-color
:
#FCFCFC
;
border-width
:
0
;
box-shadow
:
0
0
2px
#BCBCBC
;
font-family
:
Verdana
,
arial
,
\
5
fae
\
8
f6f
\
96
c5
\
9
ed1
;
font-size
:
12px
;
margin
:
0
5px
10px
0
;
outline
:
medium
none
;
padding
:
0
3px
;
height
:
28px
;
line-height
:
28px
;
width
:
260px
;}
.form
input
[
type
=
"text"
],
.form
input
[
type
=
"password"
],
.form
textarea
{
background-color
:
#FCFCFC
;
border-width
:
0
;
box-shadow
:
0
0
2px
#BCBCBC
;
font-family
:
Verdana
,
arial
,
\
5
fae
\
8
f6f
\
96
c5
\
9
ed1
;
font-size
:
12px
;
margin
:
0
5px
10px
0
;
outline
:
medium
none
;
padding
:
0
3px
;
height
:
28px
;
line-height
:
28px
;
width
:
260px
;}
.form
input
:focus
,
.form
textarea
:focus
{
box-shadow
:
0
0
4px
#D5D5D5
;}
.form
textarea
{
height
:
120px
;
overflow
:
auto
;
width
:
426px
;
line-height
:
16px
;}
.form
button
{
background-color
:
#F6F6F6
;
border
:
0
none
;
box-shadow
:
0
0
2px
#D5D5D5
;
height
:
28px
;
line-height
:
28px
;
padding
:
0
12px
;
color
:
#808080
;}
...
...
@@ -98,9 +98,9 @@ sup{font-size:10px;font-weight:normal;-webkit-text-size-adjust:none;}
.tags4
,
.tags4
:visited
{
font-size
:
18px
;
color
:
#323232
;}
.tags5
,
.tags5
:visited
{
font-size
:
20px
;
color
:
#0a0a0a
;}
.archives
{
position
:
relative
;}
.archives
>
div
{
background-color
:
#FCFCFC
;
box-shadow
:
0
0
2px
#D5D5D5
;
padding-bottom
:
20px
;
line-height
:
20px
;
margin
:
20px
;
width
:
270px
;
position
:
absolute
;
top
:
0
;}
.archives
>
div
{
background-color
:
#FCFCFC
;
box-shadow
:
0
0
2px
#D5D5D5
;
padding-bottom
:
20px
;
line-height
:
20px
;
margin
:
20px
;
width
:
270px
;
position
:
absolute
;
top
:
0
;}
.archives
h3
{
text-align
:
center
;}
.archives
>
div
:hover
{
box-shadow
:
0
0
4px
#D5D5D5
;}
.archives
>
div
:hover
{
box-shadow
:
0
0
4px
#D5D5D5
;}
.archives
a
{
display
:
block
;
margin-left
:
77px
;}
.dynamic
ul
{
list-style
:
none
;}
.dynamic
h3
{
text-align
:
center
;}
...
...
war/src/main/webapp/skins/ease/js/ease.min.js
View file @
7df58422
This diff is collapsed.
Click to expand it.
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