| 12345678910111213141516 |
- /*
- * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- :root {
- --ck-mention-list-max-height: 300px;
- }
- .ck.ck-mentions {
- max-height: var(--ck-mention-list-max-height);
- overflow-y: auto;
- overscroll-behavior: contain;
- }
|