blob: 5eb2bf7ce8993edc59167663610b3c0893b56072 (
plain)
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
|
@import "../globalCssVariables";
.ProseMirror {
width: 100%;
height: auto;
min-height: 100%;
font-family: $serif;
}
.ProseMirror:focus {
outline: none !important;
}
.formattedTextBox-cont-scroll, .formattedTextBox-cont-hidden {
background: $light-color-secondary;
padding: 0.9em;
border-width: 0px;
border-radius: $border-radius;
border-color: $intermediate-color;
box-sizing: border-box;
border-style: solid;
overflow-y: scroll;
overflow-x: hidden;
color: initial;
height: 100%;
pointer-events: all;
}
.formattedTextBox-cont-hidden {
overflow: hidden;
pointer-events: none;
}
.menuicon {
display: inline-block;
border-right: 1px solid rgba(0, 0, 0, 0.2);
color: #888;
line-height: 1;
padding: 0 7px;
margin: 1px;
cursor: pointer;
text-align: center;
min-width: 1.4em;
}
.strong,
.heading {
font-weight: bold;
}
.em {
font-style: italic;
}
|