labeledinput.scss 397 B

12345678910111213141516171819
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-labeled-input {
  4. .ck-input {
  5. &-text {
  6. @include ck-rounded-corners();
  7. border: 1px solid ck-border-color( 'foreground' );
  8. padding: ck-spacing( 'small' );
  9. min-width: 200px;
  10. }
  11. }
  12. &__label {
  13. display: block;
  14. font-weight: bold;
  15. }
  16. }