Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #151 from ckeditor/t/145
Browse files Browse the repository at this point in the history
Fix: The URL input should span the width of the balloon. Closes #145.
  • Loading branch information
oskarwrobel committed Sep 8, 2017
2 parents fa7cfda + 90c3e60 commit 05b3bf4
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions theme/components/linkform.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
outline: none;
}

.ck-input-text {
// https://github.com/ckeditor/ckeditor5-link/issues/145
width: 100%;
}

.ck-label {
margin-bottom: ck-spacing( 'tiny' );
}
Expand All @@ -24,12 +29,17 @@
.ck-button {
float: right;

// "Save" and "Cancel" buttons.
& + .ck-button {
margin-right: ck-spacing( 'medium' );
}

// The "Unlink" button.
&:last-child {
float: left;

& + .ck-button {
float: left;
}
// https://github.com/ckeditor/ckeditor5-link/issues/145
margin-right: 4 * ck-spacing( 'medium' );
}
}
}
Expand Down

0 comments on commit 05b3bf4

Please sign in to comment.