This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 974
width of input and select elements on new bookmark folder form is not equal #5192
Labels
Milestone
Comments
luixxiul
added
the
design
A design change, especially one which needs input from the design team.
label
Oct 31, 2016
bsclifton
added
bug/good-first-bug
and removed
design
A design change, especially one which needs input from the design team.
labels
Nov 4, 2016
josiah-keller
pushed a commit
to josiah-keller/browser-laptop
that referenced
this issue
Nov 7, 2016
Removed milestone- let's discuss if you feel strongly |
1 task
@luixxiul I noticed this too on about:styles you can see the input type text is longer than the select boxes. I'll assign to myself and try to get to it soon unless you want to take it? |
luixxiul
pushed a commit
that referenced
this issue
Dec 6, 2016
Fix #5192 Both input elements on the New Bookmark Folder form have the following CSS properties set: * width: 100%; * max-width: 250px; * padding: 0 5px; The default value for box-sizing is content-box (see https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing). This causes the input field for the bookmark folder's title to be 100% + 5px + 5px (width + padding left + padding right) wide. However, the padding is not applied to the select field for parent folder selection, causing the field to be only 100% wide (without the padding). Using border-box as value for the box-sizing attribute for both form fields renders them at an equal width.
This was referenced Dec 20, 2016
Test plan: #6035 (comment) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Describe the issue you encountered: width of input and select elements on the new bookmark folder form is not equal
Expected behavior: it should be equal
cc: @jkup
The text was updated successfully, but these errors were encountered: