diff options
author | ArthurHoaro <arthur@hoa.ro> | 2019-05-25 15:38:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 15:38:49 +0200 |
commit | 8ed59f107e5b373f3517b3c33e817e70375829c8 (patch) | |
tree | f555141220f40673be61e597ba4d47718d2b382c /assets | |
parent | 5f8f6134bc01b4c1abf82f222a0b25801b2d5cad (diff) | |
parent | 374f89e721047bb983d3c3270e73b2ffe8d9d079 (diff) | |
download | Shaarli-8ed59f107e5b373f3517b3c33e817e70375829c8.tar.gz Shaarli-8ed59f107e5b373f3517b3c33e817e70375829c8.tar.zst Shaarli-8ed59f107e5b373f3517b3c33e817e70375829c8.zip |
Merge pull request #1301 from ArthurHoaro/template/print-css
Add print CSS rules to the default template
Diffstat (limited to 'assets')
-rw-r--r-- | assets/default/scss/shaarli.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/assets/default/scss/shaarli.scss b/assets/default/scss/shaarli.scss index 95e2ba93..9e5464a0 100644 --- a/assets/default/scss/shaarli.scss +++ b/assets/default/scss/shaarli.scss | |||
@@ -1611,3 +1611,17 @@ form { | |||
1611 | white-space: nowrap; | 1611 | white-space: nowrap; |
1612 | } | 1612 | } |
1613 | } | 1613 | } |
1614 | |||
1615 | // Print rules | ||
1616 | @media print { | ||
1617 | .shaarli-menu { | ||
1618 | position: absolute; | ||
1619 | } | ||
1620 | |||
1621 | .search-linklist, | ||
1622 | .link-count-block, | ||
1623 | .linklist-item-infos-controls-group, | ||
1624 | .mobile-buttons { | ||
1625 | display: none; | ||
1626 | } | ||
1627 | } | ||