inputtext.scss 476 B

123456789101112131415161718
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-input {
  4. &-text {
  5. @include ck-rounded-corners();
  6. @include ck-box-shadow( $ck-inner-shadow );
  7. border: 1px solid ck-border-color( 'foreground' );
  8. padding: ck-spacing( 'medium' );
  9. min-width: 250px;
  10. &:focus {
  11. @include ck-focus-ring();
  12. @include ck-box-shadow( $ck-focus-outer-shadow, $ck-inner-shadow );
  13. }
  14. }
  15. }