Skip to content
Snippets Groups Projects
Commit ff0738cb authored by Mattia Mancini's avatar Mattia Mancini
Browse files

OSB-31: table size

parent ea2309a7
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
...@@ -34,9 +34,22 @@ tr:hover { ...@@ -34,9 +34,22 @@ tr:hover {
min-width: 12rem !important; min-width: 12rem !important;
cursor: pointer; } cursor: pointer; }
.line-header-dropdownbutton { .tab-navbar {
display: inline; min-height: 2em !important; }
float: right; }
.clickable-nav-link, .clickable-tab-active, .clickable-tab-unactive {
border-style: none; }
.clickable-tab-active {
color: white !important;
background-color: #a7689d; }
.clickable-tab {
cursor: pointer;
color: #490f44; }
.clickable-tab:hover {
color: #a7689d; }
@keyframes animation-open { @keyframes animation-open {
from { from {
...@@ -44,6 +57,20 @@ tr:hover { ...@@ -44,6 +57,20 @@ tr:hover {
to { to {
transform: rotate(180deg); } } transform: rotate(180deg); } }
@keyframes animation-close {
from {
transform: rotate(180deg); }
to {
transform: rotate(0deg); } }
.line-header-dropdownbutton {
display: inline;
float: right;
animation: animation-close;
animation-duration: 100ms;
animation-iteration-count: 1;
animation-timing-function: linear; }
.line-header-dropdownbutton-up { .line-header-dropdownbutton-up {
transform: rotate(180deg); transform: rotate(180deg);
animation: animation-open; animation: animation-open;
......
...@@ -382,7 +382,7 @@ class ComponentClass extends Component { ...@@ -382,7 +382,7 @@ class ComponentClass extends Component {
const rows = this.renderTestLines(this.props.data) const rows = this.renderTestLines(this.props.data)
const jsx = ( const jsx = (
<ReactTableContainer width="90%" height="90vh"> <ReactTableContainer width="98%" maxHeight="80vh">
<table className="table-sm table-hover"> <table className="table-sm table-hover">
{this.renderHeader()} {this.renderHeader()}
<tbody> <tbody>
...@@ -427,13 +427,17 @@ class StationTestViewC extends Component { ...@@ -427,13 +427,17 @@ class StationTestViewC extends Component {
} }
} }
isActiveClass = (componentType) => {
const className = this.state.activeTab === componentType ? 'active' : 'unactive'
return className
}
render() { render() {
const stationType = LOFARDefinitions.stationTypeFromName(this.props.selectedStation); const stationType = LOFARDefinitions.stationTypeFromName(this.props.selectedStation);
const navBar = Object.keys(this.props.data).map((componentType, key) => const navBar = Object.keys(this.props.data).map((componentType, key) =>
(<NavItem key={key} className="nav-pills"> (<NavItem key={key} className="clickable-tab">
<NavLink className={classnames({active: this.state.activeTab === componentType})} <NavLink className={'clickable-tab-' + this.isActiveClass(componentType)}
onClick={() => this.toggle(componentType)}>{componentType}</NavLink> onClick={() => this.toggle(componentType)}>{componentType}</NavLink>
</NavItem>) </NavItem>)
); );
...@@ -444,7 +448,7 @@ class StationTestViewC extends Component { ...@@ -444,7 +448,7 @@ class StationTestViewC extends Component {
return ( return (
<div> <div>
<Nav tabs> <Nav tabs className="component-type-selector">
{navBar} {navBar}
</Nav> </Nav>
<TabContent activeTab={this.state.activeTab}> <TabContent activeTab={this.state.activeTab}>
......
...@@ -41,9 +41,36 @@ tr:hover { ...@@ -41,9 +41,36 @@ tr:hover {
cursor: pointer; cursor: pointer;
} }
.line-header-dropdownbutton { .tab-navbar {
display: inline; min-height: 2em !important;
float: right; }
.clickable-nav-link{
border-style: none;
}
.clickable-tab-active{
@extend .clickable-nav-link;
color: white !important;
background-color: $primary-light;
}
.clickable-tab-unactive{
@extend .clickable-nav-link;
}
.component-type-selector {
}
.clickable-tab {
cursor: pointer;
color: $primary-dark;
}
.clickable-tab:hover {
color: $primary-light;
} }
@keyframes animation-open { @keyframes animation-open {
...@@ -53,6 +80,24 @@ tr:hover { ...@@ -53,6 +80,24 @@ tr:hover {
transform: rotate(180deg); transform: rotate(180deg);
} }
} }
@keyframes animation-close {
from {
transform: rotate(180deg);
} to {
transform: rotate(0deg);
}
}
.line-header-dropdownbutton {
display: inline;
float: right;
animation: animation-close;
animation-duration: 100ms;
animation-iteration-count: 1;
animation-timing-function: linear;
}
.line-header-dropdownbutton-up { .line-header-dropdownbutton-up {
transform: rotate(180deg); transform: rotate(180deg);
animation: animation-open; animation: animation-open;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment