|
|
@@ -2,28 +2,17 @@
|
|
|
// 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' );
|
|
|
|
|
|
- @include ck-rounded-corners();
|
|
|
-
|
|
|
&__item {
|
|
|
- padding: ck-spacing( 'medium' ) ck-spacing( 'medium' ) ck-spacing( 'medium' ) 0;
|
|
|
- cursor: pointer;
|
|
|
+ padding: ck-spacing( 'medium' );
|
|
|
+ cursor: default;
|
|
|
min-width: 12em;
|
|
|
|
|
|
- // NOTE: Using absolute sizes here because otherwise each
|
|
|
- // item would indent in a different way.
|
|
|
- &::before {
|
|
|
- content: "";
|
|
|
- display: inline-block;
|
|
|
- width: $ck-font-size-base;
|
|
|
- font-weight: normal;
|
|
|
- font-size: $ck-font-size-base;
|
|
|
- text-align: center;
|
|
|
- margin: 0 $ck-font-size-base/2;
|
|
|
- }
|
|
|
-
|
|
|
&:hover,
|
|
|
&:focus {
|
|
|
background: ck-color( 'foreground' );
|
|
|
@@ -41,15 +30,12 @@
|
|
|
}
|
|
|
|
|
|
&_active {
|
|
|
- background: ck-color( 'foreground', -5 );
|
|
|
-
|
|
|
- &::before {
|
|
|
- content: "✓";
|
|
|
- }
|
|
|
+ background: ck-color( 'active' );
|
|
|
+ color: ck-color( 'background' );
|
|
|
|
|
|
&:hover,
|
|
|
&:focus {
|
|
|
- background: ck-color( 'foreground', -10 );
|
|
|
+ background: ck-color( 'active', -10 );
|
|
|
}
|
|
|
}
|
|
|
}
|