Files
web/web_responsive/static/src/legacy/scss/website_apps_menu.scss
Sergey Shebanin 6a1ba1f5c8 [FIX] web_responsive: fix dropdown caret visibility on website
before this commit dropdown on website doesn't have caret visible. F.x. to show option "Edit on backend"

after this commit caret will be visible
2023-11-17 00:37:44 +02:00

36 lines
862 B
SCSS

/* Copyright 2021 ITerra - Sergey Shebanin
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */
// Website main navbar and his AppsMenu button
#oe_main_menu_navbar {
#oe_applications .dropdown-toggle::after {
display: none;
}
a.full {
> i {
padding: 0 10px 0 0;
font-size: 17px;
}
font-size: 20px;
line-height: 46px;
@include media-breakpoint-down(sm) {
width: 46px;
overflow: hidden;
}
}
#oe_applications.o_responsive_loaded {
a.full {
width: 46px;
overflow: hidden;
}
}
.o_menu_brand {
white-space: nowrap;
padding: 0 16px 0 4px;
text-transform: capitalize;
@include media-breakpoint-down(sm) {
display: none;
}
}
}