summaryrefslogtreecommitdiff
path: root/addons/hr_recruitment/static/src/scss
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_recruitment/static/src/scss
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/hr_recruitment/static/src/scss')
-rw-r--r--addons/hr_recruitment/static/src/scss/hr_job.scss101
1 files changed, 101 insertions, 0 deletions
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;
+ }
+}