diff options
author | Marvin Borner | 2019-04-15 15:35:55 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 15:35:55 +0200 |
commit | 60612e0a736d9e0449bead1d99b7f69a613ce04a (patch) | |
tree | e002811a46029023c4b483f1686ee46e03eb1a1a | |
parent | a2a12a1ccb32812fed425333843205697694c236 (diff) |
Added elliptic text overflow
-rw-r--r-- | src/main/resources/css/files.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/resources/css/files.css b/src/main/resources/css/files.css index acbfd6a..b36c6d2 100644 --- a/src/main/resources/css/files.css +++ b/src/main/resources/css/files.css @@ -3,6 +3,7 @@ } table { + table-layout: fixed; width: 100%; } @@ -30,6 +31,27 @@ table thead tr:hover { background-color: #ffffff; } +tr td, tr th { + overflow: hidden; + text-overflow: ellipsis; +} + +tr td:nth-child(0) { + max-width: 40%; +} + +tr td:nth-child(1) { + max-width: 20%; +} + +tr td:nth-child(2) { + max-width: 30%; +} + +tr td:nth-child(3) { + max-width: 10%; +} + .drop { padding: 8px; min-height: calc(100vh - 16px); |