8
0

list.css 480 B

12345678910111213141516171819202122232425
  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. display: flex;
  11. flex-direction: column;
  12. & .ck-list__item,
  13. & .ck-list__separator {
  14. display: block;
  15. }
  16. & .ck-list__item:focus {
  17. position: relative;
  18. z-index: var(--ck-z-default);
  19. }
  20. }