8
0

list.scss 517 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-list {
  4. overflow: hidden;
  5. list-style-type: none;
  6. background: ck-color( 'background' );
  7. @include ck-unselectable();
  8. @include ck-rounded-corners();
  9. &__item {
  10. display: block;
  11. padding: ck-spacing( 'medium' );
  12. cursor: pointer;
  13. min-width: 12em;
  14. &:hover,
  15. &:focus {
  16. background: ck-color( 'foreground' );
  17. }
  18. &:last-of-type {
  19. border: none;
  20. }
  21. }
  22. }