Skip to content

Commit

Permalink
changed styling of button-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
endurance21 committed Feb 20, 2020
1 parent 527a7b6 commit fad5a8f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/client/entity-editor/button-bar/alias-button.js
Expand Up @@ -50,7 +50,7 @@ function AliasButton({
<FontAwesomeIcon className="margin-right-0-5 text-danger" icon="times"/>;

return (
<Button bsStyle="link" {...props}>
<Button bsStyle="success" {...props}>
{iconElement}
{text}
</Button>
Expand Down
10 changes: 5 additions & 5 deletions src/client/entity-editor/button-bar/button-bar.js
Expand Up @@ -67,15 +67,15 @@ function ButtonBar({
return (
<div>
<form>
<Row className="margin-top-1">
<Col className="text-center" md={4}>
<Row >
<Col className="text-center margin-top-1" md={4} >
<AliasButton
aliasesInvalid={aliasesInvalid}
numAliases={numAliases}
onClick={onAliasButtonClick}
/>
</Col>
<Col className="text-center" md={4}>
<Col className="text-center margin-top-1" md={4}>
<IdentifierButton
identifiersInvalid={identifiersInvalid}
numIdentifiers={numIdentifiers}
Expand All @@ -84,9 +84,9 @@ function ButtonBar({
</Col>
{
!disambiguationVisible &&
<Col className="text-center" md={4}>
<Col className="text-center margin-top-1" md={4}>
<Button
bsStyle="link"
bsStyle="success"
onClick={onDisambiguationButtonClick}
>
Add disambiguation…
Expand Down
2 changes: 1 addition & 1 deletion src/client/entity-editor/button-bar/identifier-button.js
Expand Up @@ -50,7 +50,7 @@ function IdentifierButton({
<FontAwesomeIcon className="margin-right-0-5 text-danger" icon="times"/>;

return (
<Button bsStyle="link" {...props}>
<Button bsStyle="success" {...props}>
{iconElement}
{text}
</Button>
Expand Down

0 comments on commit fad5a8f

Please sign in to comment.