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

t/ckeditor5/810: Made the link form buttons thicker with a fill color and no background. #161

Merged
merged 1 commit into from
Mar 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
}
}