mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-13 12:21:46 +00:00
Print Styles: Removed use of seperate style sheet
Seemed a bit redundant and complicated, since we're only adding a few extra styles. Just merged into main styles instead.
This commit is contained in:
parent
c5d5b6e3c1
commit
bd7c7eb8d6
4 changed files with 6 additions and 7 deletions
resources
|
@ -1,6 +1,3 @@
|
||||||
@use "sass:math";
|
|
||||||
@import "variables";
|
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
|
@ -23,6 +23,10 @@
|
||||||
@import "pages";
|
@import "pages";
|
||||||
@import "content";
|
@import "content";
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
@import "print";
|
||||||
|
}
|
||||||
|
|
||||||
// Jquery Sortable Styles
|
// Jquery Sortable Styles
|
||||||
.dragged {
|
.dragged {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -17,9 +17,8 @@
|
||||||
<meta property="og:url" content="{{ url()->current() }}">
|
<meta property="og:url" content="{{ url()->current() }}">
|
||||||
@stack('social-meta')
|
@stack('social-meta')
|
||||||
|
|
||||||
<!-- Styles and Fonts -->
|
<!-- Styles -->
|
||||||
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
||||||
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
|
|
||||||
|
|
||||||
<!-- Icons -->
|
<!-- Icons -->
|
||||||
<link rel="icon" type="image/png" sizes="256x256" href="{{ setting('app-icon') ?: url('/icon.png') }}">
|
<link rel="icon" type="image/png" sizes="256x256" href="{{ setting('app-icon') ?: url('/icon.png') }}">
|
||||||
|
|
|
@ -9,9 +9,8 @@
|
||||||
<meta name="viewport" content="width=device-width">
|
<meta name="viewport" content="width=device-width">
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
|
||||||
<!-- Styles and Fonts -->
|
<!-- Styles -->
|
||||||
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
||||||
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
|
|
||||||
|
|
||||||
<!-- Custom Styles & Head Content -->
|
<!-- Custom Styles & Head Content -->
|
||||||
@include('layouts.parts.custom-styles')
|
@include('layouts.parts.custom-styles')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue