Skip to content

Commit

Permalink
[FIX] portal_rating: fix review box border
Browse files Browse the repository at this point in the history
Steps to Reproduce
===================
1. Go to website slides.
2. Open any Course.
3. Click on 'Add a review' or 'Edit your review'. 
-> Message box border is not visible.

After this commit
=================
The message box border will be visible
around the text area.

Task-3623765

closes odoo#147715

X-original-commit: 0080bff
Signed-off-by: Warnon Aurélien (awa) <[email protected]>
  • Loading branch information
thsh-odoo committed Dec 29, 2023
1 parent 846e327 commit 30d7261
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions addons/portal/static/src/scss/portal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,10 @@ img, .media_iframe_video, .o_image {
margin-bottom: 15px;
}

.o_portal_chatter_composer_body textarea {
border: 0;
}

.o_portal_chatter_messages {
margin-bottom: 15px;
overflow-wrap: break-word;
Expand Down
2 changes: 1 addition & 1 deletion addons/portal/static/src/xml/portal_chatter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<div class="o_portal_chatter_composer_body d-flex flex-nowrap align-items-start flex-grow-1 mb-4">
<div class="d-flex flex-column flex-grow-1 border rounded-3">
<div class="position-relative flex-grow-1">
<textarea rows="4" name="message" class="form-control border-0 rounded-3 shadow-none" placeholder="Write a message..." style="resize:none;"/>
<textarea rows="4" name="message" class="form-control rounded-3 shadow-none" placeholder="Write a message..." style="resize:none;"/>
</div>
<div class="d-flex flex-row align-self-end p-2">
<div class="d-flex px-1">
Expand Down

0 comments on commit 30d7261

Please sign in to comment.