mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-30 00:45:28 +08:00
Make table cell single lined and limit the max width [SCI-7996]
This commit is contained in:
parent
88610d6b38
commit
9e33fae006
1 changed files with 9 additions and 0 deletions
|
@ -18,6 +18,15 @@
|
|||
flex-direction: column;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
||||
tbody {
|
||||
td:not(:first-child) {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 30rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
|
|
Loading…
Add table
Reference in a new issue