2011-04-04 04:20:47 +02:00
|
|
|
/**
|
|
|
|
* @provides owners-path-editor-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.owners-path-editor-table {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table td {
|
|
|
|
padding: 2px 4px;
|
Update form styles, implement in many places
Summary:
This creates a common form look and feel across the site. I spent a bit of time working out a number of kinks in our various renderings. Some things:
- Font Styles are correctly applied for form elements now.
- Everything lines up!
- Selects are larger, easier to read, interact.
- Inputs have been squared.
- Consistant CSS applied glow (try it!)
- Improved Mobile Responsiveness
- CSS applied to all form elements, not just Aphront
- Many other minor tweaks.
I tried to hit as many high profile forms as possible in an effort to increase consistency. Stopped for now and will follow up after this lands. I know Evan is not a super fan of the glow, but after working with it for a week, it's way cleaner and responsive than the OS controls. Give it a try.
Test Plan: Tested many applications, forms, mobile and tablet.
Reviewers: epriestley, btrahan
Reviewed By: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D5860
2013-05-07 23:07:06 +02:00
|
|
|
vertical-align: middle;
|
2011-04-04 04:20:47 +02:00
|
|
|
}
|
|
|
|
|
2012-12-07 02:23:56 +01:00
|
|
|
.owners-path-editor-table select.owners-repo {
|
2011-04-04 04:20:47 +02:00
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table input {
|
Update form styles, implement in many places
Summary:
This creates a common form look and feel across the site. I spent a bit of time working out a number of kinks in our various renderings. Some things:
- Font Styles are correctly applied for form elements now.
- Everything lines up!
- Selects are larger, easier to read, interact.
- Inputs have been squared.
- Consistant CSS applied glow (try it!)
- Improved Mobile Responsiveness
- CSS applied to all form elements, not just Aphront
- Many other minor tweaks.
I tried to hit as many high profile forms as possible in an effort to increase consistency. Stopped for now and will follow up after this lands. I know Evan is not a super fan of the glow, but after working with it for a week, it's way cleaner and responsive than the OS controls. Give it a try.
Test Plan: Tested many applications, forms, mobile and tablet.
Reviewers: epriestley, btrahan
Reviewed By: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D5860
2013-05-07 23:07:06 +02:00
|
|
|
width: 400px;
|
2011-04-04 04:20:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table div.error-display {
|
|
|
|
padding: 4px 12px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table div.validating {
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table div.invalid {
|
|
|
|
color: #aa0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.owners-path-editor-table div.valid {
|
|
|
|
color: #00aa00;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|