[FIX] odoo_theme: fix highlight blocks in field-list items
On pages such as /developer/reference/backend/orm.html#fields, the highlight blocks inside `dl.field-list` items were pushing the width of the page to go outside the screen on mobile. This is fixed by changing the `.field-list`'s `display: grid` into `block` on mobile. closes odoo/documentation#2215 Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
parent
10f62b6a49
commit
a689ea236d
@ -638,10 +638,18 @@ header {
|
||||
font-family: var(--bs-font-monospace);
|
||||
}
|
||||
|
||||
.field-list {
|
||||
dl.field-list {
|
||||
@include font-size($font-size-secondary);
|
||||
padding: .5rem;
|
||||
border: 1px solid $gray-light;
|
||||
@include media-breakpoint-down(lg) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
> dt, > dd {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
|
Loading…
Reference in New Issue
Block a user