| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2003-2020, 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-actions {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- & .ck-link-actions__preview {
- display: inline-block;
- & .ck-button__label {
- overflow: hidden;
- }
- }
- @mixin ck-media-phone {
- flex-wrap: wrap;
- & .ck-link-actions__preview {
- flex-basis: 100%;
- }
- & .ck-button:not(.ck-link-actions__preview) {
- flex-basis: 50%;
- }
- }
- }
|