list.css 416 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. @import "../helpers/states.css";
  6. @import "../helpers/zindex.css";
  7. .ck-list {
  8. @mixin ck-unselectable;
  9. /* Crop the the items when the list has huge border-radius. */
  10. overflow: hidden;
  11. }
  12. .ck-list__item {
  13. display: block;
  14. &:focus {
  15. position: relative;
  16. z-index: var(--ck-z-default);
  17. }
  18. }