8
0

list.css 451 B

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