From 58edf329f5c011f44c648f77f299d744c261857b Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Thu, 4 Aug 2022 22:32:04 -0400 Subject: [PATCH] Remove basic print snippets from PHB theme --- themes/V3/5ePHB/snippets.js | 23 +---------------------- themes/V3/Blank/snippets.js | 5 ++--- 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/themes/V3/5ePHB/snippets.js b/themes/V3/5ePHB/snippets.js index 19c389d5b..8b3a3b81a 100644 --- a/themes/V3/5ePHB/snippets.js +++ b/themes/V3/5ePHB/snippets.js @@ -250,26 +250,6 @@ module.exports = [ icon : 'fas fa-print', view : 'style', snippets : [ - { - name : 'A4 Page Size', - icon : 'far fa-file', - gen : dedent`/* A4 Page Size */ - .page{ - width : 210mm; - height : 296.8mm; - }\n\n` - }, - { - name : 'Square Page Size', - icon : 'far fa-file', - gen : dedent`/* Square Page Size */ - .page { - width : 125mm; - height : 125mm; - padding : 12.5mm; - columns : unset; - }\n\n` - }, { name : 'Ink Friendly', icon : 'fas fa-tint', @@ -285,6 +265,5 @@ module.exports = [ }\n\n` }, ] - }, - + } ]; diff --git a/themes/V3/Blank/snippets.js b/themes/V3/Blank/snippets.js index 77dd2fb24..cd508cccb 100644 --- a/themes/V3/Blank/snippets.js +++ b/themes/V3/Blank/snippets.js @@ -213,7 +213,7 @@ module.exports = [ icon : 'fas fa-tint', gen : dedent` /* Ink Friendly */ - *:is(.page,.monster,.note,.descriptive) { + *:is(.page) { background : white !important; filter : drop-shadow(0px 0px 3px #888) !important; } @@ -223,6 +223,5 @@ module.exports = [ }\n\n` }, ] - }, - + } ];