[FIX] web_responsive: only change width of main control panel

The Search More panel is incorrectly displayed due to the reduced screen
so only change width on the main screen.

Fixes #2395
This commit is contained in:
Vincent Hatakeyama
2023-01-30 11:52:48 +01:00
parent 73f50c2a5c
commit 517844c839

View File

@@ -19,12 +19,12 @@
} }
// For FULL HD devices // For FULL HD devices
@media (min-width: 1900px) { @media (min-width: 1900px) {
.o_cp_top_left, .o_action_manager & .o_cp_top_left,
.o_cp_bottom_left { .o_action_manager & .o_cp_bottom_left {
width: 60%; width: 60%;
} }
.o_cp_top_right, .o_action_manager & .o_cp_top_right,
.o_cp_bottom_right { .o_action_manager & .o_cp_bottom_right {
width: 40%; width: 40%;
} }
} }