Sha256: 9d6566d1b7a606e9b172f5d07cbb19a73f0cff4a7ce4818a6aa73f5b8de5a9c7
Contents?: true
Size: 1.97 KB
Versions: 1
Compression:
Stored size: 1.97 KB
Contents
/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* elementspath.css (part of editor.css) ======================================= This file styles the "Elements Path", whith is the list of element names present at the the bottom bar of the CKEditor interface. The following is a visual representation of its main elements: +-- .cke_path ---------------------------------------------------------------+ | +-- .cke_path_item ----+ +-- .cke_path_item ----+ +-- .cke_path_empty ---+ | | | | | | | | | | +----------------------+ +----------------------+ +----------------------+ | +----------------------------------------------------------------------------+ */ /* The box that holds the entire elements path. */ .cke_path { float: left; } /* Each item of the elements path. */ .cke_path_item, /* Empty element available at the end of the elements path, to help us keeping the proper box size when the elements path is empty. */ .cke_path_empty { display: inline-block; float: left; padding: 3px 4px; margin-right: 2px; cursor: default; text-decoration: none; outline: 0; border: 0; color: #4c4c4c; text-shadow: 0 1px 0 #fff; font-weight: bold; font-size: 11px; } .cke_rtl .cke_path, .cke_rtl .cke_path_item, .cke_rtl .cke_path_empty { float: right; } .cke_rtl .cke_path { margin-right: 10px; } /* The items are <a> elements, so we define its hover states here. */ a.cke_path_item:hover, a.cke_path_item:focus, a.cke_path_item:active { background-color: #bfbfbf; color: #333; text-shadow: 0 1px 0 rgba(255,255,255,.5); -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0 0 4px rgba(0,0,0,.5) inset, 0 1px 0 rgba(255,255,255,.5); -webkit-box-shadow: 0 0 4px rgba(0,0,0,.5) inset, 0 1px 0 rgba(255,255,255,.5); box-shadow: 0 0 4px rgba(0,0,0,.5) inset, 0 1px 0 rgba(255,255,255,.5); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lafeber_ckeditor-3.7.3 | app/assets/javascripts/ckeditor/skins/moono/elementspath.css |