Skip to content

Commit

Permalink
fix(dropdowns): Use standard spacing on dropdowns.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Meskers committed Jan 15, 2015
1 parent fbf8b93 commit c21077d
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions src/pivotal-ui/javascripts/dropdowns.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,59 +6,59 @@ var Dropdown = require('react-bootstrap/DropdownButton');
var DropdownItem = require('react-bootstrap/MenuItem');

var LinkDropdown = React.createClass({
render: function () {
return (
<Dropdown bsStyle='link' {...this.props} />
);
}
render: function () {
return (
<Dropdown bsStyle='link' {...this.props} />
);
}
});

var DefaultAltDropdown = React.createClass({
render: function () {
return (
<Dropdown className='btn-default-alt' {...this.props} />
);
}
render: function () {
return (
<Dropdown className='btn-default-alt' {...this.props} />
);
}
});

var PrimaryDropdown = React.createClass({
render: function () {
return (
<Dropdown bsStyle='primary' {...this.props} />
);
}
render: function () {
return (
<Dropdown bsStyle='primary' {...this.props} />
);
}
});

var LowlightDropdown = React.createClass({
render: function () {
return (
<Dropdown className='btn-lowlight' {...this.props} />
);
}
render: function () {
return (
<Dropdown className='btn-lowlight' {...this.props} />
);
}
});

var DangerDropdown = React.createClass({
render: function () {
return (
<Dropdown bsStyle='danger' {...this.props} />
);
}
render: function () {
return (
<Dropdown bsStyle='danger' {...this.props} />
);
}
});

var HighlightDropdown = React.createClass({
render: function () {
return (
<Dropdown className='btn-highlight' {...this.props} />
);
}
render: function () {
return (
<Dropdown className='btn-highlight' {...this.props} />
);
}
});

var HighlightAltDropdown = React.createClass({
render: function () {
return (
<Dropdown className='btn-highlight-alt' {...this.props} />
);
}
render: function () {
return (
<Dropdown className='btn-highlight-alt' {...this.props} />
);
}
});


Expand Down

0 comments on commit c21077d

Please sign in to comment.