| 12345678910111213141516171819202122232425 |
- // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-list {
- overflow: hidden;
- list-style-type: none;
- background: ck-color( 'background' );
- @include ck-rounded-corners();
- &__item {
- padding: ck-spacing( 'medium' );
- cursor: pointer;
- min-width: 12em;
- &:hover,
- &:focus {
- background: ck-color( 'foreground' );
- }
- &:last-of-type {
- border: none;
- }
- }
- }
|