diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/note/static/src/scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/note/static/src/scss')
| -rw-r--r-- | addons/note/static/src/scss/note.scss | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/addons/note/static/src/scss/note.scss b/addons/note/static/src/scss/note.scss new file mode 100644 index 00000000..2e15d5de --- /dev/null +++ b/addons/note/static/src/scss/note.scss @@ -0,0 +1,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; + } +} |
