aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/EditableView.scss
blob: 4a89cc69c0097eeb714e489c5ab94775a911b77e (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
.editableView-container-editing,
.editableView-container-editing-oneLine {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    overflow: hidden;
    min-width: 20;
}

.editableView-container-editing-oneLine {
    span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

    input {
        display: block;
    }
}

.editableView-input {
    width: 100%;
    background: inherit;
}