Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2016-08-21 13:35:22 +0100
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commit
757f16a3b5aa4763c00118f3d7a7284492a84a6a
757f16a3
1 parent
43d9d2eb
Improved page tag box structure and fixed footer in PDF export.
Fixes #162.
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
18 deletions
resources/assets/sass/_pages.scss
resources/views/pages/page-display.blade.php
resources/views/pages/pdf.blade.php
resources/assets/sass/_pages.scss
View file @
757f16a
...
...
@@ -250,13 +250,10 @@
margin
:
0
;
padding
:
0
;
}
span
{
color
:
#666
;
margin-left
:
$-s
;
}
.heading
{
.heading
th
{
padding
:
$-xs
$-s
;
color
:
#444
;
color
:
#333
;
font-weight
:
400
;
}
td
{
border
:
0
;
...
...
@@ -267,9 +264,6 @@
.tag-value
{
color
:
#888
;
}
td
i
{
color
:
#888
;
}
tr
:last-child
td
{
border-bottom
:
none
;
}
...
...
resources/views/pages/page-display.blade.php
View file @
757f16a
...
...
@@ -4,14 +4,20 @@
@if(count($page->tags) > 0)
<div
class=
"tag-display float right"
>
<div
class=
"heading primary-background-light"
>
Page Tags
</div>
<table>
@foreach($page->tags as $tag)
<tr
class=
"tag"
>
<td
@
if
(!$
tag-
>
value) colspan="2" @endif>
<a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}"
>
{{ $tag->name }}
</a></td>
@if($tag->value)
<td
class=
"tag-value"
><a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}"
>
{{$tag->value}}
</a></td>
@endif
<thead>
<tr
class=
"text-left heading primary-background-light"
>
<th
colspan=
"2"
>
Page Tags
</th>
</tr>
@endforeach
</thead>
<tbody>
@foreach($page->tags as $tag)
<tr
class=
"tag"
>
<td
@
if
(!$
tag-
>
value) colspan="2" @endif>
<a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}"
>
{{ $tag->name }}
</a></td>
@if($tag->value)
<td
class=
"tag-value"
><a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}"
>
{{$tag->value}}
</a></td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
@endif
...
...
resources/views/pages/pdf.blade.php
View file @
757f16a
...
...
@@ -3,12 +3,12 @@
@section('head')
<style>
body
{
font-size
:
1
5
px
;
line-height
:
1
;
font-size
:
1
4
px
;
line-height
:
1
.2
;
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
line-height
:
1
;
line-height
:
1
.2
;
}
table
{
...
...
@@ -21,10 +21,21 @@
width
:
auto
!important
;
}
.page-content
.float
{
float
:
none
!important
;
}
.page-content
img
.align-left
,
.page-content
img
.align-right
{
float
:
none
!important
;
clear
:
both
;
display
:
block
;
}
.tag-display
{
min-width
:
0
;
max-width
:
none
;
display
:
none
;
}
</style>
@stop
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment