Switch to using tables for properties.
This commit is contained in:
parent
b8eacd9c79
commit
1507050128
@ -46,3 +46,34 @@
|
|||||||
padding: 5px 5px 5px 20px;
|
padding: 5px 5px 5px 20px;
|
||||||
background: #eeeeee;
|
background: #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.OrgAstProperties {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
> tbody {
|
||||||
|
> tr {
|
||||||
|
border-width: 1px 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #000000;
|
||||||
|
|
||||||
|
> th,
|
||||||
|
> td {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
> th {
|
||||||
|
font-weight: 700;
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 5px;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> tr:nth-child(odd) {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
> tr:nth-child(even) {
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
1
src/OrgAst.module.css.d.ts
vendored
1
src/OrgAst.module.css.d.ts
vendored
@ -3,3 +3,4 @@ export const OrgAstNode: string;
|
|||||||
export const OrgAstNodeType: string;
|
export const OrgAstNodeType: string;
|
||||||
export const OrgAstChildren: string;
|
export const OrgAstChildren: string;
|
||||||
export const selected: string;
|
export const selected: string;
|
||||||
|
export const OrgAstProperties: string;
|
||||||
|
@ -137,15 +137,19 @@ const OrgPropertiesList = (props: {
|
|||||||
const entries = Object.entries(props.properties).map(([key, value]) => {
|
const entries = Object.entries(props.properties).map(([key, value]) => {
|
||||||
return (
|
return (
|
||||||
<Fragment key={key}>
|
<Fragment key={key}>
|
||||||
<dt>{key}</dt>
|
<tr>
|
||||||
<dd>{JSON.stringify(value)}</dd>
|
<th scope="row">{key}:</th>
|
||||||
|
<td>{JSON.stringify(value)}</td>
|
||||||
|
</tr>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
return (
|
return (
|
||||||
<dl>
|
<table className={styles.OrgAstProperties}>
|
||||||
|
<tbody>
|
||||||
{entries}
|
{entries}
|
||||||
</dl>
|
</tbody>
|
||||||
|
</table>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user