Fixed alignment on export options dropdown.
Fixed bullet list items sitting too close next to floated content. Fixes #34.
Fixed text overlaying images in PDF exports (Floats removed for now). Fixes #53.
Fixed spaced table cells on html & PDF exports.
}
.book-tree .sidebar-page-list {
list-style: none;
}
.book-tree .sidebar-page-list {
list-style: none;
- margin: 0;
- margin-top: $-xs;
+ margin: $-xs 0 0;
+ padding-left: 0;
border-left: 5px solid $color-book;
li a {
display: block;
border-left: 5px solid $color-book;
li a {
display: block;
- list-style: disc;
- margin-left: $-m*1.5;
+ padding-left: $-m * 1.5;
+ list-style: disc inside;
- list-style: decimal;
- margin-left: $-m*1.5;
+ list-style: decimal inside;
+ padding-left: $-m * 1.5;
@import "tables";
@import "header";
@import "lists";
@import "tables";
@import "header";
@import "lists";
-@import "pages";
\ No newline at end of file
+@import "pages";
+
+table {
+ border-spacing: 0;
+ border-collapse: collapse;
+}
\ No newline at end of file
table td {
width: auto !important;
}
table td {
width: auto !important;
}
+
+ .page-content img.align-left, .page-content img.align-right {
+ float: none !important;
+ clear: both;
+ display: block;
+ }
</style>
@stop
\ No newline at end of file
</style>
@stop
\ No newline at end of file
<span dropdown class="dropdown-container">
<div dropdown-toggle class="text-button text-primary"><i class="zmdi zmdi-open-in-new"></i>Export</div>
<ul class="wide">
<span dropdown class="dropdown-container">
<div dropdown-toggle class="text-button text-primary"><i class="zmdi zmdi-open-in-new"></i>Export</div>
<ul class="wide">
- <li><a href="{{$page->getUrl() . '/export/html'}}" target="_blank">Contained Web File <span class="text-muted pull-right">.html</span></a></li>
- <li><a href="{{$page->getUrl() . '/export/pdf'}}" target="_blank">PDF File <span class="text-muted pull-right">.pdf</span></a></li>
- <li><a href="{{$page->getUrl() . '/export/plaintext'}}" target="_blank">Plain Text File <span class="text-muted pull-right">.txt</span></a></li>
+ <li><a href="{{$page->getUrl() . '/export/html'}}" target="_blank">Contained Web File <span class="text-muted float right">.html</span></a></li>
+ <li><a href="{{$page->getUrl() . '/export/pdf'}}" target="_blank">PDF File <span class="text-muted float right">.pdf</span></a></li>
+ <li><a href="{{$page->getUrl() . '/export/plaintext'}}" target="_blank">Plain Text File <span class="text-muted float right">.txt</span></a></li>
</ul>
</span>
@if($currentUser->can('page-update'))
</ul>
</span>
@if($currentUser->can('page-update'))