link.css 808 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* Class added to span element surrounding currently selected link. */
  6. .ck .ck-link_selected {
  7. background: var(--ck-color-link-selected-background);
  8. }
  9. /*
  10. * Classes used by the "fake visual selection" displayed in the content when an input
  11. * in the link UI has focus (the browser does not render the native selection in this state).
  12. */
  13. .ck .ck-fake-link-selection {
  14. background: var(--ck-color-link-fake-selection);
  15. }
  16. /* A collapsed fake visual selection. */
  17. .ck .ck-fake-link-selection_collapsed {
  18. height: 100%;
  19. border-right: 1px solid var(--ck-color-base-text);
  20. margin-right: -1px;
  21. outline: solid 1px hsla(0, 0%, 100%, .5);
  22. }