1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2024-03-09 19:30:11 +08:00
parent ca4e7aeb53
commit a446216c75
2 changed files with 15 additions and 1 deletions

View File

@ -30,5 +30,16 @@ fieldset.web.matrix>div.output:not(.process)>table.content div.item.stop div.tit
fieldset.web.matrix>div.output.process>table.content div.item.process { background-color:blue; color:var(--notice-fg-color); }
fieldset.web.matrix>div.output>table.content tr:not(:hover) div.action { visibility:hidden; }
body:not(.mobile) fieldset.web.matrix>div.output>table.content th:first-child { position:sticky; left:2px; z-index:2; }
body:not(.mobile) fieldset.web.matrix>div.output>table.content td:first-child { background-color:var(--plugin-bg-color); position:sticky; left:2px; z-index:1; }
body:not(.mobile) fieldset.web.matrix>div.output>table.content td:first-child { background-color:var(--plugin-bg-color);
box-shadow:var(--box-shadow);
position:sticky; left:2px; z-index:1; }
body:not(.mobile) fieldset.web.matrix>div.output>table.content td:hover {
box-shadow:var(--notice-box-shadow);
}
body:not(.mobile) fieldset.web.matrix>div.output>table.content th:hover {
box-shadow:var(--notice-box-shadow);
}
body:not(.mobile) fieldset.web.matrix>div.output>table.content td:first-child:hover {
box-shadow:var(--notice-box-shadow);
}
body:not(.mobile) fieldset.web.matrix>div.output>table.content tr.danger td:first-child { background-color:transparent; }

View File

@ -34,6 +34,9 @@ func _matrix_list(m *ice.Message, domain, typ string, meta ice.Maps, fields ...s
m.Cmd(Space(m, domain), DREAM).Table(func(value ice.Maps) {
switch value[mdb.TYPE] {
case WORKER:
if value[aaa.ACCESS] == aaa.PRIVATE {
break
}
value[DOMAIN] = domain
kit.If(value[mdb.STATUS] == cli.STOP, func() { value[mdb.ICONS] = nfs.USR_ICONS_ICEBERGS })
kit.If(value[mdb.STATUS] == cli.STOP && istech, func() { button = []ice.Any{cli.START, mdb.REMOVE} })