mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8bcdf42762
Summary: Add a ".device" rule which means "phone or tablet". Simplify about 5000 rules which were written ".device-phone X, device-tablet X { ... }". Test Plan: Browsed the site a bit without incident. Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T1960 Differential Revision: https://secure.phabricator.com/D4103
48 lines
868 B
CSS
48 lines
868 B
CSS
/**
|
|
* @provides phabricator-form-view-css
|
|
*/
|
|
|
|
.phabricator-form-view {
|
|
padding: .75em;
|
|
overflow: hidden;
|
|
|
|
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;
|
|
}
|