mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-08 07:21:03 +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;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
tbody {
|
||||||
|
td:not(:first-child) {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 30rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar {
|
.toolbar {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue