| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * 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-form {
- display: flex;
- & .ck-label {
- display: none;
- }
- @mixin ck-media-phone {
- flex-wrap: wrap;
- & .ck-labeled-field-view {
- flex-basis: 100%;
- }
- & .ck-button {
- flex-basis: 50%;
- &::after {
- border-right: 1px solid var(--ck-color-base-border);
- content: "";
- width: 0;
- position: absolute;
- right: -1px;
- top: var(--ck-spacing-small);
- bottom: var(--ck-spacing-small);
- z-index: 1;
- }
- }
- }
- }
- /*
- * Style link form differently when manual decorators are available.
- * See: https://github.com/ckeditor/ckeditor5-link/issues/186.
- */
- .ck.ck-link-form_layout-vertical {
- display: block;
- }
|