Fixed style name errors
This commit is contained in:
parent
9538c3f0e6
commit
04005b14d7
|
@ -13,7 +13,7 @@ const columns = [
|
||||||
const pillarLabels = pillars.map((pillar) =>
|
const pillarLabels = pillars.map((pillar) =>
|
||||||
<PillarLabel key={pillar.name} pillar={pillar.name} status={pillar.status}/>
|
<PillarLabel key={pillar.name} pillar={pillar.name} status={pillar.status}/>
|
||||||
);
|
);
|
||||||
return <div style={{"text-align": "center"}}>{pillarLabels}</div>;
|
return <div style={{textAlign: "center"}}>{pillarLabels}</div>;
|
||||||
},
|
},
|
||||||
maxWidth: 200,
|
maxWidth: 200,
|
||||||
style: {'whiteSpace': 'unset'}
|
style: {'whiteSpace': 'unset'}
|
||||||
|
|
|
@ -35,7 +35,7 @@ class ZeroTrustReportLegend extends Component {
|
||||||
with the tests results.
|
with the tests results.
|
||||||
</p>
|
</p>
|
||||||
<h4>Statuses</h4>
|
<h4>Statuses</h4>
|
||||||
<ul style={{"list-style": "none"}}>
|
<ul style={{listStyle: "none"}}>
|
||||||
<li>
|
<li>
|
||||||
<div style={{display: "inline-block"}}>
|
<div style={{display: "inline-block"}}>
|
||||||
<StatusLabel showText={true} status={ZeroTrustStatuses.conclusive}/>
|
<StatusLabel showText={true} status={ZeroTrustStatuses.conclusive}/>
|
||||||
|
|
|
@ -15,7 +15,7 @@ export default class SinglePillarRecommendationsStatus extends AuthComponent {
|
||||||
<Panel>
|
<Panel>
|
||||||
<Panel.Heading>
|
<Panel.Heading>
|
||||||
<Panel.Title toggle>
|
<Panel.Title toggle>
|
||||||
<h3 style={{"text-align": "center", "margin-top": "1px", "margin-bottom": "1px"}}>
|
<h3 style={{textAlign: "center", marginTop: "1px", marginBottom: "1px"}}>
|
||||||
<i className="fa fa-chevron-down" /> <PillarLabel pillar={this.props.pillar} status={this.props.pillarsToStatuses[this.props.pillar]} />
|
<i className="fa fa-chevron-down" /> <PillarLabel pillar={this.props.pillar} status={this.props.pillarsToStatuses[this.props.pillar]} />
|
||||||
</h3>
|
</h3>
|
||||||
</Panel.Title>
|
</Panel.Title>
|
||||||
|
|
|
@ -35,14 +35,8 @@ class VennDiagram extends React.Component {
|
||||||
People: {cx: -this.width2By7, cy: 0, r: this.sixthWidth, offset: {x: this.width1By11, y: 0}, popover: 'right'},
|
People: {cx: -this.width2By7, cy: 0, r: this.sixthWidth, offset: {x: this.width1By11, y: 0}, popover: 'right'},
|
||||||
Networks: {cx: this.width2By7, cy: 0, r: this.sixthWidth, offset: {x: -this.width1By11, y: 0}, popover: 'left'},
|
Networks: {cx: this.width2By7, cy: 0, r: this.sixthWidth, offset: {x: -this.width1By11, y: 0}, popover: 'left'},
|
||||||
Devices: {cx: 0, cy: this.width2By7, r: this.sixthWidth, offset: {x: 0, y: -this.width1By11}, popover: 'top'},
|
Devices: {cx: 0, cy: this.width2By7, r: this.sixthWidth, offset: {x: 0, y: -this.width1By11}, popover: 'top'},
|
||||||
Workloads: {
|
Workloads: {cx: 0, cy: -this.width2By7, r: this.sixthWidth, offset: {x: 0, y: this.width1By11}, popover: 'bottom'},
|
||||||
cx: 0,
|
VisibilityAndAnalytics: {inner: this.thirdWidth - this.width1By28, outer: this.thirdWidth, popover: 'right'},
|
||||||
cy: -this.width2By7,
|
|
||||||
r: this.sixthWidth,
|
|
||||||
offset: {x: 0, y: this.width1By11},
|
|
||||||
popover: 'bottom'
|
|
||||||
},
|
|
||||||
VisibilityAndAnalytics: {inner: this.thirdWidth - this.width1By28, outer: this.thirdWidth, popover: 'left'},
|
|
||||||
AutomationAndOrchestration: {
|
AutomationAndOrchestration: {
|
||||||
inner: this.thirdWidth - this.width1By28 * 2 - this.arcNodesGap,
|
inner: this.thirdWidth - this.width1By28 * 2 - this.arcNodesGap,
|
||||||
outer: this.thirdWidth - this.width1By28 - this.arcNodesGap,
|
outer: this.thirdWidth - this.width1By28 - this.arcNodesGap,
|
||||||
|
|
Loading…
Reference in New Issue