forked from didi/epage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 更新icon使用,替换iview的Icon组件,使用class方式,以便后续扩展
- Loading branch information
Showing
15 changed files
with
111 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.ep-icon{ | ||
display: inline-block; | ||
font-family: "Ionicons"; | ||
speak: none; | ||
font-style: normal; | ||
font-weight: normal; | ||
font-variant: normal; | ||
text-transform: none; | ||
text-rendering: auto; | ||
line-height: 1; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
&-trash:before{ | ||
content: "\f252"; | ||
} | ||
&-copy:before{ | ||
content: "\f41b"; | ||
} | ||
&-code:before{ | ||
content: "\f26f"; | ||
} | ||
&-close:before{ | ||
content: "\f404"; | ||
} | ||
&-edit:before{ | ||
content: "\f2bf"; | ||
} | ||
&-up:before{ | ||
content: "\f10e"; | ||
} | ||
&-down:before{ | ||
content: "\f105"; | ||
} | ||
&-plus:before{ | ||
content: "\f218"; | ||
} | ||
&-minus:before{ | ||
content: "\f209"; | ||
} | ||
&-help:before{ | ||
content: "\f143"; | ||
} | ||
|
||
/* -o */ | ||
&-up-o:before{ | ||
content: "\f366"; | ||
} | ||
&-down-o:before{ | ||
content: "\f35d"; | ||
} | ||
&-minus-o:before{ | ||
content: "\f463"; | ||
} | ||
&-plus-o:before{ | ||
content: "\f48a"; | ||
} | ||
&-info-o:before{ | ||
content: "\f44c"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@import url('./var.less'); | ||
@import url('./common.less'); | ||
@import url('./icon.less'); | ||
@import url('./components/main.less'); | ||
@import url('./panel/main.less'); | ||
@import url('./widgets/main.less'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,7 +110,7 @@ | |
} | ||
&-move-btn{ | ||
font-size: 14px; | ||
.ivu-icon{ | ||
.ep-icon{ | ||
margin-left: 4px; | ||
cursor: pointer; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ | |
} | ||
} | ||
&-delete{ | ||
font-size: 12px; | ||
font-weight: bold; | ||
color: #d00; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters