_zindex.scss 290 B

123456789101112
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. $ck-def-z: (
  4. 'default': 1
  5. // 'modal': 10
  6. // 'topmost': 9999
  7. );
  8. @function ck-z( $index: 'default' ) {
  9. @return map-get( $ck-def-z, $index );
  10. }