|
|
@@ -3,6 +3,8 @@
|
|
|
|
|
|
// TODO/NOTE: This along with _editor helper will probably become a creator theme.
|
|
|
@include ck-editor {
|
|
|
+ @include ck-rounded-corners();
|
|
|
+
|
|
|
.ck-editor__top {
|
|
|
.ck-toolbar {
|
|
|
border-top: 0;
|
|
|
@@ -28,16 +30,11 @@
|
|
|
overflow: auto;
|
|
|
padding: 0 ck-spacing();
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-.ck-editor,
|
|
|
-.ck-editor-bottom {
|
|
|
- background: ck-color( 'foreground' );
|
|
|
- border: 1px solid ck-border-color( 'foreground' );
|
|
|
-}
|
|
|
|
|
|
-@include ck-editor {
|
|
|
.ck-toolbar {
|
|
|
+ // Toolbars should not react to ck-rounded-corners() mixin.
|
|
|
+ border-radius: 0;
|
|
|
+
|
|
|
.ck-button {
|
|
|
border-width: 0;
|
|
|
}
|
|
|
@@ -64,3 +61,9 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.ck-editor,
|
|
|
+.ck-editor-bottom {
|
|
|
+ background: ck-color( 'foreground' );
|
|
|
+ border: 1px solid ck-border-color( 'foreground' );
|
|
|
+}
|