Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Made the link form buttons thicker with a fill color and no background.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Mar 15, 2018
1 parent a7f1925 commit 5ad868c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions theme/ckeditor5-link/link.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,23 @@
* For licensing, see LICENSE.md.
*/

:root {
--ck-color-link-form-save-icon: hsl(120, 100%, 27%);
--ck-color-link-form-cancel-icon: hsl(15, 100%, 43%);
}

/* Class added to span element surrounding currently selected link. */
.ck-link_selected {
background: var(--ck-color-link-selected-background);
outline: 1px solid var(--ck-color-link-selected-background);
}

.ck-link-form .ck-button {
&:first-of-type {
color: var(--ck-color-link-form-save-icon);
}

&:last-of-type {
color: var(--ck-color-link-form-cancel-icon);
}
}

0 comments on commit 5ad868c

Please sign in to comment.