list.scss 470 B

12345678910111213141516171819202122232425
  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-rounded-corners();
  8. &__item {
  9. padding: ck-spacing( 'medium' );
  10. cursor: pointer;
  11. min-width: 12em;
  12. &:hover,
  13. &:focus {
  14. background: ck-color( 'foreground' );
  15. }
  16. &:last-of-type {
  17. border: none;
  18. }
  19. }
  20. }