forked from p15670423/monkey
Merge pull request #607 from guardicore/run_remote_monkey_button_fix
UI remote monkey run button fix
This commit is contained in:
commit
3898872224
|
@ -11,6 +11,8 @@ import {Link} from 'react-router-dom';
|
|||
import AuthComponent from '../AuthComponent';
|
||||
import AwsRunTable from '../run-monkey/AwsRunTable';
|
||||
|
||||
import '../../styles/MonkeyRunPage.scss';
|
||||
|
||||
const loading_css_override = css`
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
|
@ -325,7 +327,8 @@ class RunMonkeyPageComponent extends AuthComponent {
|
|||
Choose the operating system where you want to run the monkey
|
||||
{this.state.ips.length > 1 ? ', and the interface to communicate with.' : '.'}
|
||||
</p>
|
||||
<Nav bsStyle="pills" justified activeKey={this.state.selectedOs} onSelect={this.setSelectedOs}>
|
||||
<Nav bsStyle='pills' id={'bootstrap-override'} className={'runOnOsButtons'}
|
||||
justified activeKey={this.state.selectedOs} onSelect={this.setSelectedOs}>
|
||||
<NavItem key='windows-32' eventKey='windows-32'>Windows (32 bit)</NavItem>
|
||||
<NavItem key='windows-64' eventKey='windows-64'>Windows (64 bit)</NavItem>
|
||||
<NavItem key='linux-32' eventKey='linux-32'>Linux (32 bit)</NavItem>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
$blue: #337ab7;
|
||||
|
||||
#bootstrap-override.runOnOsButtons > li.active > a{
|
||||
background-color: $blue !important;
|
||||
}
|
Loading…
Reference in New Issue