1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 08:48:06 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2024-03-07 10:39:39 +08:00
parent cdf51bb165
commit 2c9d61a11a
3 changed files with 5 additions and 4 deletions

View File

@ -515,9 +515,9 @@ Volcanos(chat.ONAPPEND, {_init: function(can, meta, list, cb, target, field) {
restart: "bi bi-bootstrap-reboot",
access: "bi bi-file-lock",
}, function(name, icon) { var text = value[name]
if (name == nfs.VERSION) { text = value.version.split("-").slice(0, 2).join("-") }
if (name == mdb.TIME) { text = can.base.TimeTrim(value[name]) }
return value[name] && {view: [[html.ITEM, name]], list: [{icon: icon}, {text: text}]}
if (name == nfs.VERSION && text) { text = text.split("-").slice(0, 2).join("-") }
if (name == mdb.TIME && text) { text = can.base.TimeTrim(text) }
return text && {view: [[html.ITEM, name]], list: [{icon: icon}, {text: text}]}
})}
},
table: function(can, msg, cb, target, keys) { if (!msg || msg.Length() == 0) { return } var meta = can.base.Obj(msg.Option(mdb.META))

View File

@ -52,7 +52,7 @@ body {
--table-padding:var(--button-padding);
--header-height:48px; --footer-height:var(--action-height); --action-height:32px; --status-height:var(--action-height); --textarea-height:96px;
--river-width:var(--project-width); --project-width:230px; --input-width:140px; --button-width:60px; --form-width:320px; --url-input-width:480px;
--river-width:var(--project-width); --project-width:230px; --input-width:140px; --button-width:60px; --form-width:360px; --url-input-width:480px;
--card-width:320px; --card-height:160px; --qrcode-width:360px; --qrcode-height:364px;
--story-height:480px; --iframe-height:420px;
--float-height:var(--story-height); --float-width:1200px;

View File

@ -17,4 +17,5 @@ fieldset.plan>div.output>div.layout>div.layout>div.content>table.content tr:firs
fieldset.plan>div.output>div.layout>div.layout>div.content>table.content thead tr:first-child { z-index:2; }
fieldset.plan>div.output>div.layout>div.layout>div.content>table.content th:first-child { width:40px; position:sticky; left:2px; }
fieldset.plan>div.output>div.layout>div.layout>div.profile>table.content tr:first-child { height:30px; position:sticky; top:2px; }
fieldset.plan>div.output>fieldset.plug { position:absolute; }
fieldset.plan.story>form.option>div.item.scale { display:none; }