equal
deleted
inserted
replaced
1 /* |
1 /* |
2 Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. |
2 Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. |
3 For licensing, see LICENSE.md or http://ckeditor.com/license |
3 For licensing, see LICENSE.md or http://ckeditor.com/license |
4 */ |
4 */ |
5 |
5 |
6 body |
6 body |
7 { |
7 { |
20 |
20 |
21 .cke_editable |
21 .cke_editable |
22 { |
22 { |
23 font-size: 13px; |
23 font-size: 13px; |
24 line-height: 1.6; |
24 line-height: 1.6; |
|
25 |
|
26 /* Fix for missing scrollbars with RTL texts. (#10488) */ |
|
27 word-wrap: break-word; |
25 } |
28 } |
26 |
29 |
27 blockquote |
30 blockquote |
28 { |
31 { |
29 font-style: italic; |
32 font-style: italic; |
92 pre |
95 pre |
93 { |
96 { |
94 white-space: pre-wrap; /* CSS 2.1 */ |
97 white-space: pre-wrap; /* CSS 2.1 */ |
95 word-wrap: break-word; /* IE7 */ |
98 word-wrap: break-word; /* IE7 */ |
96 -moz-tab-size: 4; |
99 -moz-tab-size: 4; |
97 -o-tab-size: 4; |
|
98 -webkit-tab-size: 4; |
|
99 tab-size: 4; |
100 tab-size: 4; |
100 } |
101 } |
101 |
102 |
102 .marker |
103 .marker |
103 { |
104 { |
130 padding: 1px; |
131 padding: 1px; |
131 margin: 1px; |
132 margin: 1px; |
132 border: none; |
133 border: none; |
133 outline: 1px solid #0782C1; |
134 outline: 1px solid #0782C1; |
134 } |
135 } |
|
136 |
|
137 /* Widget Styles */ |
|
138 .code-featured |
|
139 { |
|
140 border: 5px solid red; |
|
141 } |
|
142 |
|
143 .math-featured |
|
144 { |
|
145 padding: 20px; |
|
146 box-shadow: 0 0 2px rgba(200, 0, 0, 1); |
|
147 background-color: rgba(255, 0, 0, 0.05); |
|
148 margin: 10px; |
|
149 } |
|
150 |
|
151 .image-clean |
|
152 { |
|
153 border: 0; |
|
154 background: none; |
|
155 padding: 0; |
|
156 } |
|
157 |
|
158 .image-clean > figcaption |
|
159 { |
|
160 font-size: .9em; |
|
161 text-align: right; |
|
162 } |
|
163 |
|
164 .image-grayscale |
|
165 { |
|
166 background-color: white; |
|
167 color: #666; |
|
168 } |
|
169 |
|
170 .image-grayscale img, img.image-grayscale |
|
171 { |
|
172 filter: grayscale(100%); |
|
173 } |
|
174 |
|
175 .embed-240p |
|
176 { |
|
177 max-width: 426px; |
|
178 max-height: 240px; |
|
179 margin:0 auto; |
|
180 } |
|
181 |
|
182 .embed-360p |
|
183 { |
|
184 max-width: 640px; |
|
185 max-height: 360px; |
|
186 margin:0 auto; |
|
187 } |
|
188 |
|
189 .embed-480p |
|
190 { |
|
191 max-width: 854px; |
|
192 max-height: 480px; |
|
193 margin:0 auto; |
|
194 } |
|
195 |
|
196 .embed-720p |
|
197 { |
|
198 max-width: 1280px; |
|
199 max-height: 720px; |
|
200 margin:0 auto; |
|
201 } |
|
202 |
|
203 .embed-1080p |
|
204 { |
|
205 max-width: 1920px; |
|
206 max-height: 1080px; |
|
207 margin:0 auto; |
|
208 } |