Skip to content
Merged

#2301 #2356

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/ideation/components/add-idea/add-idea.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<div class="content_description" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_DESCRIPTION"></div>
</div>
</div>
<button class="form_header_expand_button" (click)="toggleExpand = !toggleExpand"
<button class="form_header_expand_button mobile_hidden" (click)="toggleExpand = !toggleExpand"
[attr.aria-expanded]="toggleExpand">
<svg class="form_header_expand_icon" [ngClass]="{ rotated: toggleExpand }" width="24" height="24"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
Expand Down Expand Up @@ -275,7 +275,7 @@
</ng-container>
</div>

<div>
<div id="idea_description">
<textarea cosmarkdown name="description" formControlName="description"
cosmarkdowntranslatecharacterstatuskey="COMPONENTS.ADD_IDEA.IDEA_TYPE_CHARACTER_LIMIT" id="idea_description"
[(item)]="description" class="gray_borders" (itemChange)="updateText($event)"
Expand Down
6 changes: 5 additions & 1 deletion src/app/ideation/components/add-idea/add-idea.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@
.form_header_actions {
display: flex;
gap: 8px;

@include mixins.mobile {
flex-direction: column;
}
}

.form_header_expand_button {
Expand Down Expand Up @@ -208,7 +212,7 @@
flex: 1 1 auto;
height: calc(100vh - 200px);

> div:not(.form_header) {
#idea_description {
flex: 1 1 auto;
display: flex;
flex-direction: column;
Expand Down
1 change: 1 addition & 0 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2666,6 +2666,7 @@
"LNK_CLEAR": "@:LNK_CLEAR",
"BTN_LEAVE_GROUP": "Leave group",
"BTN_VIEW_GROUP": "View group",
"BTN_JOINED_GROUP": "Joined",
"ORDER_TITLE_ASC": "Order groups A-Z",
"ORDER_TITLE_DESC": "Order groups Z-A",
"HEADING_NO_RESUTS": "@:VIEWS.MY.NO_RESULTS_FOUND_TITLE",
Expand Down