mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
Fix descriptions overflowing field (#1925)
This commit is contained in:
parent
a8e34ce419
commit
e6f158e445
1 changed files with 4 additions and 0 deletions
|
@ -253,5 +253,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
/* Adopts same size as the content editable element */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
/* Keep text on single line and hide overflow */
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue