| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.css";
- .ck.ck-table-cell-properties-form {
- width: 320px;
- & .ck-form__row {
- &.ck-table-cell-properties-form__padding-row {
- padding: 0;
- width: 35%;
- }
- &.ck-table-cell-properties-form__alignment-row {
- & .ck.ck-toolbar {
- background: none;
- & .ck-button {
- margin: 0;
- @mixin ck-dir rtl {
- &:first-child {
- border-radius: var(--ck-border-radius);
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- &:last-child {
- border-radius: var(--ck-border-radius);
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- }
- }
- }
- }
- }
- }
|