| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * 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";
- :root {
- --ck-link-form-max-width: 330px;
- }
- .ck.ck-link-form {
- display: flex;
- flex-wrap: wrap;
- max-width: var(--ck-link-form-max-width);
- & .ck-label {
- display: none;
- }
- /* Buttons like `open in new window` with switch toggler.
- Added div is a temporary solution to make stronger specificity than `.ck.ck-link-form > :not(:first-child)` in theme-lark. */
- & div.ck-link-form_additional-buttons {
- display: flex;
- flex-wrap: wrap;
- margin-left: 0;
- width: 100%;
- }
- & .ck-link-form_additional-buttons .ck-button {
- width: 100%;
- margin-left: 0;
- margin-top: var(--ck-spacing-standard);
- }
- @mixin ck-media-phone {
- flex-wrap: wrap;
- & .ck-labeled-input {
- flex-basis: 100%;
- }
- & .ck-button {
- flex-basis: 50%;
- }
- }
- }
|