修改检测状态显示方式

This commit is contained in:
changtao 2023-06-14 15:28:21 +08:00
parent 5f450aab3d
commit c10f311cf0
10 changed files with 21 additions and 19 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script type="module" crossorigin src="/assets/index.f4f02362.js"></script>
<link rel="stylesheet" href="/assets/index.6c6af714.css">
<link rel="stylesheet" href="/assets/index.2ee78ff5.css">
<script type="module">try{import("_").catch(()=>1);}catch(e){}window.__vite_is_dynamic_import_support=true;</script>
<script type="module">!function(){if(window.__vite_is_dynamic_import_support)return;console.warn("vite: loading legacy build because dynamic import is unsupported, syntax error above should be ignored");var e=document.getElementById("vite-legacy-polyfill"),n=document.createElement("script");n.src=e.src,n.onload=function(){System.import(document.getElementById('vite-legacy-entry').getAttribute('data-src'))},document.body.appendChild(n)}();</script>
</head>

File diff suppressed because one or more lines are too long

View File

@ -750,7 +750,7 @@ export function activate(context: vscode.ExtensionContext) {
res: form});
}
}else if((form.dead_type == 2 || form.dead_type == 3) && sys_flag == "deb" ){
//deb
//x86 arm loongarch桌面系统
let info_threads = gdb_cmdof_info_thread(form.pid);
let lwp_to_thread_id = get_threadid_lwp_relation(info_threads);
if(form.dead_type == 2){

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script type="module" crossorigin src="/assets/index.f4f02362.js"></script>
<link rel="stylesheet" href="/assets/index.6c6af714.css">
<link rel="stylesheet" href="/assets/index.2ee78ff5.css">
<script type="module">try{import("_").catch(()=>1);}catch(e){}window.__vite_is_dynamic_import_support=true;</script>
<script type="module">!function(){if(window.__vite_is_dynamic_import_support)return;console.warn("vite: loading legacy build because dynamic import is unsupported, syntax error above should be ignored");var e=document.getElementById("vite-legacy-polyfill"),n=document.createElement("script");n.src=e.src,n.onload=function(){System.import(document.getElementById('vite-legacy-entry').getAttribute('data-src'))},document.body.appendChild(n)}();</script>
</head>

View File

@ -152,31 +152,33 @@
height: 200px;
overflow-y:auto; /* 开启滚动显示溢出内容 */
}
.loading-overlay {
/*
position: fixed;
top: 100px;
right: 100px;
background-color: rgba(0, 0, 0, 0);
z-index: 9999;
*/
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0,0);
z-index: 9999;
background-color: rgba(0, 0, 0,0.5); /* 设置半透明的背景颜色 */
z-index: 99999; /* 设置z-index值为较大的值使其浮在最上层 */
display: flex;
justify-content: center;
align-items: center;
backdrop-filter: blur(5px); /* 原有页面的模糊处理效果 */
}
.loading-spinner {
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
font-size: 20px;
color: #fff;
filter: none; /* 取消模糊效果 */
}
/* 当 loading-overlay 隐藏时,取消原有页面的模糊处理效果 */
.loading-overlay.no-blur {
backdrop-filter: none;
}
.text1 {