diff --git a/index.css b/index.css index a0ed7285..ce50b06b 100644 --- a/index.css +++ b/index.css @@ -601,6 +601,9 @@ fieldset.xterm>div.layout { clear:both; } fieldset.xterm div.layout div.output { border-left:var(--box-border); border-top:var(--box-border); } fieldset.xterm div.layout div.output.select { border:var(--box-border)} fieldset.dream>div.output.card>div.item.begin>div.title { color:var(--disable-fg-color); font-style:italic; text-decoration:line-through; } +fieldset.dream>div.output.card>div.item.login { border:var(--danger-bg-color) solid 3px; } +fieldset.dream>div.output.card>div.item.server { border:var(--notice-bg-color) solid 3px; } +fieldset.dream>div.output.card>div.item.master { border:var(--danger-bg-color) solid 3px; } fieldset.trans>form.option>div.item.text>input { width:var(--project-width); } fieldset.trans>div.output>fieldset { margin:var(--button-margin); } fieldset.config form.option input[name=key] { width:var(--project-width); } diff --git a/plugin/table.js b/plugin/table.js index 076df573..9549916a 100644 --- a/plugin/table.js +++ b/plugin/table.js @@ -10,7 +10,7 @@ Volcanos(chat.ONIMPORT, {_init: function(can, msg, target) { }, card: function(can, msg, target) { can.sup.onexport.outputMargin = function() { return 260 } can.page.Appends(can, target||can._output, msg.Table(function(value) { value.icon = value.icon||value.image - return {view: [[html.ITEM, value.status]], list: [ + return {view: [[html.ITEM, value.type, value.status]], list: [ {view: [wiki.TITLE, html.DIV], list: [value.icon && {img: can.misc.Resource(can, value.icon, value.name)}, {text: value.name}]}, {view: [wiki.CONTENT, html.DIV, value.text]}, {view: html.ACTION, inner: value.action, _init: function(target) { can.onappend.mores(can, target, value, 5) }},