Previously the draft mode was a phase of the PB, but that had some limitations. Now the phase drafting disappears and therefore the PB can have the status published or not published (in draft mode). That will give more flexibility in order to navigate through the different phases and see how it looks for administrators before publishing the PB and everybody can see. By default, the PB is always created in draft mode, so it gives you the flexibility to adjust and modify anything before publishing it.
38 lines
583 B
SCSS
38 lines
583 B
SCSS
.admin .drafting {
|
|
margin-bottom: 2 * $line-height / 3;
|
|
margin-left: auto;
|
|
|
|
@include breakpoint(large) {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
|
|
.callout {
|
|
flex: 1;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@include breakpoint(small medium only) {
|
|
text-align: right;
|
|
|
|
.callout {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.preview-link {
|
|
@include has-fa-icon(eye, regular);
|
|
@include hollow-button;
|
|
}
|
|
|
|
.publish-link {
|
|
@include regular-button;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.preview-link,
|
|
.publish-link {
|
|
margin-left: $line-height / 2;
|
|
}
|
|
}
|