BookStack/resources/views/exports/parts/styles.blade.php
Dan Brown 7751022c66
Updated migration to carry across more colors, updated export
Updated export to use link color for link.
Export will now copy primary color to link color options for stable
upgrades.
2023-01-28 17:49:48 +00:00

20 lines
561 B
PHP

{{-- Fetch in our standard export styles --}}
<style>
@if (!app()->runningUnitTests())
{!! file_get_contents(public_path('/dist/export-styles.css')) !!}
@endif
</style>
{{-- Apply any additional styles that can't be applied via our standard SCSS export styles --}}
@if ($format === 'pdf')
<style>
/* Patches for CSS variable colors within PDF exports */
a {
color: {{ setting('app-link') }};
}
blockquote {
border-left-color: {{ setting('app-color') }};
}
</style>
@endif