| 12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /**
- * Makes element unselectable.
- */
- @define-mixin ck-unselectable {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- /**
- * A class which hides an element in DOM.
- */
- .ck-hidden {
- /* Override selector specificity. Otherwise, all elements with some display
- style defined will override this one, which is not a desired result. */
- display: none !important;
- }
|