| 123456789101112131415161718 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-input {
- &-text {
- @include ck-rounded-corners();
- @include ck-box-shadow( $ck-inner-shadow );
- border: 1px solid ck-border-color( 'foreground' );
- padding: ck-spacing( 'medium' );
- min-width: 250px;
- &:focus {
- @include ck-focus-ring();
- @include ck-box-shadow( $ck-focus-outer-shadow, $ck-inner-shadow );
- }
- }
- }
|