Project

General

Profile

1
/*
2
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3
For licensing, see LICENSE.md or http://ckeditor.com/license
4
*/
5

    
6
/* "Source" button label */
7
.cke_button__source_label,
8
.cke_button__sourcedialog_label
9
{
10
	display: none;
11
}
12

    
13
/* "Font Size" combo width */
14
.cke_combo__fontsize .cke_combo_text
15
{
16
	width: 30px;
17
}
18

    
19
/* "Font Size" panel size */
20
.cke_combopanel__fontsize
21
{
22
	width: 120px;
23
}
24

    
25
/* Editable regions */
26
textarea.cke_source
27
{
28
	font-family: "Source Code Pro",Consolas, Monaco,'Andale Mono', monospace;
29
	font-size: 14px;
30
	background-color: #fff;
31
	white-space: pre-wrap;
32
	border: none;
33
	padding: 8px;
34
	margin: 0;
35
	display: block;
36
	box-sizing: border-box;
37
}
38

    
39
.cke_wysiwyg_frame,
40
.cke_wysiwyg_div
41
{
42
	background-color: #fff;
43
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
44
	box-sizing: border-box;
45
	max-height: 100% !important;
46
}
(18-18/23)