Kaynağa Gözat

Made the link form buttons thicker with a fill color and no background.

Aleksander Nowodzinski 7 yıl önce
ebeveyn
işleme
a3c872d656

+ 15 - 0
packages/ckeditor5-theme-lark/theme/ckeditor5-link/link.css

@@ -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);
+	}
+}