aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/FormattedTextBox.scss
blob: ab5849f09eedd36ef5af39020ebf56f7e3a01df8 (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
.ProseMirror {
    width: 100%;
    height: auto;
    min-height: 100%
}

.ProseMirror:focus {
    outline: none !important
}

.formattedTextBox-cont {
    background: white;
    padding: 1;
    border-width: 1px;
    border-radius: 2px;
    border-color:black;
    box-sizing: border-box;
    background: white;
    border-style:solid;
    overflow-y: scroll;
    overflow-x: hidden;
    color: initial;
    height: 100%;
}

.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; }