Project

General

Profile

1
.note-editor {
2
    height: 300px;
3
}
4

    
5
.note-editor .note-dropzone {
6
    position: absolute;
7
    z-index: 1;
8
    display: none;
9
    color: #87cefa;
10
    background-color: white;
11
    border: 2px dashed #87cefa;
12
    opacity: .95;
13
    pointer-event: none
14
}
15

    
16
.note-editor .note-dropzone .note-dropzone-message {
17
    display: table-cell;
18
    font-size: 28px;
19
    font-weight: bold;
20
    text-align: center;
21
    vertical-align: middle
22
}
23

    
24
.note-editor .note-dropzone.hover {
25
    color: #098ddf;
26
    border: 2px dashed #098ddf
27
}
28

    
29
.note-editor.dragover .note-dropzone {
30
    display: table
31
}
32

    
33
.note-editor.fullscreen {
34
    position: fixed;
35
    top: 0;
36
    left: 0;
37
    z-index: 1050;
38
    width: 100%
39
}
40

    
41
.note-editor.fullscreen .note-editable {
42
    background-color: white
43
}
44

    
45
.note-editor.fullscreen .note-resizebar {
46
    display: none
47
}
48

    
49
.note-editor.codeview .note-editable {
50
    display: none
51
}
52

    
53
.note-editor.codeview .note-codable {
54
    display: block
55
}
56

    
57
.note-editor .note-toolbar {
58
    padding-bottom: 5px;
59
    padding-left: 10px;
60
    padding-top: 5px;
61
    margin: 0;
62
    background-color: #f5f5f5;
63
    border-bottom: 1px solid #E7EAEC
64
}
65

    
66
.note-editor .note-toolbar > .btn-group {
67
    margin-top: 5px;
68
    margin-right: 5px;
69
    margin-left: 0
70
}
71

    
72
.note-editor .note-toolbar .note-table .dropdown-menu {
73
    min-width: 0;
74
    padding: 5px
75
}
76

    
77
.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker {
78
    font-size: 18px
79
}
80

    
81
.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-mousecatcher {
82
    position: absolute !important;
83
    z-index: 3;
84
    width: 10em;
85
    height: 10em;
86
    cursor: pointer
87
}
88

    
89
.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-unhighlighted {
90
    position: relative !important;
91
    z-index: 1;
92
    width: 5em;
93
    height: 5em;
94
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
95
}
96

    
97
.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-highlighted {
98
    position: absolute !important;
99
    z-index: 2;
100
    width: 1em;
101
    height: 1em;
102
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
103
}
104

    
105
.note-editor .note-toolbar .note-style h1, .note-editor .note-toolbar .note-style h2, .note-editor .note-toolbar .note-style h3, .note-editor .note-toolbar .note-style h4, .note-editor .note-toolbar .note-style h5, .note-editor .note-toolbar .note-style h6, .note-editor .note-toolbar .note-style blockquote {
106
    margin: 0
107
}
108

    
109
.note-editor .note-toolbar .note-color .dropdown-toggle {
110
    width: 20px;
111
    padding-left: 5px
112
}
113

    
114
.note-editor .note-toolbar .note-color .dropdown-menu {
115
    min-width: 290px
116
}
117

    
118
.note-editor .note-toolbar .note-color .dropdown-menu .btn-group {
119
    margin: 0
120
}
121

    
122
.note-editor .note-toolbar .note-color .dropdown-menu .btn-group:first-child {
123
    margin: 0 5px
124
}
125

    
126
.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
127
    margin: 2px 7px;
128
    font-size: 12px;
129
    text-align: center;
130
    border-bottom: 1px solid #eee
131
}
132

    
133
.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
134
    padding: 0 3px;
135
    margin: 5px;
136
    font-size: 12px;
137
    cursor: pointer;
138
    -webkit-border-radius: 5px;
139
    -moz-border-radius: 5px;
140
    border-radius: 5px
141
}
142

    
143
.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
144
    background: #eee
