Skip to content
Snippets Groups Projects

Fixes #1521 Description field width has been addressed

Merged Uma requested to merge uma.s/vtigercrm:description_field_width into 7.4.0

Merge request reports

Merged by avatar (Apr 18, 2025 9:36am UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Uma mentioned in commit 135b2ac0

    mentioned in commit 135b2ac0

  • Uma Status changed to merged

    Status changed to merged

  • @uma.s From what I can tell this MR only attempts to address the problem in Edit View and actually makes it worse! It set the box to 200px wide which is smaller than the max-width of 325px;

    I have a custom stylesheet on my customer's system and adding the following two clauses addresses the problem. For desktop views at least.

    /* Edit View */
    .fieldBlockContainer .inputElement.textAreaElement {
        max-width:none;
        width: 100%;
    }
    /* Detail View */
    .detailview-table textarea.inputElement.form-control {
        max-width:none;
        width: 90%;
    }

    I understand there are @media clauses in the less, so why not adjust the sizing specifically for small viewports rather than doing this?

  • Author Guest

    @lord_alan We will review this.

  • Author Guest

    commit pulled

Please register or sign in to reply
Loading