[IMP] web_responsive: Cut long filters names in the filters menu

pull/2405/head
Alexandre D. Díaz 2020-12-03 17:47:45 +01:00 committed by anjeel.haria
parent e1c2cc5dbb
commit 03585f1d14
2 changed files with 15 additions and 1 deletions

View File

@ -6,7 +6,7 @@
{ {
"name": "Web Responsive", "name": "Web Responsive",
"summary": "Responsive web client, community-supported", "summary": "Responsive web client, community-supported",
"version": "13.0.2.4.0", "version": "13.0.2.4.1",
"category": "Website", "category": "Website",
"website": "https://github.com/OCA/web", "website": "https://github.com/OCA/web",
"author": "LasLabs, Tecnativa, " "Odoo Community Association (OCA)", "author": "LasLabs, Tecnativa, " "Odoo Community Association (OCA)",

View File

@ -757,3 +757,17 @@ html .o_web_client .o_action_manager .o_action {
} }
} }
} }
// Filter Menu
.o_control_panel {
.o_filters_menu {
.o_menu_item {
@include o-search-options-dropdown-custom-item;
a {
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}