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

"Feed Url" label overlaps input on the add feed screen #1213

Closed
masukomi opened this issue Jul 20, 2024 · 2 comments
Closed

"Feed Url" label overlaps input on the add feed screen #1213

masukomi opened this issue Jul 20, 2024 · 2 comments

Comments

@masukomi
Copy link

see screenshot.

CleanShot 2024-07-19 at 22 41 49@2x

it looks ok before you try putting any content in it

CleanShot 2024-07-19 at 22 43 46@2x

I sanity checked that this wasn't just a large font size issue. It's not.

The short width of the box is controlled by this css:

.setup .control-group input {
  width: 210px;
}

which, in addition to not being wide enough, is problematic in that it is defined as i fixed pixel size and thus doesn't expand with the size of a user's font setting. Should be switched to rem instead of px

the problem with the "Feed URL" text is caused by this CSS

.setup .field-label {
  display: block;
  color: #BFC9CA;
  position: absolute;
  left: 13px;
  top: 10px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

This is using an absolute pixel based positioning (again a problem as font sizes - and thus line height- grow). It's interacting negatively with the input which has NO absolute positioning. The small height forces it to be over (or under) the input. if you remove the top: 10px it drops down to below the input which makes sense given the HTML that's creating these 2 elements and it looks like this.

CleanShot 2024-07-19 at 22 52 33@2x

Given the top: 10px I'm unsure if it's supposed to be above or below the input.

(tested using Firefox)

@mockdeep
Copy link
Collaborator

@masukomi I think the label should be moved above the field. They appear to have been designed to be inside the field, but I may have broken it with other updates. Would you be up for making a PR?

giovapanasiti added a commit to montedelgallo/stringer that referenced this issue Sep 15, 2024
@giovapanasiti
Copy link
Contributor

@mockdeep fixed it here: #1229

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

No branches or pull requests

3 participants