Summary: - Add a PhabricatorApplication. - Make most of the views work well on tablets / phones. The actual "Create" form doesn't, but everything else is good -- need to make device-friendly form layouts before I can do the form. Test Plan: Will attach screenshots. Reviewers: btrahan, chad, vrana Reviewed By: btrahan CC: aran Maniphest Tasks: T1569 Differential Revision: https://secure.phabricator.com/D3293
27 lines
597 B
CSS
27 lines
597 B
CSS
/**
|
|
* @provides phabricator-source-code-view-css
|
|
*/
|
|
|
|
.phabricator-source-code {
|
|
white-space: pre-wrap;
|
|
padding: 3px 8px;
|
|
}
|
|
|
|
.phabricator-source-line {
|
|
text-align: right;
|
|
padding: 3px 6px 3px 12px;
|
|
|
|
border-right: 1px solid #dbdbdb;
|
|
font-weight: bold;
|
|
color: #555555;
|
|
|
|
/* When the user selects rows of source, don't visibly select the line
|
|
numbers beside them. We use JS to strip the line numbers out when the user
|
|
copies the text. */
|
|
-moz-user-select: -moz-none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|