1
0
mirror of https://shylinux.com/x/volcanos synced 2025-07-01 12:04:43 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-05-27 10:33:14 +08:00
parent ad718ee5a0
commit a142baab60
2 changed files with 4 additions and 6 deletions

View File

@ -190,7 +190,7 @@ div.item.card:not(.hide) { position:relative; display:flex; align-items:center;
div.item.card img { height:60px; width:60px; margin:5px; } div.item.card img { height:60px; width:60px; margin:5px; }
div.item.card div.info { width:100%; } div.item.card div.info { width:100%; }
div.item.card div.title { font-size:16px; } div.item.card div.title { font-size:16px; }
div.item.card div.title span { margin-right:5px; white-space:pre; } div.item.card div.title span { margin-right:5px; white-space:pre; line-height:22px; }
div.item.card div.title span.type { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; } div.item.card div.title span.type { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; }
div.item.card div.title span.role { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; } div.item.card div.title span.role { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; }
div.item.card div.title span.status { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; } div.item.card div.title span.status { border:var(--box-notice); color:var(--notice-bg-color); font-size:12px; padding:0 5px; }
@ -203,7 +203,7 @@ body:not(.width1) div.item.card div.action { z-index:1; }
div.item.card div.action input[type=button] { background-color:transparent; border:none; color:var(--notice-bg-color); margin-left:5px; } div.item.card div.action input[type=button] { background-color:transparent; border:none; color:var(--notice-bg-color); margin-left:5px; }
body:not(.mobile) div.item.card div.action input[type=button]:hover { background-color:var(--hover-bg-color); } body:not(.mobile) div.item.card div.action input[type=button]:hover { background-color:var(--hover-bg-color); }
div.item.card div.action input[type=button].danger { color:var(--danger-bg-color) } div.item.card div.action input[type=button].danger { color:var(--danger-bg-color) }
body:not(.mobile) div.item.card div.action input[type=button].notice:hover { border:var(--box-notice); } // body:not(.mobile) div.item.card div.action input[type=button].notice:hover { border:var(--box-notice); }
div.item.card div.action input[type=button].notice:not(:hover) { background-color:var(--notice-bg-color); color:var(--notice-fg-color); } div.item.card div.action input[type=button].notice:not(:hover) { background-color:var(--notice-bg-color); color:var(--notice-fg-color); }
div.item.card div.action input[type=button]:last-child { margin-right:5px; } div.item.card div.action input[type=button]:last-child { margin-right:5px; }
div.item.card div.output { padding:10px 0; display:flex; transition:left .2s; } div.item.card div.output { padding:10px 0; display:flex; transition:left .2s; }
@ -623,7 +623,8 @@ body>div.toast.float { z-index:12; }
fieldset.Action>div.toast { z-index:12; } fieldset.Action>div.toast { z-index:12; }
fieldset.desktop.cmd>div.output>fieldset.macos.dock { z-index:10; } fieldset.desktop.cmd>div.output>fieldset.macos.dock { z-index:10; }
/* box-shadow */ /* box-shadow */
div.float { box-shadow:var(--float-box-shadow); border:var(--plugin-border); } div.float { box-shadow:var(--float-box-shadow); }
// div.float { box-shadow:var(--float-box-shadow); border:var(--plugin-border); }
div.float:hover { box-shadow:var(--notice-box-shadow); } div.float:hover { box-shadow:var(--notice-box-shadow); }
fieldset.plugin { box-shadow:var(--plugin-box-shadow); border-radius:var(--plugin-radius); } fieldset.plugin { box-shadow:var(--plugin-box-shadow); border-radius:var(--plugin-radius); }
fieldset.story { box-shadow:var(--plugin-box-shadow); border-radius:var(--plugin-radius); } fieldset.story { box-shadow:var(--plugin-box-shadow); border-radius:var(--plugin-radius); }

View File

@ -46,16 +46,13 @@ Volcanos("user", {
prompt: function(tip, def, cb, silent) { (text = silent? def: prompt(tip, def||"")) != undefined && typeof cb == code.FUNCTION && cb(text); return text }, prompt: function(tip, def, cb, silent) { (text = silent? def: prompt(tip, def||"")) != undefined && typeof cb == code.FUNCTION && cb(text); return text },
reload: function(force) { (force || confirm("重新加载页面?")) && location.reload() }, reload: function(force) { (force || confirm("重新加载页面?")) && location.reload() },
jumps: function(url) { jumps: function(url) {
debugger
location.href = url location.href = url
}, },
opens: function(url) { opens: function(url) {
debugger
if (window.parent && window.parent.openurl) { return window.parent.openurl(url) } if (window.parent && window.parent.openurl) { return window.parent.openurl(url) }
window.openurl? window.openurl(url): this.open(url) window.openurl? window.openurl(url): this.open(url)
}, },
open: function(url) { if (!url) { return } open: function(url) { if (!url) { return }
debugger
if (location.search.indexOf("debug=true") > 0 && url.indexOf("debug=true") == -1) { if (location.search.indexOf("debug=true") > 0 && url.indexOf("debug=true") == -1) {
var ls = url.split("#"); ls[0] += (ls[0].indexOf("?") > 0? "&": "?") + "debug=true", url = ls.join("#") var ls = url.split("#"); ls[0] += (ls[0].indexOf("?") > 0? "&": "?") + "debug=true", url = ls.join("#")
} }