forked from ckeditor/ckeditor4
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconsole.css
More file actions
126 lines (107 loc) · 2.47 KB
/
Copy pathconsole.css
File metadata and controls
126 lines (107 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
body {
padding-right: 430px; /* ckconsole (400px) + normal padding (30px) */
}
div.ckconsole {
width: 400px;
position: fixed;
top: 0;
right: 0;
bottom: 0;
overflow: auto;
background: #F8F8F8;
background: rgba(250,250,250,0.9);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 99999;
opacity: 0.8;
transition: opacity 0.5s;
}
div.ckconsole_side_left {
left: 0;
}
div.ckconsole:hover {
opacity: 1;
}
.ckconsole .ckconsole_editor_panel {
border: solid 2px #CCC;
}
.ckconsole .ckconsole_editor_panel.ckconsole_active {
border-color: #EE6;
}
.ckconsole .ckconsole_header,
.ckconsole .ckconsole_content {
padding: 3px 10px;
}
.ckconsole .ckconsole_header,
.ckconsole .ckconsole_header * {
cursor: pointer;
}
.ckconsole .ckconsole_editor_header {
background: #DDD;
font-size: 14px;
padding-top: 10px;
padding-bottom: 10px;
}
.ckconsole .ckconsole_editor_header:before {
content: '\25bc\00a0'; /* down triangle arrow + nbsp */
}
.ckconsole .ckconsole_folded .ckconsole_editor_header:before {
content: '\25ba\00a0'; /* right triangle arrow + nbsp */
}
.ckconsole .ckconsole_panel_header {
background: #EEE;
border-top: solid 2px #CCC;
transition: background 0.1s;
}
.ckconsole .ckconsole_panel_header:before {
content: '\25bE\00a0'; /* small down triangle arrow + nbsp */
}
.ckconsole .ckconsole_folded .ckconsole_panel_header:before {
content: '\25b8\00a0'; /* small right triangle arrow + nbsp */
}
.ckconsole .ckconsole_refreshed .ckconsole_panel_header {
background: #EE6;
}
.ckconsole_folded > .ckconsole_panel {
display: none;
}
.ckconsole_folded > .ckconsole_content,
.ckconsole_folded > .ckconsole_log {
display: none;
}
.ckconsole .ckconsole_list {
list-style-type: square;
list-style-position: inside;
}
.ckconsole .ckconsole_log {
height: 75px;
overflow: auto;
}
.ckconsole .ckconsole_active .ckconsole_log {
height: 150px;
}
.ckconsole code {
font-family: monospace;
font-size: 11px;
white-space: pre-wrap;
}
.ckconsole .ckconsole_log_item {
border-bottom: solid 1px #EEE;
background: rgba(0,0,0,0);
transition: background 1s;
}
.ckconsole .ckconsole_fresh_log_item {
background: rgba(0,0,0,0.2);
}
.ckconsole_log_item .ckconsole_time {
padding: 1px 10px;
background: rgba(100,100,100,0.1);
font-family: monospace;
font-size: 11px;
}
.ckconsole_log_item code {
padding: 1px 0;
}