mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
minor css
This commit is contained in:
parent
556d382570
commit
89dddae4b1
@ -17,4 +17,8 @@
|
|||||||
|
|
||||||
.no-border {
|
.no-border {
|
||||||
border: none;
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
word-wrap: break-word;;
|
||||||
}
|
}
|
@ -19,8 +19,8 @@ var LogEntry = React.createClass({
|
|||||||
<td>
|
<td>
|
||||||
<strong>{this.props.event.data.name}</strong><em>[{this.props.event.type}]</em>
|
<strong>{this.props.event.data.name}</strong><em>[{this.props.event.type}]</em>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td style={{maxWidth: 300}}>
|
||||||
<code className='JSON'>{JSON.stringify(localEventData)}</code>
|
<code className='JSON smalltext'>{JSON.stringify(localEventData)}</code>
|
||||||
</td>
|
</td>
|
||||||
<td>{this.props.event.createdBy}</td>
|
<td>{this.props.event.createdBy}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -11,7 +11,7 @@ var LogEntryList = React.createClass({
|
|||||||
return <LogEntry event={event} key={event.name} />;
|
return <LogEntry event={event} key={event.name} />;
|
||||||
});
|
});
|
||||||
return (
|
return (
|
||||||
<div className='phm'>
|
<div className=''>
|
||||||
<table className='outerborder zebra-striped'>
|
<table className='outerborder zebra-striped'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user