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