You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it looks ok before you try putting any content in it
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
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.
Given the top: 10px I'm unsure if it's supposed to be above or below the input.
(tested using Firefox)
The text was updated successfully, but these errors were encountered:
@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?
see screenshot.
it looks ok before you try putting any content in it
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:
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 ofpx
the problem with the "Feed URL" text is caused by this CSS
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.Given the
top: 10px
I'm unsure if it's supposed to be above or below the input.(tested using Firefox)
The text was updated successfully, but these errors were encountered: