From c6257e06e1152e13f51a21e9d7e825d803ee38d2 Mon Sep 17 00:00:00 2001 From: cenfun Date: Thu, 6 Jun 2024 09:26:57 +0800 Subject: [PATCH] better description link --- js/custom-nodes-manager.js | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/js/custom-nodes-manager.js b/js/custom-nodes-manager.js index 91f282cf..de797e0a 100644 --- a/js/custom-nodes-manager.js +++ b/js/custom-nodes-manager.js @@ -94,10 +94,6 @@ const pageCss = ` overflow: hidden; } -.cn-manager-grid .tg-cell a:hover { - text-decoration: underline; -} - .cn-manager-selection { display: flex; flex-wrap: wrap; @@ -121,11 +117,21 @@ const pageCss = ` font-size: 15px; } -.cn-manager-grid .tg-cell a { +.cn-manager-grid .cn-node-name a { color: skyblue; 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 { display: inline-block; width: 20px; @@ -1395,7 +1401,7 @@ export class CustomNodesManager { async function calculateHash(item) { const message = item.title + item.files[0]; return md5(message); - } +} function md5(inputString) { const hc = '0123456789abcdef';