summaryrefslogtreecommitdiff
path: root/addons/note/static/src/scss/note.scss
blob: 2e15d5de46bba6eb6942734296dc5145d536d6af (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
52
53
54
55
56
57
58
59
60
61
62
63

.o_kanban_group .note_text_line_through {
    text-decoration: line-through;
}

.o_note_form_view.o_form_view {
    .o_form_statusbar {
        margin-bottom: 0;
    }
    .oe_form_field.oe_memo {
        margin: 0;
        padding: 0;
        min-height: 200px;
    }
    &.o_form_readonly {
        .oe_memo {
            padding: $input-btn-padding-x-lg;
            border-bottom: 1px solid gray('300');
        }
    }
}

// Quick create notes from systray
.o_note.o_mail_preview {
    background-color: white;
    .o_preview_info {
        .o_preview_title {
            .o_preview_name {
                flex: 1 1 100%;
            }
        }
        .o_note_input_box {
            display: flex;
            p {
                flex: 1 1 auto;
                margin-bottom: 0px;
            }
        }
        .o_note_save {
            font-size: 11px;
            font-weight: bold;
        }
    }
    .o_note_input {
        border: none;
    }
    .o_note_datetime {
        .o_datepicker {
            .o_datepicker_input {
                float: right;
                text-align: right;
                border: none;
                font-size: 11px;
            }
            .o_datepicker_button {
                display: none;
            }
        }
    }
    .o_note_set_datetime {
        color: $text-muted;
    }
}