list.css 439 B

1234567891011121314151617181920212223
  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. & .ck-list__separator {
  12. display: block;
  13. }
  14. & .ck-list__item:focus {
  15. position: relative;
  16. z-index: var(--ck-z-default);
  17. }
  18. }