|
15 | 15 | </div> |
16 | 16 | <div id="create_idea_footer" [@openSlide]="(app.addIdea | async) ? 'open' : 'closed'"> |
17 | 17 | <div id="post_idea_form_wrap" [class.expanded]="toggleExpand"> |
| 18 | + <div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap" class="mobile_show" |
| 19 | + translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_ANONYMOUS_INFO"> |
| 20 | + <div class="tooltip" tooltip> |
| 21 | + <div class="content_title" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_TITLE"></div> |
| 22 | + <div class="content_description" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_DESCRIPTION"></div> |
| 23 | + </div> |
| 24 | + </div> |
18 | 25 | <div class="form_header"> |
19 | 26 | <div class="form_header_title"> |
20 | 27 | <span translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_TITLE"></span> |
|
33 | 40 | </div> |
34 | 41 |
|
35 | 42 | <div class="form_header_actions"> |
36 | | - <div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap" |
| 43 | + <div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap" class="mobile_hidden" |
37 | 44 | translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_ANONYMOUS_INFO"> |
38 | 45 | <div class="tooltip" tooltip> |
39 | 46 | <div class="content_title" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_TITLE"></div> |
40 | 47 | <div class="content_description" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_DESCRIPTION"></div> |
41 | 48 | </div> |
42 | 49 | </div> |
43 | | - <button class="form_header_expand_button" (click)="toggleExpand = !toggleExpand" |
| 50 | + <button class="form_header_expand_button mobile_hidden" (click)="toggleExpand = !toggleExpand" |
44 | 51 | [attr.aria-expanded]="toggleExpand"> |
45 | 52 | <svg class="form_header_expand_icon" [ngClass]="{ rotated: toggleExpand }" width="24" height="24" |
46 | 53 | viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
|
275 | 282 | </ng-container> |
276 | 283 | </div> |
277 | 284 |
|
278 | | - <div> |
| 285 | + <div id="idea_description"> |
279 | 286 | <textarea cosmarkdown name="description" formControlName="description" |
280 | 287 | cosmarkdowntranslatecharacterstatuskey="COMPONENTS.ADD_IDEA.IDEA_TYPE_CHARACTER_LIMIT" id="idea_description" |
281 | 288 | [(item)]="description" class="gray_borders" (itemChange)="updateText($event)" |
|
0 commit comments