Skip to content

Commit

Permalink
error with large columns in table view corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Heinecke committed Feb 21, 2025
1 parent 6e9ec27 commit 5808570
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 105 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

## Version 2.29.3
* error with large columns in table view corrected

## Version 2.29.2
* corrected bug: "<" and ">" in comments are now correctly displayed

Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM openjdk:17-alpine

ARG VERSION=2.29.2
# docker build --build-arg VERSION=2.29.2 -t jheinecke/conllueditor:2.29.2 .
# docker build --build-arg VERSION=2.29.2 -t jheinecke/conllueditor:latest .
ARG VERSION=2.29.3
# docker build --build-arg VERSION=2.29.3 -t jheinecke/conllueditor:2.29.3 .
# docker build --build-arg VERSION=2.29.3 -t jheinecke/conllueditor:latest .
# 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
# docker push jheinecke/conllueditor:2.29.2
# docker push jheinecke/conllueditor:2.29.3
# docker push jheinecke/conllueditor:latest

# docker exec -it conllueditor /bin/sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The editor provides the following functionalities:
* finding similar or identical sentence in a list of CoNLL-U files, see section [Find Similar Sentences](#find-similar-sentences)
* configuring the UI on order to hide unneeded functionalities which otherwise clutter the UI

Current version: 2.29.2 (see [change history](CHANGES.md))
Current version: 2.29.3 (see [change history](CHANGES.md))

ConlluEditor can also be used as front-end to display the results of dependency parsing in the same way as the editor.
* dependency tree/dependency hedge
Expand Down
13 changes: 6 additions & 7 deletions gui/table.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** This library is under the 3-Clause BSD License
Copyright (c) 2018-2024, Orange S.A.
Copyright (c) 2018-2025, Orange S.A.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Expand Down Expand Up @@ -28,27 +28,26 @@ are permitted provided that the following conditions are met:
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@author Johannes Heinecke
@version 2.27.0 as of 28th September 2024
@version 2.29.3 as of 21st February 2025
*/



.conllutable {
border-collapse: collapse;
table-layout:fixed;
oomargin: 0 auto;
margin-top: 0px;
white-space: preserve nowrap;
}



table.conllutable td {
border: 1px solid #8a8;
oocolor: black;
}

table.conllutable th {
border: 1px solid #8a8;
oocolor: black;
}


Expand All @@ -70,8 +69,8 @@ table.conllutable th {
text-align: right;
}

.iform, .ilemma, .iupos, .ixpos, .ihead, .ideprel, .ideps, .imisc {
width: 100%;
.icol {
width: 100%;
}

/* make radiobutton look like normal buttons */
Expand Down
Loading

0 comments on commit 5808570

Please sign in to comment.