Skip to content

Commit 5808570

Browse files
author
Johannes Heinecke
committed
error with large columns in table view corrected
1 parent 6e9ec27 commit 5808570

File tree

6 files changed

+114
-105
lines changed

6 files changed

+114
-105
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changes
22

3+
## Version 2.29.3
4+
* error with large columns in table view corrected
5+
36
## Version 2.29.2
47
* corrected bug: "<" and ">" in comments are now correctly displayed
58

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM openjdk:17-alpine
22

3-
ARG VERSION=2.29.2
4-
# docker build --build-arg VERSION=2.29.2 -t jheinecke/conllueditor:2.29.2 .
5-
# docker build --build-arg VERSION=2.29.2 -t jheinecke/conllueditor:latest .
3+
ARG VERSION=2.29.3
4+
# docker build --build-arg VERSION=2.29.3 -t jheinecke/conllueditor:2.29.3 .
5+
# docker build --build-arg VERSION=2.29.3 -t jheinecke/conllueditor:latest .
66
# docker run -t --rm --name conllueditor -p 5555:5555 --user 1000:1000 -v </absolute/path/to/datadir>:/data --env filename=tt.conllu jheinecke/conllueditor:latest
7-
# docker push jheinecke/conllueditor:2.29.2
7+
# docker push jheinecke/conllueditor:2.29.3
88
# docker push jheinecke/conllueditor:latest
99

1010
# docker exec -it conllueditor /bin/sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The editor provides the following functionalities:
2525
* finding similar or identical sentence in a list of CoNLL-U files, see section [Find Similar Sentences](#find-similar-sentences)
2626
* configuring the UI on order to hide unneeded functionalities which otherwise clutter the UI
2727

28-
Current version: 2.29.2 (see [change history](CHANGES.md))
28+
Current version: 2.29.3 (see [change history](CHANGES.md))
2929

3030
ConlluEditor can also be used as front-end to display the results of dependency parsing in the same way as the editor.
3131
* dependency tree/dependency hedge

gui/table.css

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** This library is under the 3-Clause BSD License
22
3-
Copyright (c) 2018-2024, Orange S.A.
3+
Copyright (c) 2018-2025, Orange S.A.
44
55
Redistribution and use in source and binary forms, with or without modification,
66
are permitted provided that the following conditions are met:
@@ -28,27 +28,26 @@ are permitted provided that the following conditions are met:
2828
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
3030
@author Johannes Heinecke
31-
@version 2.27.0 as of 28th September 2024
31+
@version 2.29.3 as of 21st February 2025
3232
*/
3333

3434

35+
3536
.conllutable {
3637
border-collapse: collapse;
3738
table-layout:fixed;
38-
oomargin: 0 auto;
3939
margin-top: 0px;
40+
white-space: preserve nowrap;
4041
}
4142

4243

4344

4445
table.conllutable td {
4546
border: 1px solid #8a8;
46-
oocolor: black;
4747
}
4848

4949
table.conllutable th {
5050
border: 1px solid #8a8;
51-
oocolor: black;
5251
}
5352

5453

@@ -70,8 +69,8 @@ table.conllutable th {
7069
text-align: right;
7170
}
7271

73-
.iform, .ilemma, .iupos, .ixpos, .ihead, .ideprel, .ideps, .imisc {
74-
width: 100%;
72+
.icol {
73+
width: 100%;
7574
}
7675

7776
/* make radiobutton look like normal buttons */

0 commit comments

Comments
 (0)