mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Added icons to publish and revert buttons
This commit is contained in:
parent
8554b43ccc
commit
d51e94c035
@ -118,6 +118,7 @@ class CampaignListContainer extends SilverStripeComponent {
|
||||
style={'success'}
|
||||
loading={this.props.campaign.isPublishing}
|
||||
handleClick={this.handlePublish}
|
||||
icon={'rocket'}
|
||||
/>
|
||||
);
|
||||
} else if (this.props.record.State === 'published') {
|
||||
@ -125,7 +126,8 @@ class CampaignListContainer extends SilverStripeComponent {
|
||||
button = (
|
||||
<FormAction
|
||||
label={i18n._t('Campaigns.REVERTCAMPAIGN')}
|
||||
style={'warning'}
|
||||
style={'default'}
|
||||
icon={'back-in-time'}
|
||||
disabled
|
||||
/>
|
||||
);
|
||||
|
@ -1,9 +1,9 @@
|
||||
.cms-south-actions {
|
||||
height: 53px;
|
||||
.cms-south-actions { // Todo: update variables
|
||||
height: 53px; // navbar-total-height
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
border-top: 1px solid #ddd;
|
||||
background-color: #f6f7f8;
|
||||
padding: 8px 15px;
|
||||
border-top: 1px solid #ddd; // $border-color
|
||||
background-color: #f6f7f8; // $body-bg
|
||||
padding: 10px 15px; // $spacer-y*.625 $spacer-x
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user