| 12345678910111213141516171819202122232425 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- @import "../../mixins/_unselectable.css";
- .ck.ck-list {
- @mixin ck-unselectable;
- /* Crop the the items when the list has huge border-radius. */
- overflow: hidden;
- display: flex;
- flex-direction: column;
- & .ck-list__item,
- & .ck-list__separator {
- display: block;
- }
- & .ck-list__item:focus {
- position: relative;
- z-index: var(--ck-z-default);
- }
- }
|