Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: properly size icons in distribute/align #1694

Merged
merged 1 commit into from Jul 7, 2022
Merged

Conversation

barmac
Copy link
Member

@barmac barmac commented Jul 7, 2022

No description provided.

@barmac barmac requested review from a team, philippfromme and marstamm and removed request for a team July 7, 2022 14:03
@bpmn-io-tasks bpmn-io-tasks bot added the needs review Review pending label Jul 7, 2022
@barmac barmac changed the base branch from develop to master July 7, 2022 14:03
Copy link
Contributor

@marstamm marstamm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works on demo page 🚀

@fake-join fake-join bot merged commit 26fea30 into master Jul 7, 2022
@fake-join fake-join bot deleted the icons-size branch July 7, 2022 14:29
@bpmn-io-tasks bpmn-io-tasks bot removed the needs review Review pending label Jul 7, 2022
width: 100%;
display: block;

height: 20px;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there no other way than hardcoding (to the parent height)?

For me this looks like duplicate magic numbering. We already define the entry height in diagram-js (cf. https://github.com/bpmn-io/diagram-js/blob/develop/assets/diagram-js.css#L512).

Copy link
Member Author

@barmac barmac Jul 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, perhaps we could just use 1.25em here (1em = 16px for that img). We need to set the image size explicitly because otherwise it shrinks.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But then the em value is also a magic number as it uses the line-height / font-size ratio 🙈

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other way would be to use box-sizing: content-box for the entries and not care about app-specific overrides.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't the issue that width: 100% does not mean a thing? I#ll have a look.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<div>
  <style>
    .border { box-sizing: border-box; }
    .content { box-sizing: content-box; }

    .box {
      width:20px; height: 20px; padding: 4px 6px; background-color: aqua;
    }

    .box img {
      height: 100%; width: 100%; display: block; background-color: red;
    }
  </style>
  <div>
    <div class="box border">
      <img>
    </div>
  </div>
  <div>
    <div class="box content">
      <img>
    </div>
  </div>
</div>

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants