mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
b861e0cf86
Summary: Typeaheads that are overflow have their contents hidden inside the form view. Test Plan: Tested Creating a Mock. Would like guidance on what this was solving so we can find something else. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2690 Differential Revision: https://secure.phabricator.com/D5290
44 lines
845 B
CSS
44 lines
845 B
CSS
/**
|
|
* @provides phabricator-form-view-css
|
|
*/
|
|
|
|
.phabricator-form-view {
|
|
padding: .75em;
|
|
background: #f9f9f9;
|
|
border-width: 1px 0;
|
|
border-style: solid;
|
|
border-color: #dbdbdb;
|
|
}
|
|
|
|
.device .phabricator-form-view .aphront-form-control .aphront-form-label {
|
|
display: block;
|
|
float: none;
|
|
text-align: left;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.device .phabricator-form-view .aphront-form-control .aphront-form-caption {
|
|
display: block;
|
|
float: none;
|
|
text-align: left;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.device .phabricator-form-view .aphront-form-control .aphront-form-input {
|
|
float: none;
|
|
display: block;
|
|
text-align: left;
|
|
margin: .25em 0 0 0;
|
|
width: 99%;
|
|
padding: 0;
|
|
}
|
|
|
|
.device .phabricator-form-view .aphront-form-control .aphront-form-error {
|
|
float: none;
|
|
text-align: left;
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|