Skip to content
Snippets Groups Projects
Commit 13e926cb authored by John Cowen's avatar John Cowen
Browse files

ui: Be more exact with intent for table truncation

Truncation should only happen currently on table content if the tag
within the td is the only child
parent 39b055c2
No related merge requests found
......@@ -27,10 +27,14 @@
display: block;
}
%table td:not(.actions),
%table td:not(.actions) > *:only-child {
overflow-x: hidden;
}
%table td:not(.actions) > * {
white-space: nowrap;
}
%table td:not(.actions) > *:only-child {
text-overflow: ellipsis;
overflow-x: hidden;
}
%table td {
height: 50px;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment