Skip to content

Commit

Permalink
make chart title larger, fix explore actions btn spacing (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alanna Scott authored Nov 29, 2016
1 parent c43fc38 commit 18c43aa
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
36 changes: 19 additions & 17 deletions superset/assets/javascripts/explorev2/components/ChartContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,27 +141,29 @@ class ChartContainer extends React.Component {
header={
<div
id="slice-header"
className="panel-title"
className="clearfix panel-title-large"
>
{this.props.slice_name}
<div className="pull-left">
{this.props.slice_name}

<FaveStar
sliceId={this.props.slice_id}
actions={this.props.actions}
isStarred={this.props.isStarred}
/>
<FaveStar
sliceId={this.props.slice_id}
actions={this.props.actions}
isStarred={this.props.isStarred}
/>

<TooltipWrapper
label="edit-desc"
tooltip="Edit Description"
>
<a
className="edit-desc-icon"
href={`/slicemodelview/edit/${this.props.slice_id}`}
<TooltipWrapper
label="edit-desc"
tooltip="Edit Description"
>
<i className="fa fa-edit" />
</a>
</TooltipWrapper>
<a
className="edit-desc-icon"
href={`/slicemodelview/edit/${this.props.slice_id}`}
>
<i className="fa fa-edit" />
</a>
</TooltipWrapper>
</div>

<div className="pull-right">
<ExploreActionButtons
Expand Down
4 changes: 4 additions & 0 deletions superset/assets/stylesheets/less/cosmo/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ label {
}
}

.panel-title-large {
font-size: 24px;
}

a.list-group-item {

&-success {
Expand Down

0 comments on commit 18c43aa

Please sign in to comment.