| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-list {
- @include ck-rounded-corners();
- @include ck-unselectable();
- list-style-type: none;
- background: ck-color( 'background' );
- &__item {
- padding: ck-spacing( 'medium' );
- cursor: default;
- min-width: 12em;
- &:hover,
- &:focus {
- background: ck-color( 'foreground' );
- }
- &:focus {
- @include ck-box-shadow( $ck-focus-outer-shadow );
- position: relative;
- z-index: ck-z();
- outline: none;
- }
- &:last-of-type {
- border: none;
- }
- &_active {
- background: ck-color( 'active' );
- color: ck-color( 'background' );
- &:hover,
- &:focus {
- background: ck-color( 'active', -10 );
- }
- }
- }
- }
|