Skip to content

Commit

Permalink
[FIX] mail: allow the followers list to be scrolled
Browse files Browse the repository at this point in the history
The follower's list has an ancestor (the o_chatter_topbar) that has a 33px size.
Thus it has not been given any max-height, so that it can overflow
that 33px limit.
But it also means that it can overflow the screen, without any scrollbar,
so long lists are unreadable and unusable.

We set the max-height to a reasonable value, allowing for scrollbars.

opw 1922062
  • Loading branch information
Nans Lefebvre committed Jan 18, 2019
1 parent 500b019 commit 356b12f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addons/mail/static/src/scss/followers.scss
Expand Up @@ -84,6 +84,8 @@

.o_followers_list {
font-size: small;
max-height: 50vh; // ancestor has size 33px
overflow: auto;

.o_partner {
position: relative; // required for old design compatibility
Expand Down

0 comments on commit 356b12f

Please sign in to comment.