Index: arms/css/jspreadsheet/custom_sheet.css =================================================================== diff -u -re84394e4e19f701075eae6336322bfd199483815 -r7465b25853331ffdad27015809ad70c055f0ce80 --- arms/css/jspreadsheet/custom_sheet.css (.../custom_sheet.css) (revision e84394e4e19f701075eae6336322bfd199483815) +++ arms/css/jspreadsheet/custom_sheet.css (.../custom_sheet.css) (revision 7465b25853331ffdad27015809ad70c055f0ce80) @@ -37,7 +37,7 @@ .jexcel_content{ padding-right: 0 !important; font-size: 12px; - line-height: 15px !important; /* 행간 설정 */ + line-height: 20px !important; /* 행간 설정 */ } .jexcel_toolbar i.jexcel_toolbar_item { @@ -156,7 +156,11 @@ background-color: rgba(51,51,51,0.7) !important; } +.jexcel tbody tr, +table.jexcel tbody tr{ +} + .jexcel, table.jexcel { border: none !important; @@ -174,6 +178,7 @@ border-bottom: 1px solid var(--dark_jexcel_border_color_5) !important; border-left: none !important;; padding: 5px !important; + line-height: 1.5; } .jexcel .highlight, table.jexcel .highlight { Index: arms/js/common/jspreadsheet/spreadsheet.js =================================================================== diff -u -re84394e4e19f701075eae6336322bfd199483815 -r7465b25853331ffdad27015809ad70c055f0ce80 --- arms/js/common/jspreadsheet/spreadsheet.js (.../spreadsheet.js) (revision e84394e4e19f701075eae6336322bfd199483815) +++ arms/js/common/jspreadsheet/spreadsheet.js (.../spreadsheet.js) (revision 7465b25853331ffdad27015809ad70c055f0ce80) @@ -119,14 +119,14 @@ var items = []; // Save - items.push({ - title: jSuites.translate("Save as"), - shortcut: "Ctrl + S", - icon: "save", - onclick: function () { - o.download(); - } - }); + // items.push({ + // title: jSuites.translate("Save as"), + // shortcut: "Ctrl + S", + // icon: "save", + // onclick: function () { + // o.download(); + // } + // }); return items; }, @@ -143,7 +143,7 @@ var $searchInput = $('' + - ' ' + + ' ' + ''); $jexcel.find(".jexcel_toolbar_item[data-k='undo']").addClass("fa fa-mail-reply "); $jexcel.find(".jexcel_toolbar_item[data-k='redo']").addClass("fa fa-mail-forward ");