update resources

This commit is contained in:
QIDI TECH
2025-05-05 14:58:54 +08:00
parent 524bd808f3
commit 3fe258372a
566 changed files with 7708 additions and 5046 deletions

View File

@@ -222,7 +222,7 @@ body
.PH_Status_Success
{
color: #00AE42;
color: #4479fb;
}
.PH_Gcode_Icon

View File

@@ -269,7 +269,7 @@ body
position: absolute;
height: 60px;
width: 12px;
right: 1px;
right: 0px;
top: calc(50% - 30px);
cursor: pointer;
background-repeat: no-repeat;
@@ -279,6 +279,7 @@ body
border-top: 1px solid rgba(238, 238, 238, 1);
border-bottom: 1px solid rgba(238, 238, 238, 1);
border-radius: 4px 0px 0px 4px;
z-index: 99;
}
#HideBtn:hover

View File

@@ -63,5 +63,7 @@
#HideBtn
{
transform: scaleX(-1);
border-radius: 0px 4px 4px 0px;
border-radius: 0px 4px 4px 0px;
border-left: 0px solid rgba(238, 238, 238, 1);
border-right: 1px solid rgba(238, 238, 238, 1);
}

View File

@@ -431,18 +431,26 @@ function OnClickOpenProject()
SendWXMessage( JSON.stringify(tSend) );
}
let RecentClick=true;
function OnOpenRecentFile( strPath )
{
if( RecentPage_Mode!=Recent_Normal )
return;
var tSend={};
tSend['sequence_id']=Math.round(new Date() / 1000);
tSend['command']="homepage_open_recentfile";
tSend['data']={};
tSend['data']['path']=decodeURI(strPath);
SendWXMessage( JSON.stringify(tSend) );
if(RecentClick)
{
RecentClick = false;
setTimeout(() => {
RecentClick = true;
}, 1000);
var tSend={};
tSend['sequence_id']=Math.round(new Date() / 1000);
tSend['command']="homepage_open_recentfile";
tSend['data']={};
tSend['data']['path']=decodeURI(strPath);
SendWXMessage( JSON.stringify(tSend) );
}
}
function OnDeleteRecentFile( )

View File

@@ -253,6 +253,7 @@ function ShowLeftMenuTip( bShow )
$("div[menu='recent'] div.BtnIcon").prop('title',GetCurrentTextByKey('t35'));
$("div[menu='online'] div.BtnIcon").prop('title',GetCurrentTextByKey('t107'));
$("div[menu='makerlab'] div.BtnIcon").prop('title','MakerLab');
$("div[menu='makersupply'] div.BtnIcon").prop('title',GetCurrentTextByKey('t125'));
$("div[menu='printhistory'] div.BtnIcon").prop('title',GetCurrentTextByKey('t117'));
$("div[menu='manual'] div.BtnIcon").prop('title',GetCurrentTextByKey('t87'));
}
@@ -262,8 +263,9 @@ function ShowLeftMenuTip( bShow )
$("div[menu='recent'] div.BtnIcon").removeAttr('title');
$("div[menu='online'] div.BtnIcon").removeAttr('title');
$("div[menu='makerlab'] div.BtnIcon").removeAttr('title');
$("div[menu='makersupply'] div.BtnIcon").removeAttr('title');
$("div[menu='printhistory'] div.BtnIcon").removeAttr('title');
$("div[menu='manual'] div.BtnIcon").removeAttr('title');
$("div[menu='manual'] div.BtnIcon").removeAttr('title');
}
}

View File

@@ -77,17 +77,4 @@
<div id="HideBtn" onClick="ChangeLeftWidth()"></div>
</body>
</html>
</html>