1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 09:48:47 +02:00
phorge-phorge/webroot/rsrc/css/layout/phabricator-source-code-view.css
Chad Little a3c8fcded2 [Redesign] Give a default line height on codeblocks
Summary: Ref T8099, Gives a default line height to codeblocks, slight background color to pastes.

Test Plan: Tested diffs, pastes, codeblocks in remarkup

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8099

Differential Revision: https://secure.phabricator.com/D13470
2015-06-29 11:06:09 -07:00

74 lines
1.7 KiB
CSS

/**
* @provides phabricator-source-code-view-css
*/
.phabricator-source-code-container {
background: #fff;
overflow-x: auto;
overflow-y: hidden;
border: 1px solid {$sh-lightyellowborder};
border-radius: 3px;
background-color: #FCFBF7;
}
.phui-object-item .phabricator-source-code-container {
margin-left: 8px;
}
.phabricator-source-code-view tr:first-child * {
padding-top: 8px;
}
.phabricator-source-code-view tr:last-child * {
padding-bottom: 8px;
}
.phabricator-source-code {
white-space: pre-wrap;
padding: 2px 8px 1px;
width: 100%;
}
.phabricator-source-line {
background-color: {$sh-yellowbackground};
text-align: right;
padding: 2px 6px 1px 12px;
border-right: 1px solid {$sh-lightyellowborder};
color: {$sh-yellowtext};
/* 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;
}
th.phabricator-source-line a {
color: {$darkbluetext};
}
th.phabricator-source-line:hover {
background: {$sh-lightyellowborder};
cursor: pointer;
}
.phabricator-source-highlight {
background: {$sh-yellowbackground};
}
.phabricator-source-code-summary {
padding-bottom: 8px;
}
/* If a Paste has enormously long lines, truncate them in the summary on the
list page. They'll be fully visible on the Paste itself. */
.phabricator-source-code-summary .phabricator-source-code-container {
overflow-x: hidden;
}
.phabricator-source-code-summary .phabricator-source-code {
white-space: nowrap;
}