diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/attack/SelectedTechnique.js b/monkey/monkey_island/cc/ui/src/components/report-components/attack/SelectedTechnique.js index d6dc29d6f..8e7ae74b0 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/attack/SelectedTechnique.js +++ b/monkey/monkey_island/cc/ui/src/components/report-components/attack/SelectedTechnique.js @@ -2,6 +2,8 @@ import React from "react"; import Collapse from '@kunukn/react-collapse'; import AttackReport from '../AttackReport'; +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faQuestionCircle} from "@fortawesome/free-solid-svg-icons"; const classNames = require('classnames'); @@ -27,8 +29,15 @@ class SelectedTechnique extends React.Component { const TechniqueComponent = this.state.techComponents[tech_id]; return (
- this.onToggle(tech_id)}> {this.state.techniques[tech_id].title} - + diff --git a/monkey/monkey_island/cc/ui/src/styles/report/AttackReport.scss b/monkey/monkey_island/cc/ui/src/styles/report/AttackReport.scss index 652ab4a22..953cc627d 100644 --- a/monkey/monkey_island/cc/ui/src/styles/report/AttackReport.scss +++ b/monkey/monkey_island/cc/ui/src/styles/report/AttackReport.scss @@ -4,10 +4,6 @@ margin-top: 20px; } -.attack-report .btn-collapse span:nth-of-type(2) { - flex: 0; -} - .attack-report div.attack-legend { margin-top: 30px; } @@ -21,3 +17,11 @@ margin-bottom: 20px; padding: 0; } + +.attack-report .link-to-technique { + margin-right: 10px; +} + +.attack-report .selected-technique { + cursor: default; +}