// Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. // For licensing, see LICENSE.md or http://ckeditor.com/license .ck-dropdown { // A triangle displayed to indicate this is actually a dropdown. &::after { border-style: solid; border-width: .4em .4em 0 .4em; border-color: ck-color( 'text', 30 ) transparent; right: ck-spacing(); } .ck-button.ck-dropdown__button { // A space to accommodate the triangle. padding-right: 2 * ck-spacing(); // #23 .ck-button__label { width: 7em; overflow: hidden; text-overflow: ellipsis; } } } .ck-dropdown__panel { border: 1px solid ck-border-color( 'foreground' ); // Compensate double border from button and from box when positioned below the button. bottom: 2px; background: ck-color( 'background' ); @include ck-rounded-corners(); @include ck-drop-shadow(); }