file name
This commit is contained in:
parent
781241e433
commit
ce8dc3612c
|
|
@ -1,8 +1,8 @@
|
|||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 2340181 */
|
||||
src: url('iconfont.woff2?t=1678758582072') format('woff2'),
|
||||
url('iconfont.woff?t=1678758582072') format('woff'),
|
||||
url('iconfont.ttf?t=1678758582072') format('truetype');
|
||||
src: url('iconfont.woff2?t=1680166483388') format('woff2'),
|
||||
url('iconfont.woff?t=1680166483388') format('woff'),
|
||||
url('iconfont.ttf?t=1680166483388') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
|
|
@ -13,6 +13,30 @@
|
|||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-guanzhuicon:before {
|
||||
content: "\e95b";
|
||||
}
|
||||
|
||||
.icon-yidianzan_icon:before {
|
||||
content: "\e95c";
|
||||
}
|
||||
|
||||
.icon-morenfuke_icon1:before {
|
||||
content: "\e95d";
|
||||
}
|
||||
|
||||
.icon-yiguanzhuicon:before {
|
||||
content: "\e95e";
|
||||
}
|
||||
|
||||
.icon-yifuke_icon:before {
|
||||
content: "\e95f";
|
||||
}
|
||||
|
||||
.icon-xingzhuang:before {
|
||||
content: "\e960";
|
||||
}
|
||||
|
||||
.icon-kaiqi:before {
|
||||
content: "\e95a";
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -5,6 +5,48 @@
|
|||
"css_prefix_text": "icon-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "34819652",
|
||||
"name": "关注icon",
|
||||
"font_class": "guanzhuicon",
|
||||
"unicode": "e95b",
|
||||
"unicode_decimal": 59739
|
||||
},
|
||||
{
|
||||
"icon_id": "34819653",
|
||||
"name": "已点赞_icon",
|
||||
"font_class": "yidianzan_icon",
|
||||
"unicode": "e95c",
|
||||
"unicode_decimal": 59740
|
||||
},
|
||||
{
|
||||
"icon_id": "34819654",
|
||||
"name": "默认复刻_icon",
|
||||
"font_class": "morenfuke_icon1",
|
||||
"unicode": "e95d",
|
||||
"unicode_decimal": 59741
|
||||
},
|
||||
{
|
||||
"icon_id": "34819655",
|
||||
"name": "已关注icon",
|
||||
"font_class": "yiguanzhuicon",
|
||||
"unicode": "e95e",
|
||||
"unicode_decimal": 59742
|
||||
},
|
||||
{
|
||||
"icon_id": "34819656",
|
||||
"name": "已复刻_icon",
|
||||
"font_class": "yifuke_icon",
|
||||
"unicode": "e95f",
|
||||
"unicode_decimal": 59743
|
||||
},
|
||||
{
|
||||
"icon_id": "34820092",
|
||||
"name": "形状",
|
||||
"font_class": "xingzhuang",
|
||||
"unicode": "e960",
|
||||
"unicode_decimal": 59744
|
||||
},
|
||||
{
|
||||
"icon_id": "34197190",
|
||||
"name": "开启",
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -82,6 +82,13 @@ export function initAxiosInterceptors(props) {
|
|||
}
|
||||
throw new axios.Cancel('Operation canceled by the user.');
|
||||
}
|
||||
if (response.data.status === 403 || response.data.status === "403" || response.data.status === 404) {
|
||||
if(!window.location.pathname.includes('/releases')){
|
||||
locationurl(`/${response.data.status}`);
|
||||
}else{
|
||||
console.log("releases 404了");
|
||||
}
|
||||
}
|
||||
|
||||
if (response.data.status === 403 || response.data.status === "403") {
|
||||
// locationurl('/403');
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ function CoderDepotReadme({ operate , history , readme , ChangeFile }){
|
|||
</span>
|
||||
</Dropdown>
|
||||
|
||||
<span className="commonBox-title-read"><a href="#readme ">README.md</a></span>
|
||||
<span className="commonBox-title-read"><a href="#readme ">{readme.name}</a></span>
|
||||
|
||||
</AlignCenter>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -92,9 +92,9 @@ function Files({ data,history,owner,projectsId , parentsSha }){
|
|||
<AlignCenter>
|
||||
{!item.isBin ? <i className={!item.flag?"iconfont icon-sanjiaoxing-down color-grey-9":"iconfont icon-triangle font-15 color-grey-9"} onClick={()=>showDown(item.flag,key,item.isBin)}></i>:""}
|
||||
<span className="cursor-pointer" data-clipboard-text={item.name} onClick={()=>showDown(item.flag,key,item.isBin)}>
|
||||
{item.name}
|
||||
{ item.isRenamed && <i className="iconfont icon-youjiang font-12 color-grey-8 ml5 mr5"></i> }
|
||||
{ item.isRenamed && item.old_name}
|
||||
{ item.isRenamed && <i className="iconfont icon-youjiang font-12 color-grey-8 ml5 mr5"></i> }
|
||||
{item.name}
|
||||
</span>
|
||||
<Tooltip
|
||||
title={copyfileTipTitle}
|
||||
|
|
|
|||
Loading…
Reference in New Issue