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 972
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jkup
added
design
A design change, especially one which needs input from the design team.
QA/test-plan-specified
labels
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.
…okmarkForm input" Auditors: @bbondy Test Plan:
Cherry-picked and pushed the commits of #5837 to fix the dialog on about:bookmarks into |
1 task
Bonus points for replacing that heavy black close button with the svg from the stop loading button. : )
… On Dec 5, 2016, at 9:43 PM, Suguru Hirahara ***@***.***> wrote:
Cherry-picked and pushed the commits of #5837 to fix the dialog on about:bookmarks
into
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@bsclifton would you please apply @bradleyrichter I have replaced the close button for the modal dialog with the SVG button in 21ece29#diff-a12551e83f49ce14bb3d831f382ff9acR106 of #6009. |
@bsclifton @bradleyrichter I opened an issue for that: #6040 |
++ |
This was referenced Dec 21, 2016
4 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
git rebase -i
to squash commits (if needed).TIL that select boxes aren't box-sizing: border-box like input elements are which is causing them to be wider than they should be if they have padding. The easy fix is just manually setting all inputs and selects to border-box (this is what Bootstrap does, although they apply it to the entire html selector!)
Fix #5192
Auditors @bradleyrichter @bsclifton
Test Plan: