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

Are blocks left-, center-, or right-justified wrt the timeline? #232

Closed
dmc314 opened this issue Dec 1, 2022 · 5 comments
Closed

Are blocks left-, center-, or right-justified wrt the timeline? #232

dmc314 opened this issue Dec 1, 2022 · 5 comments
Labels
bug Something isn't working discussion This issue is not supposed to be used to track work, only for discussions or spawning work effort/unknown This issue involves work that is unknown and needs to be dove into prior to getting an accurate est post-MVP status/needs-clarification This issue requires further information prior to becoming ready for work UI The issue pertains to visual touchpoints

Comments

@dmc314
Copy link

dmc314 commented Dec 1, 2022

Can we add a tick-mark to the top of the rectangles or something to show where they land?

@SgtPooki SgtPooki added bug Something isn't working UI The issue pertains to visual touchpoints post-MVP status/needs-clarification This issue requires further information prior to becoming ready for work discussion This issue is not supposed to be used to track work, only for discussions or spawning work effort/unknown This issue involves work that is unknown and needs to be dove into prior to getting an accurate est labels Dec 1, 2022
@SgtPooki
Copy link
Contributor

SgtPooki commented Dec 1, 2022

The blocks are right-justified w.r.t. the timeline. i.e. the right side of each milestone card should align with the date specified in its ETA. Unfortunately, we're currently using css-grids to handle positioning, and this decision has significantly limited the accuracy we can obtain.

Is that enough information or is there something else we can do to help?

I'm open to modifying the card view to show more exactly how it aligns, but I think that will make the inaccuracy more pronounced.

I can think of two potential UX bugs that resulted in this issue:

  1. StarMaps User Guide doesn't have enough information to inform users of card alignment
  2. card alignment could be more visually intuitive

thoughts @juliaxbow ?

@dmc314
Copy link
Author

dmc314 commented Dec 1, 2022

I have no front-end expertise, but does this answer from GPT-3 help at all?

My Prompt: below is html and css that render a blue rectangle with a small arrow pointing upwards from the top right of the rectangle, and text inside it that says "project xyz":

GPT-3 Output:

<div class="rectangle">
  <span class="arrow-up"></span>
  <div class="text">Project XYZ</div>
</div>

.rectangle {
  width: 200px;
  height: 100px;
  background-color: blue;
  position: relative;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid blue;
  position: absolute;
  top: -20px;
  right: 20px;
}

.text {
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 18px;
  color: white;
}

Rendered in bottom right of https://jsfiddle.net/
image

@juliaxbow
Copy link
Collaborator

+1 on updating the user guide. Will take a stab. @dmc314 I like the suggestion of an arrow - will play around with a few designs and see how it looks.

Separately, in some of the original mockups (which is something we may shift towards), month markers extended through the full roadmap area which may help point to alignment.

@juliaxbow
Copy link
Collaborator

Moving towards center-alignment, where each grid section denotes a full month. Discussing in #251

@SgtPooki
Copy link
Contributor

Closing this issue in favor of #251, which is blocked by #237

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working discussion This issue is not supposed to be used to track work, only for discussions or spawning work effort/unknown This issue involves work that is unknown and needs to be dove into prior to getting an accurate est post-MVP status/needs-clarification This issue requires further information prior to becoming ready for work UI The issue pertains to visual touchpoints
Projects
Archived in project
Development

No branches or pull requests

3 participants