@ckeditor/ckeditor5-ui
Version:
The UI framework and standard UI library of CKEditor 5.
43 lines (37 loc) • 688 B
CSS
/*
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
.ck-vertical-form .ck-button {
&::after {
content: "";
width: 0;
position: absolute;
right: -1px;
top: -1px;
bottom: -1px;
z-index: 1;
}
&:focus::after {
display: none;
}
}
.ck.ck-responsive-form {
@mixin ck-media-phone {
& .ck-button {
&::after {
content: "";
width: 0;
position: absolute;
right: -1px;
top: -1px;
bottom: -1px;
z-index: 1;
}
&:focus::after {
display: none;
}
}
}
}