mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* Add style to hide oe_footer instead of remove to not break `support_branding` * Add company logo and editing to App Drawer title bar * Remove translation and screen reader from glyphs * Minor style fixes on app drawer toggle button positioning * Add note in ReadMe explaining override of `support_branding` * Add note in ReadMe explaining why no `oe_main_menu_navbar`
28 lines
499 B
Plaintext
Executable File
28 lines
499 B
Plaintext
Executable File
/* Copyright 2016 LasLabs Inc.
|
|
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
// Do not fix the search part, it's too big for small screens
|
|
@media (max-width: @screen-sm-max) {
|
|
overflow: inherit;
|
|
.openerp {
|
|
.oe-view-manager {
|
|
overflow: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
div.oe_footer {
|
|
display: none;
|
|
}
|