mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-02-06 19:22:36 +08:00
better description link
This commit is contained in:
parent
c8adc31b75
commit
c6257e06e1
@ -94,10 +94,6 @@ const pageCss = `
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cn-manager-grid .tg-cell a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cn-manager-selection {
|
.cn-manager-selection {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@ -121,11 +117,21 @@ const pageCss = `
|
|||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cn-manager-grid .tg-cell a {
|
.cn-manager-grid .cn-node-name a {
|
||||||
color: skyblue;
|
color: skyblue;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cn-manager-grid .cn-node-desc a {
|
||||||
|
color: #5555FF;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cn-manager-grid .tg-cell a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.cn-manager-grid .cn-conflicts-button {
|
.cn-manager-grid .cn-conflicts-button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
@ -1395,7 +1401,7 @@ export class CustomNodesManager {
|
|||||||
async function calculateHash(item) {
|
async function calculateHash(item) {
|
||||||
const message = item.title + item.files[0];
|
const message = item.title + item.files[0];
|
||||||
return md5(message);
|
return md5(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
function md5(inputString) {
|
function md5(inputString) {
|
||||||
const hc = '0123456789abcdef';
|
const hc = '0123456789abcdef';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user