Skip to content
Snippets Groups Projects
Commit 9d084947 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

fix header action colors

parent 0a6d5031
Branches
Tags
No related merge requests found
......@@ -56,7 +56,7 @@ export default React.createClass({
// ex: someone modifies a query but hasn't run/save the change?
return (
<span>
<a className="mx1" href="#" title="Add this data to a dashboard" onClick={this.toggleModal}>
<a className="mx1 text-grey-4 text-brand-hover" href="#" title="Add this data to a dashboard" onClick={this.toggleModal}>
<Icon name='addtodash' />
</a>
{this.addToDash()}
......
......@@ -77,7 +77,9 @@ export default React.createClass({
var fillColor = (this.state.favorite) ? 'text-gold' : 'text-grey-1';
return (
<Icon name="star" width="18px" height="18px" onClick={this.toggleFavorite}></Icon>
<a className="mx1 text-grey-4 text-gold-hover transition-color" href="#" onClick={this.toggleFavorite}>
<Icon name="star" width="18px" height="18px"></Icon>
</a>
);
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment