list.scss 539 B

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