| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * 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/components/tooltip/mixins/_tooltip.css";
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_unselectable.css";
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.css";
- @import "../mixins/_focus.css";
- @import "../mixins/_shadow.css";
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
- .ck.ck-link-actions {
- & .ck-button.ck-link-actions__preview {
- padding-left: 0;
- padding-right: 0;
- & .ck-button__label {
- padding: 0 var(--ck-spacing-medium);
- color: var(--ck-color-link-default);
- text-overflow: ellipsis;
- cursor: pointer;
- /* Match the box model of the link editor form's input so the balloon
- does not change width when moving between actions and the form. */
- max-width: var(--ck-input-text-width);
- min-width: 3em;
- text-align: center;
- &:hover {
- text-decoration: underline;
- }
- }
- &,
- &:hover,
- &:focus,
- &:active {
- background: none;
- }
- &:active {
- box-shadow: none;
- }
- &:focus {
- & .ck-button__label {
- text-decoration: underline;
- }
- }
- }
- @mixin ck-dir ltr {
- & .ck-button:not(:first-child) {
- margin-left: var(--ck-spacing-standard);
- }
- }
- @mixin ck-dir rtl {
- & .ck-button:not(:last-child) {
- margin-left: var(--ck-spacing-standard);
- }
- }
- @mixin ck-media-phone {
- & .ck-button.ck-link-actions__preview {
- margin: var(--ck-spacing-standard) var(--ck-spacing-standard) 0;
- & .ck-button__label {
- min-width: 0;
- max-width: 100%;
- }
- }
- & .ck-button:not(.ck-link-actions__preview) {
- @mixin ck-dir ltr {
- margin-left: 0;
- }
- @mixin ck-dir rtl {
- margin-left: 0;
- }
- }
- }
- }
|