From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/mail/static/src/scss/kanban_view.scss | 64 ++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 addons/mail/static/src/scss/kanban_view.scss (limited to 'addons/mail/static/src/scss/kanban_view.scss') diff --git a/addons/mail/static/src/scss/kanban_view.scss b/addons/mail/static/src/scss/kanban_view.scss new file mode 100644 index 00000000..02e11eb1 --- /dev/null +++ b/addons/mail/static/src/scss/kanban_view.scss @@ -0,0 +1,64 @@ +$o-kanban-attachement-image-size: 80px; + +.o_kanban_view { + + .o_kanban_record.o_kanban_attachment { + padding: 0; + + .o_kanban_image { + width: $o-kanban-attachement-image-size; + + + div { + padding-left: $o-kanban-attachement-image-size + $o-kanban-inside-hgutter; + @include media-breakpoint-down(sm) { + padding-left: $o-kanban-attachement-image-size + $o-kanban-inside-hgutter-mobile; + } + } + + .o_kanban_image_wrapper { + min-height: $o-kanban-attachement-image-size; + display: flex; + align-items: center; + justify-content: center; + } + + .o_attachment_image { + @include size($o-kanban-attachement-image-size); + } + + .o_image { + @include size($o-kanban-attachement-image-size*0.7); + } + } + + .o_kanban_details { + .o_kanban_details_wrapper { + display: flex; + flex-direction: column; + min-height: $o-kanban-attachement-image-size; + padding: $o-kanban-inside-vgutter $o-kanban-inside-hgutter; + + .o_kanban_record_title { + margin-bottom: $o-kanban-inside-vgutter*0.5; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + width: 95%; + } + + .o_kanban_record_body { + flex: 1 1 auto; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + font-size: smaller; + } + + .oe_kanban_avatar { + border-radius: 4px; + border: 1px solid $component-active-color; + } + } + } + } +} -- cgit v1.2.3