mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 20:09:01 +08:00
Fixed page edit to have white background
This commit is contained in:
parent
5325870271
commit
49deab3a02
|
@ -419,7 +419,7 @@ class WysiwygEditor {
|
|||
plugins: this.plugins,
|
||||
imagetools_toolbar: 'imageoptions',
|
||||
toolbar: this.getToolBar(),
|
||||
content_style: "body {padding-left: 15px !important; padding-right: 15px !important; margin:0!important; margin-left:auto!important;margin-right:auto!important;}",
|
||||
content_style: "html, body {background: #FFF;} body {padding-left: 15px !important; padding-right: 15px !important; margin:0!important; margin-left:auto!important;margin-right:auto!important;}",
|
||||
style_formats: [
|
||||
{title: "Header Large", format: "h2"},
|
||||
{title: "Header Medium", format: "h3"},
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
overflow: hidden;
|
||||
background-color: #FFF;
|
||||
.faded-small {
|
||||
height: auto;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{--TODO--}}
|
||||
<div page-comments page-id="{{ $page->id }}" class="comments-list">
|
||||
<h5 comments-title class="float left">{{ trans_choice('entities.comment_count', count($page->comments), ['count' => count($page->comments)]) }}</h5>
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
@if(!isset($isDraft))
|
||||
<input type="hidden" name="_method" value="PUT">
|
||||
@endif
|
||||
@include('pages/form', ['model' => $page])
|
||||
@include('pages/form-toolbox')
|
||||
@include('pages.form', ['model' => $page])
|
||||
@include('pages.form-toolbox')
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user