mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
update resources
This commit is contained in:
@@ -222,7 +222,7 @@ body
|
||||
|
||||
.PH_Status_Success
|
||||
{
|
||||
color: #00AE42;
|
||||
color: #4479fb;
|
||||
}
|
||||
|
||||
.PH_Gcode_Icon
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
@@ -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( )
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -77,17 +77,4 @@
|
||||
<div id="HideBtn" onClick="ChangeLeftWidth()"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user