|
|
@@ -0,0 +1,27 @@
|
|
|
+// 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-unselectable();
|
|
|
+ @include ck-rounded-corners();
|
|
|
+
|
|
|
+ &__item {
|
|
|
+ display: block;
|
|
|
+ min-width: 12em;
|
|
|
+ padding: ck-spacing( 'medium' );
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ &:hover,
|
|
|
+ &:focus {
|
|
|
+ background: ck-color( 'foreground' );
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-of-type {
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|