@@ -3,7 +3,7 @@ Hooks.on("renderSidebarTab", async (app, html) => {
3
3
return ;
4
4
}
5
5
if ( app . options . id == "tables" ) {
6
- // -- CSV Mode --
6
+ // -- Values Mode --
7
7
let csvButton = $ ( `<button class='new-easytable'><i class='fas fa-file-csv'></i> ${ game . i18n . localize ( "EASYTABLE.ui.button-csv-title" ) } </button>` )
8
8
let settings = game . settings . get ( "EasyTable" , "tableSettings" )
9
9
let title = settings . title ;
@@ -17,7 +17,7 @@ Hooks.on("renderSidebarTab", async (app, html) => {
17
17
<div>
18
18
<div class="form-group"><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.table-title" ) } </div><input type='text' name="tableTitle" value="${ title } "/></div>
19
19
<div class="form-group"><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.table-description" ) } </div><input type='text' name="tableDescription" value="${ description } "/></div>
20
- <div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.csv-data-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.csv-data" ) } </div><textarea name="csv">${ csvData } </textarea></div>
20
+ <div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.csv-data-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.csv-data" ) } </div><textarea class="easytable-textarea" name="csv">${ csvData } </textarea></div>
21
21
<div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.separator-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.separator" ) } </div><input type='text' name="separator" maxlength="1" value="${ separator } "/></div>
22
22
<div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.defaultcollection-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.csv.defaultcollection" ) } </div>
23
23
<select name="defaultcollection" id="defaultcollection">
@@ -85,7 +85,7 @@ Hooks.on("renderSidebarTab", async (app, html) => {
85
85
content : `<div>
86
86
<div class="form-group"><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-title" ) } </div><input type='text' name="tableTitle" value="${ title } "/></div>
87
87
<div class="form-group"><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-description" ) } </div><input type='text' name="tableDescription" value=""/></div>
88
- <div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-data-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-data" ) } </div><textarea name="tableData"></textarea></div>
88
+ <div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-data-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.table-data" ) } </div><textarea class="easytable-textarea" name="tableData"></textarea></div>
89
89
<div class="form-group" title="${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.safemode-tooltip" ) } "><div>${ game . i18n . localize ( "EASYTABLE.ui.dialog.tablepaste.safemode" ) } </div><input type="checkbox" id="safeMode" name="safeMode"></div>
90
90
<hr/>
91
91
</div>
@@ -423,7 +423,7 @@ class EasyTable {
423
423
`<h2>
424
424
${ game . i18n . localize ( 'EASYTABLE.ui.dialog.export.output.separator-issue-none' ) }
425
425
</h2>` }
426
- <textarea style="height:300px">${ output . trim ( ) } </textarea>` ,
426
+ <textarea class="easytable-textarea" style="height:300px">${ output . trim ( ) } </textarea>` ,
427
427
buttons : {
428
428
Copy : {
429
429
label : game . i18n . localize ( 'EASYTABLE.ui.dialog.export.output.button-copy' ) ,
0 commit comments