list.css 389 B

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