145
}
146

    
147
.note-editor .note-toolbar .note-para .dropdown-menu {
148
    min-width: 216px;
149
    padding: 5px
150
}
151

    
152
.note-editor .note-toolbar .note-para .dropdown-menu > div:first-child {
153
    margin-right: 5px
154
}
155

    
156
.note-editor .note-statusbar {
157
    background-color: #f5f5f5
158
}
159

    
160
.note-editor .note-statusbar .note-resizebar {
161
    width: 100%;
162
    height: 8px;
163
    cursor: s-resize;
164
    border-top: 1px solid #a9a9a9
165
}
166

    
167
.note-editor .note-statusbar .note-resizebar .note-icon-bar {
168
    width: 20px;
169
    margin: 1px auto;
170
    border-top: 1px solid #a9a9a9
171
}
172

    
173
.note-editor .note-popover .popover {
174
    max-width: none
175
}
176

    
177
.note-editor .note-popover .popover .popover-content {
178
    padding: 5px
179
}
180

    
181
.note-editor .note-popover .popover .popover-content a {
182
    display: inline-block;
183
    max-width: 200px;
184
    overflow: hidden;
185
    text-overflow: ellipsis;
186
    white-space: nowrap;
187
    vertical-align: middle
188
}
189

    
190
.note-editor .note-popover .popover .popover-content .btn-group + .btn-group {
191
    margin-left: 5px
192
}
193

    
194
.note-editor .note-popover .popover .arrow {
195
    left: 20px
196
}
197

    
198
.note-editor .note-handle .note-control-selection {
199
    position: absolute;
200
    display: none;
201
    border: 1px solid black
202
}
203

    
204
.note-editor .note-handle .note-control-selection > div {
205
    position: absolute
206
}
207

    
208
.note-editor .note-handle .note-control-selection .note-control-selection-bg {
209
    width: 100%;
210
    height: 100%;
211
    background-color: black;
212
    -webkit-opacity: .3;
213
    -khtml-opacity: .3;
214
    -moz-opacity: .3;
215
    opacity: .3;
216
    -ms-filter: alpha(opacity=30);
217
    filter: alpha(opacity=30)
218
}
219

    
220
.note-editor .note-handle .note-control-selection .note-control-handle {
221
    width: 7px;
222
    height: 7px;
223
    border: 1px solid black
224
}
225

    
226
.note-editor .note-handle .note-control-selection .note-control-holder {
227
    width: 7px;
228
    height: 7px;
229
    border: 1px solid black
230
}
231

    
232
.note-editor .note-handle .note-control-selection .note-control-sizing {
233
    width: 7px;
234
    height: 7px;
235
    background-color: white;
236
    border: 1px solid black
237
}
238

    
239
.note-editor .note-handle .note-control-selection .note-control-nw {
240
    top: -5px;
241
    left: -5px;
242
    border-right: 0;
243
    border-bottom: 0
244
}
245

    
246
.note-editor .note-handle .note-control-selection .note-control-ne {
247
    top: -5px;
248
    right: -5px;
249
    border-bottom: 0;
250
    border-left: none
251
}
252

    
253
.note-editor .note-handle .note-control-selection .note-control-sw {
254
    bottom: -5px;
255
    left: -5px;
256
    border-top: 0;
257
    border-right: 0
258
}
259

    
260
.note-editor .note-handle .note-control-selection .note-control-se {
261
    right: -5px;
262
    bottom: -5px;
263
    cursor: se-resize
264
}
265

    
266
.note-editor .note-handle .note-control-selection .note-control-selection-info {
267
    right: 0;
268
    bottom: 0;
269
    padding: 5px;
270
    margin: 5px;
271
    font-size: 12px;
272
    color: white;
273
    background-color: black;
274
    -webkit-border-radius: 5px;
275
    -moz-border-radius: 5px;
276
    border-radius: 5px;
277
    -webkit-opacity: .7;
278
    -khtml-opacity: .7;
279
    -moz-opacity: .7;
280
    opacity: .7;
281
    -ms-filter: alpha(opacity=70);
282
    filter: alpha(opacity=70)
283
}
284

    
285
.note-editor .note-dialog > div {
286
    display: none
287
}
288

    
289
.note-editor .note-dialog .note-image-dialog .note-dropzone {
290
    min-height: 100px;
291
    margin-bottom: 10px;
292
    font-size: 30px;
293
    line-height: 4;
294
    color: lightgray;
295
    text-align: center;
296
    border: 4px dashed lightgray
297
}
298

    
299
.note-editor .note-dialog .note-help-dialog {
300
    font-size: 12px;
301
    color: #ccc;
302
    background: transparent;
303
    background-color: #222 !important;
304
    border: 0;
305
    -webkit-opacity: .9;
306
    -khtml-opacity: .9;
307
    -moz-opacity: .9;
308
    opacity: .9;
309
    -ms-filter: alpha(opacity=90);
310
    filter: alpha(opacity=90)
311
}
312

    
313
.note-editor .note-dialog .note-help-dialog .modal-content {
314
    background: transparent;
315
    border: 1px solid white;
316
    -webkit-border-radius: 5px;
317
    -moz-border-radius: 5px;
318
    border-radius: 5px;
319
    -webkit-box-shadow: none;
320
    -moz-box-shadow: none;
321
    box-shadow: none
322
}
323

    
324
.note-editor .note-dialog .note-help-dialog a {
325
    font-size: 12px;
326
    color: white
327
}
328

    
329
.note-editor .note-dialog .note-help-dialog .title {
330
    padding-bottom: 5px;
331
    font-size: 14px;
332
    font-weight: bold;
333
    color: white;
334
    border-bottom: white 1px solid
335
}
336

    
337
.note-editor .note-dialog .note-help-dialog .modal-close {
338
    font-size: 14px;
339
    color: #dd0;
340
    cursor: pointer
341
}
342

    
343
.note-editor .note-dialog .note-help-dialog .note-shortcut-layout {
344
    width: 100%
345
}
346

    
347
.note-editor .note-dialog .note-help-dialog .note-shortcut-layout td {
348
    vertical-align: top
349
}
350

    
351
.note-editor .note-dialog .note-help-dialog .note-shortcut {
352
    margin-top: 8px
353
}
354

    
355
.note-editor .note-dialog .note-help-dialog .note-shortcut th {
356
    font-size: 13px;
357
    color: #dd0;
358
    text-align: left
359
}
360

    
361
.note-editor .note-dialog .note-help-dialog .note-shortcut td:first-child {
362
    min-width: 110px;
363
    padding-right: 10px;
364
    font-family: "Courier New";
365
    color: #dd0;
366
    text-align: right
367
}
368

    
369
.note-editor .note-editable {
370
    padding: 20px;
371
    overflow: auto;
372
    outline: 0
373
}
374

    
375
.note-editor .note-editable[contenteditable="false"] {
376
    background-color: #e5e5e5
377
}
378

    
379
.note-editor .note-codable {
380
    display: none;
381
    width: 100%;
382
    padding: 10px;
383
    margin-bottom: 0;
384
    font-family: Menlo, Monaco, monospace, sans-serif;
385
    font-size: 14px;
386
    color: #ccc;
387
    background-color: #222;
388
    border: 0;
389
    -webkit-border-radius: 0;
390
    -moz-border-radius: 0;
391
    border-radius: 0;
392
    box-shadow: none;
393
    -webkit-box-sizing: border-box;
394
    -moz-box-sizing: border-box;
395
    -ms-box-sizing: border-box;
396
    box-sizing: border-box;
397
    resize: none
398
}
399

    
400
.note-editor .dropdown-menu {
401
    min-width: 90px
402
}
403

    
404
.note-editor .dropdown-menu.right {
405
    right: 0;
406
    left: auto
407
}
408

    
409
.note-editor .dropdown-menu.right::before {
410
    right: 9px;
411
    left: auto !important
412
}
413

    
414
.note-editor .dropdown-menu.right::after {
415
    right: 10px;
416
    left: auto !important
417
}
418

    
419
.note-editor .dropdown-menu li a i {
420
    color: deepskyblue;
421
    visibility: hidden
422
}
423

    
424
.note-editor .dropdown-menu li a.checked i {
425
    visibility: visible
426
}
427

    
428
.note-editor .note-fontsize-10 {
429
    font-size: 10px
430
}
431

    
432
.note-editor .note-color-palette {
433
    line-height: 1
434
}
435

    
436
.note-editor .note-color-palette div .note-color-btn {
437
    width: 17px;
438
    height: 17px;
439
    padding: 0;
440
    margin: 0;
441
    border: 1px solid #fff
442
}
443

    
444
.note-editor .note-color-palette div .note-color-btn:hover {
445
    border: 1px solid #000
446
}
(2-2/2)