8
0
Aleksander Nowodzinski 9 жил өмнө
parent
commit
1b613825e3

+ 27 - 0
packages/ckeditor5-theme-lark/theme/components/list.scss

@@ -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;
+		}
+	}
+}

+ 1 - 0
packages/ckeditor5-theme-lark/theme/theme.scss

@@ -13,4 +13,5 @@
 @import 'components/button';
 @import 'components/toolbar';
 @import 'components/dropdown';
+@import 'components/list';
 @import 'components/editor';