From c289cab002f618fba31392769edc6e36ea676c99 Mon Sep 17 00:00:00 2001 From: Cliff Su Date: Mon, 17 Feb 2020 08:17:34 +0800 Subject: [PATCH] fix: print and back button style Signed-off-by: Cliff Su --- js/functions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/functions.js b/js/functions.js index 03087d9084..07ae5ecf0b 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4510,6 +4510,7 @@ Functions.createPrintAndBackButtons = function () { var backButton = $('',{ type: 'button', value: Messages.back, + class: 'btn btn-secondary', id: 'back_button_print_view' }); backButton.on('click', Functions.removePrintAndBackButton); @@ -4517,6 +4518,7 @@ Functions.createPrintAndBackButtons = function () { var printButton = $('',{ type: 'button', value: Messages.print, + class: 'btn btn-primary', id: 'print_button_print_view' }); printButton.on('click', Functions.printPage);