| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /**
- * Resets an element, ignoring its children.
- */
- .ck-reset,
- .ck-reset_all,
- .ck-reset_all * {
- /* Do not include inheritable rules here. */
- margin: 0;
- padding: 0;
- border: 0;
- background: transparent;
- text-decoration: none;
- vertical-align: middle;
- transition: none;
- /* https://github.com/ckeditor/ckeditor5-theme-lark/issues/105 */
- word-wrap: break-word;
- }
- /**
- * Resets an element AND its children.
- */
- .ck-reset_all,
- .ck-reset_all * {
- /* These are rule inherited by all children elements. */
- border-collapse: collapse;
- font: normal normal normal var(--ck-font-size-base)/var(--ck-line-height-base) var(--ck-font-face);
- color: var(--ck-color-text);
- text-align: left;
- white-space: nowrap;
- cursor: auto;
- float: none;
- }
- .ck-reset_all {
- & .ck-rtl * {
- text-align: right;
- }
- & iframe {
- /* For IE */
- vertical-align: inherit;
- }
- & textarea {
- white-space: pre-wrap;
- }
- & textarea,
- & input[type="text"],
- & input[type="password"] {
- cursor: text;
- }
- & textarea[disabled],
- & input[type="text"][disabled],
- & input[type="password"][disabled] {
- cursor: default;
- }
- & fieldset {
- padding: 10px;
- border: 2px groove hsl(255, 7%, 88%);
- }
- & button::-moz-focus-inner {
- /* See http://stackoverflow.com/questions/5517744/remove-extra-button-spacing-padding-in-firefox */
- padding: 0;
- border: 0
- }
- }
|