X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=contents.css;h=d8ba947c48aaecbdf707dfbf28be19b3d589bdb2;hb=d60375b138c1d2c5a7a44a73949b6ba1a2379766;hp=3581ffe918433b6d03bae57f01c8650b20c10a7c;hpb=4625dba05116026713fee9008dd93306be0d1553;p=ckeditor.git diff --git a/contents.css b/contents.css index 3581ffe..d8ba947 100644 --- a/contents.css +++ b/contents.css @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license */ body @@ -73,21 +73,36 @@ hr border-top: 1px solid #ccc; } -img.right { - border: 1px solid #ccc; - float: right; - margin-left: 15px; - padding: 5px; +img.right +{ + border: 1px solid #ccc; + float: right; + margin-left: 15px; + padding: 5px; } -img.left { - border: 1px solid #ccc; - float: left; - margin-right: 15px; - padding: 5px; +img.left +{ + border: 1px solid #ccc; + float: left; + margin-right: 15px; + padding: 5px; } -img:hover { +/* #10868: We use :not() selector to exclude IE8, which crashes on img:hover style. */ +:not(.ie8) img:hover +{ opacity: .9; filter: alpha(opacity = 90); } + +pre +{ + white-space: pre-wrap; /* CSS 2.1 */ + word-wrap: break-word; /* IE7 */ +} + +.marker +{ + background-color: Yellow; +}