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/hr_recruitment/static/src/scss/hr_job.scss | 101 ++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 addons/hr_recruitment/static/src/scss/hr_job.scss (limited to 'addons/hr_recruitment/static/src/scss') diff --git a/addons/hr_recruitment/static/src/scss/hr_job.scss b/addons/hr_recruitment/static/src/scss/hr_job.scss new file mode 100644 index 00000000..3025c1bd --- /dev/null +++ b/addons/hr_recruitment/static/src/scss/hr_job.scss @@ -0,0 +1,101 @@ +.o_kanban_view.o_kanban_dashboard { + &.o_hr_recruitment_kanban { + &.o_kanban_ungrouped .o_kanban_record { + width: 350px; + &:not(.o_kanban_ghost) { + height: 180px; + } + } + + .ribbon { + &::before, &::after { + display: none; + } + + span { + background-color: $o-brand-odoo; + padding: 5px; + font-size: small; + z-index: unset; + height: auto; + } + } + .ribbon-top-right { + margin-top: -$o-kanban-dashboard-vpadding; + + span { + left: 0px; + right: 30px; + } + } + } + + .o_kanban_record_subtitle { + height: 1em; + } + + .o_recruitment_kanban_boxes { + display: flex; + flex-flow: row nowrap; + + .o_recruitment_kanban_box { + position: relative; + padding: 0 0 0 0; + flex: 1 1 auto; + display: flex; + flex-flow: row nowrap; + justify-content: center; + + &:first-child { + justify-content: flex-start; + padding-left: 16px; + } + div:last-child { + justify-content: flex-end; + text-align: right; + } + .o_link_trackers{ + .fa{ + color: $o-brand-primary; + } + } + .o_value { + font-weight: 800; + } + + > a { + font-weight: 500; + + &.o_needaction{ + font-size: small; + font-weight: 400; + margin-left: 4px; + @include o-hover-opacity(0.5, 1); + + &:before { + content: "/ "; + } + + &:after { + content: "\f086"; + font: normal normal normal 14px/1 FontAwesome; + } + } + } + } + } +} + +.o_kanban_view .oe_kanban_card { + .o_kanban_state_with_padding { + padding-left:7%; + padding-bottom:5%; + width: 12px; + } +} + +.o_recruitment_list { + .o_list_button { + text-align: right; + } +} -- cgit v1.2.3