diff options
| author | Lester Caine <lester@lsces.co.uk> | 2009-11-24 23:57:24 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2009-11-24 23:57:24 +0000 |
| commit | 8630f2bc4d63b3320f5469d9532a1cba1dddb7a3 (patch) | |
| tree | f3c3122e110458a94aae544164b82fd67f1ae5e0 /_source/skins/office2003/elementspath.css | |
| parent | e24cb83aa7f7685a4811e5c8d39541bae7b15cb2 (diff) | |
| download | ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.tar.gz ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.tar.bz2 ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.zip | |
ckeditor 3.0.1 'raw' - needs reordering a little, but samples currently functional
Diffstat (limited to '_source/skins/office2003/elementspath.css')
| -rw-r--r-- | _source/skins/office2003/elementspath.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/_source/skins/office2003/elementspath.css b/_source/skins/office2003/elementspath.css new file mode 100644 index 0000000..d87a203 --- /dev/null +++ b/_source/skins/office2003/elementspath.css @@ -0,0 +1,68 @@ +/* +Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +@media print +{ + .cke_path + { + display: none; + } +} + +.cke_skin_office2003 .cke_path +{ + padding: 3px 3px 0 3px; + display: inline-block; + float: left; +} + +.cke_skin_office2003 .cke_rtl .cke_path +{ + float: right; +} + +.cke_skin_office2003 .cke_path a, +.cke_skin_office2003 .cke_path .cke_empty +{ + display: inline-block; + float: left; + border: solid 1px #f7f8fd; + background-color: #f7f8fd; + padding-top: 1px; + padding-bottom: 1px; + padding-left: 4px; + padding-right: 4px; + margin-bottom : 3px; +} + +.cke_skin_office2003 .cke_path .cke_empty +{ + visibility: hidden; +} + +.cke_skin_office2003 .cke_rtl .cke_path a, +.cke_skin_office2003 .cke_rtl .cke_path cke_empty +{ + float: right; +} + +.cke_skin_office2003 .cke_path a:hover, +.cke_skin_office2003 .cke_path a:focus, +.cke_skin_office2003 .cke_path a:active /* IE */ +{ + border: solid 1px #316ac5; + background-color: #dff1ff; + padding-top: 1px; + padding-bottom: 1px; + padding-left: 4px; + padding-right: 4px; + outline: none; +} + +.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path a, +.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path .cke_empty +{ + float: none; +} |
