Skip to content

Commit 5dbc8b7

Browse files
committed
Updated for release 3.3.0
1 parent 6f8fc21 commit 5dbc8b7

File tree

105 files changed

+1511
-781
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1511
-781
lines changed

.classpath

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
<attribute name="module" value="true"/>
2222
</attributes>
2323
</classpathentry>
24-
<classpathentry kind="lib" path="jars/slf4j-api-2.0.9.jar">
24+
<classpathentry kind="lib" path="jars/slf4j-api-2.0.13.jar">
2525
<attributes>
2626
<attribute name="module" value="true"/>
2727
</attributes>
2828
</classpathentry>
29-
<classpathentry kind="lib" path="jars/slf4j-nop-2.0.9.jar">
29+
<classpathentry kind="lib" path="jars/slf4j-nop-2.0.13.jar">
3030
<attributes>
3131
<attribute name="module" value="true"/>
3232
</attributes>
3333
</classpathentry>
34-
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.45.2.0.jar">
34+
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.45.3.0.jar">
3535
<attributes>
3636
<attribute name="module" value="true"/>
3737
</attributes>

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<path id="TMXServer.classpath">
77
<pathelement location="jars/bcp47j.jar" />
88
<pathelement location="jars/json.jar" />
9-
<pathelement location="jars/slf4j-api-2.0.9.jar" />
10-
<pathelement location="jars/slf4j-nop-2.0.9.jar" />
11-
<pathelement location="jars/sqlite-jdbc-3.45.2.0.jar" />
9+
<pathelement location="jars/slf4j-api-2.0.13.jar" />
10+
<pathelement location="jars/slf4j-nop-2.0.13.jar" />
11+
<pathelement location="jars/sqlite-jdbc-3.45.3.0.jar" />
1212
<pathelement location="jars/tmxvalidator.jar" />
1313
<pathelement location="jars/xmljava.jar" />
1414
</path>

css/dark.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import "./theme.css";
22
@import "./neutrals.css";
3+
34
:root {
45
--error-color: #960303;
56
font-size: 16px;
@@ -12,6 +13,11 @@ body {
1213
stroke: var(--gray10);
1314
padding: 0;
1415
margin: 0;
16+
overflow: hidden;
17+
}
18+
19+
.dialog_body {
20+
padding: 8px;
1521
}
1622

1723
.hdivider {
@@ -111,6 +117,7 @@ td.list {
111117
td.editing {
112118
background-color: var(--gray190) !important;
113119
outline: 1px solid var(--themePrimary) !important;
120+
white-space: pre-wrap;
114121
}
115122

116123
td.fixed {
@@ -185,6 +192,10 @@ th {
185192
border-bottom: 2px solid var(--gray150);
186193
}
187194

195+
.leftBorder {
196+
border-left: 2px solid var(--gray150);
197+
}
198+
188199
.currentRow {
189200
border-top: 2px solid var(--themePrimary) !important;
190201
border-bottom: 2px solid var(--themePrimary) !important;
@@ -230,6 +241,15 @@ th {
230241
border-radius: 2px;
231242
}
232243

244+
.spaces {
245+
color: var(--gray40);
246+
background-color: var(--themeTertiary);
247+
white-space-collapse: preserve;
248+
padding-left: 0px;
249+
padding-right: 0px;
250+
border-radius: 2px;
251+
}
252+
233253
.right {
234254
float: right;
235255
}
@@ -344,6 +364,10 @@ label {
344364
padding-right: 4px;
345365
}
346366

367+
.middleLabel {
368+
padding-top: 2px;
369+
}
370+
347371
.column {
348372
display: flex;
349373
flex-direction: column;
@@ -607,6 +631,11 @@ th svg {
607631
white-space: pre-wrap;
608632
}
609633

634+
.container {
635+
width: 100%;
636+
height: 100%;
637+
}
638+
610639
.divContainer {
611640
/* Any container that needs to scroll content */
612641
width: 100%;

css/light.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import "./theme.css";
22
@import "./neutrals.css";
3+
34
:root {
45
--error-color: #960303;
56
font-size: 16px;
@@ -12,6 +13,11 @@ body {
1213
stroke: var(--gray190);
1314
padding: 0;
1415
margin: 0;
16+
overflow: hidden;
17+
}
18+
19+
.dialog_body {
20+
padding: 8px;
1521
}
1622

1723
.hdivider {
@@ -111,6 +117,7 @@ td.list {
111117
td.editing {
112118
background-color: var(--gray10) !important;
113119
outline: 1px solid var(--themePrimary) !important;
120+
white-space: pre-wrap;
114121
}
115122

116123
td.fixed {
@@ -185,6 +192,10 @@ th {
185192
border-bottom: 2px solid var(--gray40);
186193
}
187194

195+
.leftBorder {
196+
border-left: 2px solid var(--gray40);
197+
}
198+
188199
.currentRow {
189200
border-top: 2px solid var(--themePrimary) !important;
190201
border-bottom: 2px solid var(--themePrimary) !important;
@@ -230,6 +241,15 @@ th {
230241
border-radius: 2px;
231242
}
232243

244+
.spaces {
245+
color: var(--gray40);
246+
background-color: var(--themeTertiary);
247+
white-space-collapse: preserve;
248+
padding-left: 0px;
249+
padding-right: 0px;
250+
border-radius: 2px;
251+
}
252+
233253
.right {
234254
float: right;
235255
}
@@ -344,6 +364,10 @@ label {
344364
padding-right: 4px;
345365
}
346366

367+
.middleLabel {
368+
padding-top: 2px;
369+
}
370+
347371
.column {
348372
display: flex;
349373
flex-direction: column;
@@ -607,6 +631,11 @@ th svg {
607631
white-space: pre-wrap;
608632
}
609633

634+
.container {
635+
width: 100%;
636+
height: 100%;
637+
}
638+
610639
.divContainer {
611640
/* Any container that needs to scroll content */
612641
width: 100%;

html/en/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body onload="new About();">
10+
<body class="dialog_body" onload="new About();">
1111
<div class="fill_width center">
1212
<img src="../../images/about.png" alt="about box">
1313
</div>

html/en/addLanguage.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33

44
<head>
55
<title>Add Language</title>
66
<link id="theme" rel="stylesheet" type="text/css" href="../../css/light.css">
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body onload="new AddLanguage();">
10+
<body class="dialog_body" onload="new AddLanguage();">
1111
<table class="fill_width">
1212
<tr>
1313
<td class="middle noWrap"><label for="language">Language</label></td>

html/en/addNote.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body onload="new AddNote();">
10+
<body class="dialog_body" onload="new AddNote();">
1111

1212
<table class="fill_width">
1313
<tr>

html/en/addProperty.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body onload="new AddProperty();">
10+
<body class="dialog_body" onload="new AddProperty();">
1111

1212
<table id="propsTable" class="fill_width">
1313
<tr>

0 commit comments

Comments
 (0)