Skip to content
Snippets Groups Projects
Commit af81ac1a authored by Adrien Dieudonne's avatar Adrien Dieudonne
Browse files

[FIX] hr_contract: Avoid horizontal scroll in contract form on mobile


The following warning is very long in absolute position. The following
text: "Calendar Mismatch : The employee's calendar does not match its
current contract calendar. This could lead to unexpected behaviors."
is invisible but takes a lot of width on the same line.

Now, the item is a block of 0px height and doesn't take space.
This avoids the horizontal scroll on mobile.

Note that the item is displayed at the wrong place anyway.
This will be fixed in master.

Steps to reproduce:
- Payroll / Employees / All contracts
- Change "Working Schedule" field

closes odoo/odoo#66858

Task-id: 1929043
Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
parent 03a4137c
No related branches found
No related tags found
No related merge requests found
......@@ -4,15 +4,15 @@
}
.o_calendar_warning_tooltip {
position: absolute;
display: block;
height: 0;
opacity: 0;
visibility: hidden;
}
.o_calendar_warning:hover + .o_calendar_warning_tooltip {
position: relative;
visibility: visible;
display: inline;
height: auto;
opacity: 1;
transition: visibility 0s, opacity 0.5s linear;
transition: opacity 0.5s linear;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment