Przeglądaj źródła

Renamed ck-shadow to ck-dropshadow.

Oskar Wrobel 9 lat temu
rodzic
commit
28add3562d

+ 1 - 1
packages/ckeditor5-theme-lark/theme/components/balloonpanel.scss

@@ -8,7 +8,7 @@ $ck-balloon-arrow-half-width: 10px;
 .ck-balloon-panel {
 .ck-balloon-panel {
 	@include ck-unselectable();
 	@include ck-unselectable();
 	@include ck-rounded-corners();
 	@include ck-rounded-corners();
-	@include ck-shadow();
+	@include ck-dropshadow();
 
 
 	min-width: 50px;
 	min-width: 50px;
 	min-height: 15px;
 	min-height: 15px;

+ 1 - 1
packages/ckeditor5-theme-lark/theme/components/dropdown.scss

@@ -41,7 +41,7 @@
 	z-index: ck-z();
 	z-index: ck-z();
 
 
 	@include ck-rounded-corners();
 	@include ck-rounded-corners();
-	@include ck-shadow();
+	@include ck-dropshadow();
 
 
 	&-visible {
 	&-visible {
 		display: inline-block;
 		display: inline-block;

+ 1 - 1
packages/ckeditor5-theme-lark/theme/helpers/_shadow.scss

@@ -1,6 +1,6 @@
 // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
 // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
 // For licensing, see LICENSE.md or http://ckeditor.com/license
 // For licensing, see LICENSE.md or http://ckeditor.com/license
 
 
-@mixin ck-shadow() {
+@mixin ck-dropshadow() {
 	box-shadow: 0 0 5px ck-color( 'foreground', -15 );
 	box-shadow: 0 0 5px ck-color( 'foreground', -15 );
 }
 }