mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
clarify css comments
This commit is contained in:
parent
7199e80b76
commit
4621d2dd85
1 changed files with 6 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/* limit table cells from wrapping more than 2 lines */
|
||||
/* https://stackoverflow.com/a/13924997/2343739 */
|
||||
/* https://stackoverflow.com/a/22042054/2343739 */
|
||||
td > div {
|
||||
/* limit table cells from wrapping more than 2 lines */
|
||||
/* https://stackoverflow.com/a/13924997/2343739 */
|
||||
/* https://stackoverflow.com/a/22042054/2343739 */
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
|
|
@ -9,5 +9,7 @@ td > div {
|
|||
-webkit-line-clamp: 2; /* number of lines to show */
|
||||
line-height: 1.5; /* fallback */
|
||||
max-height: 3em; /* fallback */
|
||||
min-height: 3em; /* fixed row height */
|
||||
|
||||
/* fixed row height */
|
||||
min-height: 3em;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue