| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /*
- * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
- .ck.ck-link-form {
- display: flex;
- & .ck-label {
- display: none;
- }
- @mixin ck-media-phone {
- flex-wrap: wrap;
- & .ck-labeled-input {
- flex-basis: 100%;
- }
- & .ck-button {
- flex-basis: 50%;
- }
- }
- }
- /* Style link form differently when manual decorators are available.
- * See: https://github.com/ckeditor/ckeditor5-link/issues/186.
- */
- .ck.ck-link-form_layout-vertical {
- flex-wrap: wrap;
- & .ck-labeled-input {
- flex-basis: 100%;
- }
- & .ck-button {
- /* Let's move "Save" & "Cancel" buttons to the end of the link form view. */
- order: 10;
- flex-basis: 50%;
- }
- & .ck-list {
- flex-basis: 100%;
- }
- }
|