You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FIX] mail: bigger buttons in discuss call meeting view
Buttons has same size as other discuss actions, which are sized for
dense UI like discuss app with message list and composer + panels.
In meeting view, the UI is essentially streams / avatar cards.
Buttons below need to be sized accordingly, i.e. bigger, which this
commit does.
Part of Task-5190261
closesodoo#233331
X-original-commit: b139329
Signed-off-by: Alexandre Kühn (aku) <aku@odoo.com>
Copy file name to clipboardExpand all lines: addons/mail/static/src/core/common/action_list.xml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,8 +58,10 @@
58
58
'rounded-circle': isComposerRoundedBtn or isThreadRoundedBtn,
59
59
'rounded-start-3': !isComposerRoundedBtn and !isThreadRoundedBtn and !action.tags.includes('JOIN_LEAVE_CALL') and props.inline and props.isFirstInGroup,
60
60
'rounded-end-3': !isComposerRoundedBtn and !isThreadRoundedBtn and !action.tags.includes('JOIN_LEAVE_CALL') and props.inline and props.isLastInGroup,
61
-
'o-px-1_5 py-1': props.inline and (hasBtnBg and !action.tags.includes('JOIN_LEAVE_CALL')) or (!hasBtnBg and env.inComposer),
62
-
'o-p-1_5 d-flex align-items-center': props.inline and hasBtnBg and action.tags.includes('JOIN_LEAVE_CALL') and !env.inChatWindow,
61
+
'px-2 o-py-1_5': props.inline and env.inMeetingView and !env.inComposer,
62
+
'o-px-1_5 py-1': props.inline and (hasBtnBg and !action.tags.includes('JOIN_LEAVE_CALL') and !env.inMeetingView) or (!hasBtnBg and env.inComposer),
63
+
'd-flex align-items-center': props.inline and hasBtnBg and action.tags.includes('JOIN_LEAVE_CALL') and !env.inChatWindow,
64
+
'o-p-1_5': props.inline and hasBtnBg and action.tags.includes('JOIN_LEAVE_CALL') and !env.inChatWindow and !env.inMeetingView,
63
65
'p-1 d-flex align-items-center': props.inline and hasBtnBg and action.tags.includes('JOIN_LEAVE_CALL') and env.inChatWindow,
64
66
'o-inline': props.inline,
65
67
'o-p-0_5': props.inline and !hasBtnBg and !env.inComposer,
0 commit comments