mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
40cf765ca2
Summary: Add the ability to select singular and multiple lines in paste to highlight. This is related to T3627 Test Plan: Create a paste, select one or more lines. Reviewers: epriestley, tberman Reviewed By: epriestley CC: aran, chad Maniphest Tasks: T3627 Differential Revision: https://secure.phabricator.com/D6668
86 lines
1.6 KiB
CSS
86 lines
1.6 KiB
CSS
/**
|
|
* @provides diffusion-source-css
|
|
*/
|
|
|
|
.diffusion-source {
|
|
margin: 1em 0 2em;
|
|
width: 100%;
|
|
font-family: "Monaco", Consolas, monospace;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.diffusion-source tr.phabricator-source-highlight {
|
|
background: #ffff00;
|
|
}
|
|
|
|
.diffusion-source th {
|
|
text-align: right;
|
|
vertical-align: top;
|
|
background: #eeeeee;
|
|
color: #888888;
|
|
border-style: solid;
|
|
border-width: 0px 1px;
|
|
border-color: #eeeeee #999999 #eeeeee #dddddd;
|
|
font-family: "Verdana";
|
|
font-size: 11px;
|
|
}
|
|
|
|
.diffusion-source td {
|
|
letter-spacing: 0.0083334px;
|
|
vertical-align: top;
|
|
white-space: pre-wrap;
|
|
padding-bottom: 1px;
|
|
padding-left: 8px;
|
|
line-height: 16px;
|
|
width: 100%;
|
|
}
|
|
|
|
.diffusion-browse-type-form {
|
|
float: right;
|
|
}
|
|
|
|
.diffusion-blame-link,
|
|
.diffusion-rev-link,
|
|
.diffusion-author-link {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.diffusion-blame-link {
|
|
min-width: 25px;
|
|
}
|
|
|
|
.diffusion-rev-link {
|
|
min-width: 90px;
|
|
}
|
|
|
|
.diffusion-author-link {
|
|
min-width: 120px;
|
|
}
|
|
|
|
.diffusion-blame-link a,
|
|
.diffusion-rev-link a,
|
|
.diffusion-author-link a,
|
|
.diffusion-line-link a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.diffusion-rev-link a,
|
|
.diffusion-author-link span,
|
|
.diffusion-author-link a {
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.diffusion-blame-link a,
|
|
.diffusion-line-link a {
|
|
/* Give the user a larger click target. */
|
|
display: block;
|
|
padding: 2px 8px;
|
|
}
|
|
|
|
.diffusion-line-link {
|
|
-moz-user-select: -moz-none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|