Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
style_tool
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Bugzilla
Bugzilla
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
于广洋
style_tool
Commits
1155135b
Commit
1155135b
authored
May 15, 2020
by
刘明珠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整分页、警告
parent
6509bedf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
114 additions
and
32 deletions
+114
-32
alert.scss
node_module/element-theme-chalk/src/alert.scss
+42
-12
notification.scss
node_module/element-theme-chalk/src/notification.scss
+15
-3
pagination.scss
node_module/element-theme-chalk/src/pagination.scss
+57
-17
No files found.
node_module/element-theme-chalk/src/alert.scss
View file @
1155135b
...
...
@@ -3,7 +3,7 @@
@include
b
(
alert
)
{
width
:
100%
;
padding
:
$--alert-padding
;
padding
:
8px
;
margin
:
0
;
box-sizing
:
border-box
;
border-radius
:
$--alert-border-radius
;
...
...
@@ -14,6 +14,12 @@
display
:
flex
;
align-items
:
center
;
transition
:
opacity
.2s
;
border-width
:
1px
;
border-style
:
solid
;
.el-alert__icon
{
font-size
:
16px
!
important
;
width
:
16px
!
important
;
}
@include
when
(
light
)
{
.el-alert__closebtn
{
...
...
@@ -36,9 +42,9 @@
@include
m
(
success
)
{
&
.is-light
{
background-color
:
$--alert-success-color
;
color
:
$--color-success
;
background-color
:
#EBF8F2
;
border-color
:
#CFEFDF
;
color
:
#4EC87C
;
.el-alert__description
{
color
:
$--color-success
;
}
...
...
@@ -52,8 +58,9 @@
@include
m
(
info
)
{
&
.is-light
{
background-color
:
$--alert-info-color
;
color
:
$--color-info
;
background-color
:
#FFF9E1
;
border-color
:
#FFE3BE
;
color
:
#FFBF00
;
}
&
.is-dark
{
...
...
@@ -68,8 +75,9 @@
@include
m
(
warning
)
{
&
.is-light
{
background-color
:
$--alert-warning-color
;
color
:
$--color-warning
;
background-color
:
#FFF5E6
;
border-color
:
#F8DDC0
;
color
:
#FFA533
;
.el-alert__description
{
color
:
$--color-warning
;
...
...
@@ -84,8 +92,9 @@
@include
m
(
error
)
{
&
.is-light
{
background-color
:
$--alert-danger-color
;
color
:
$--color-danger
;
background-color
:
#FCEEED
;
border-color
:
#FCDDDC
;
color
:
#FF3D33
;
.el-alert__description
{
color
:
$--color-danger
;
...
...
@@ -98,9 +107,30 @@
}
}
@include
m
(
notice
)
{
&
.is-light
{
background-color
:
#EAF4FF
;
border-color
:
#D5E8FC
;
color
:
#666666
;
.el-alert__description
{
color
:
#666666
;
}
.el-icon-info
{
color
:
#00BBF2
}
}
&
.is-dark
{
background-color
:
$--color-danger
;
color
:
$--color-white
;
}
}
@include
e
(
content
)
{
display
:
table-cell
;
padding
:
0
8px
;
text-align
:
left
;
}
@include
e
(
icon
)
{
...
...
@@ -113,7 +143,7 @@
}
@include
e
(
title
)
{
font-size
:
$--alert-title-font-size
;
font-size
:
14px
;
line-height
:
18px
;
@include
when
(
bold
)
{
font-weight
:
bold
;
...
...
@@ -130,7 +160,7 @@
opacity
:
1
;
position
:
absolute
;
top
:
12px
;
right
:
15
px
;
right
:
8
px
;
cursor
:
pointer
;
@include
when
(
customed
)
{
...
...
node_module/element-theme-chalk/src/notification.scss
View file @
1155135b
...
...
@@ -10,7 +10,8 @@
border
:
1px
solid
$--notification-border-color
;
position
:
fixed
;
background-color
:
$--color-white
;
box-shadow
:
$--notification-shadow
;
// box-shadow: $--notification-shadow;
box-shadow
:
0
1px
6px
rgba
(
0
,
0
,
0
,
1
);
transition
:
opacity
.3s
,
transform
.3s
,
left
.3s
,
right
.3s
,
top
0
.4s
,
bottom
.3s
;
overflow
:
hidden
;
...
...
@@ -30,7 +31,8 @@
@include
e
(
title
)
{
font-weight
:
bold
;
font-size
:
$--notification-title-font-size
;
color
:
$--notification-title-color
;
// color: $--notification-title-color;
color
:
#333
;
margin
:
0
;
}
...
...
@@ -38,12 +40,19 @@
font-size
:
$--notification-content-font-size
;
line-height
:
21px
;
margin
:
6px
0
0
0
;
color
:
$--notification-content-color
;
// color: $--notification-content-color;
color
:
#999
;
text-align
:
justify
;
p
{
margin
:
0
;
}
@include
e
(
notice
)
{
.el-icon-info
{
color
:
#00BBF2
}
}
}
@include
e
(
icon
)
{
...
...
@@ -80,6 +89,9 @@
.el-icon-warning
{
color
:
$--notification-warning-icon-color
;
}
.el-icon-notice
{
color
:
#00BBF2
;
}
}
.el-notification-fade-enter
{
...
...
node_module/element-theme-chalk/src/pagination.scss
View file @
1155135b
...
...
@@ -13,10 +13,14 @@
span
:not
([
class
*=
suffix
]),
button
{
display
:
inline-block
;
font-size
:
$--pagination-font-size
;
min-width
:
$--pagination-button-width
;
height
:
$--pagination-button-height
;
line-height
:
$--pagination-button-height
;
// font-size: $--pagination-font-size;
// min-width: $--pagination-button-width;
// height: $--pagination-button-height;
// line-height: $--pagination-button-height;
font-size
:
14px
;
min-width
:
32px
;
height
:
32px
;
line-height
:
32px
;
vertical-align
:
top
;
box-sizing
:
border-box
;
}
...
...
@@ -44,7 +48,11 @@
}
button
{
border
:
none
;
// border: none;
border-width
:
1px
;
border-style
:
solid
;
border-color
:
#E4E4E4
;
border-radius
:
3px
;
padding
:
0
6px
;
background
:
transparent
;
...
...
@@ -57,8 +65,11 @@
}
&
:disabled
{
// color: $--pagination-button-disabled-color;
// background-color: $--pagination-button-disabled-background-color;
color
:
$--pagination-button-disabled-color
;
background-color
:
$--pagination-button-disabled-background-color
;
background-color
:
#F8F8F8
;
border-color
:
#EBEBEB
;
cursor
:
not
-
allowed
;
}
}
...
...
@@ -81,10 +92,13 @@
.btn-prev
{
padding-right
:
12px
;
margin-right
:
8px
;
}
.btn-next
{
padding-left
:
12px
;
margin-left
:
4px
;
margin-right
:
12px
;
}
.el-pager
li
.disabled
{
...
...
@@ -145,13 +159,13 @@
}
@include
e
(
total
)
{
margin
-right
:
10
px
;
margin
:
0
12
px
;
font-weight
:
normal
;
color
:
$--color-text-regular
;
}
@include
e
(
jump
)
{
margin
-left
:
24
px
;
margin
:
0
12
px
;
font-weight
:
normal
;
color
:
$--color-text-regular
;
...
...
@@ -248,19 +262,28 @@
}
li
{
padding
:
0
4px
;
//
padding: 0 4px;
background
:
$--pagination-background-color
;
vertical-align
:
top
;
display
:
inline-block
;
font-size
:
$--pagination-font-size
;
min-width
:
$--pagination-button-width
;
height
:
$--pagination-button-height
;
line-height
:
$--pagination-button-height
;
// font-size: $--pagination-font-size;
// min-width: $--pagination-button-width;
// height: $--pagination-button-height;
// line-height: $--pagination-button-height;
padding
:
0
8px
;
font-size
:
14px
;
color
:
#333333
;
min-width
:
32px
;
height
:
32px
;
line-height
:
32px
;
cursor
:
pointer
;
box-sizing
:
border-box
;
text-align
:
center
;
margin
:
0
;
margin
:
0
4px
;
border-width
:
1px
;
border-style
:
solid
;
border-color
:
#E4E4E4
;
border-radius
:
3px
;
&
.btn-quicknext
,
&
.btn-quickprev
{
line-height
:
28px
;
...
...
@@ -280,16 +303,33 @@
}
&
.active
+
li
{
border-left
:
0
;
//
border-left: 0;
}
&
:hover
{
color
:
$--pagination-hover-color
;
// color: $--pagination-hover-color;
color
:
#0885C6
;
background-color
:
#EDF6FC
;
border-color
:
#0885C6
;
}
&
.active
{
color
:
$--pagination-hover-color
;
cursor
:
default
;
border
:
none
;
}
&
.active
:hover
{
border-color
:
#0885C6
;
border-width
:
1px
;
border-style
:
solid
;
}
}
.more
{
border
:
none
}
.more
:hover
{
border-color
:
#0885C6
;
border-width
:
1px
;
border-style
:
solid
;
}
}
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