Dan Brown

Forced browser scrollbar, Added custom theme compatible logo

Also removed link to search all pages if no pages mached search on global search page.
Closes #74.

3.06 KB | W: | H:

4.57 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
......@@ -188,3 +188,7 @@ input:checked + .toggle-switch {
#login-form label.toggle-switch {
margin-left: $-xl;
}
.image-picker img {
background-color: #BBB;
}
\ No newline at end of file
......
......@@ -4,6 +4,10 @@
html {
background-color: #FFFFFF;
height: 100%;
overflow-y: scroll;
&.flexbox {
overflow-y: hidden;
}
}
body {
font-family: $text;
......
<!DOCTYPE html>
<html>
<html class="@yield('body-class')">
<head>
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name', 'BookStack') }}</title>
......
......@@ -7,7 +7,11 @@
<h1>Search Results&nbsp;&nbsp;&nbsp; <span class="text-muted">{{$searchTerm}}</span></h1>
<p>
@if(count($pages) > 0)
<a href="/search/pages?term={{$searchTerm}}" class="text-page"><i class="zmdi zmdi-file-text"></i>View all matched pages</a>
@endif
@if(count($chapters) > 0)
&nbsp; &nbsp;&nbsp;
......