mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
0a01334172
Summary: These items should be floated, not display: block. Test Plan: Test blame view with commits AND revisions, check they display inline. Reviewers: epriestley Reviewed By: epriestley Spies: Korvin Differential Revision: https://secure.phabricator.com/D18462
108 lines
1.9 KiB
CSS
108 lines
1.9 KiB
CSS
/**
|
|
* @provides diffusion-source-css
|
|
*/
|
|
|
|
.diffusion-source {
|
|
width: 100%;
|
|
background: {$page.content};
|
|
}
|
|
|
|
.diffusion-source tr.phabricator-source-highlight th,
|
|
.diffusion-source tr.phabricator-source-highlight td {
|
|
background: {$gentle.highlight};
|
|
}
|
|
|
|
.diffusion-source th {
|
|
text-align: right;
|
|
vertical-align: top;
|
|
color: {$darkbluetext};
|
|
border-right: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.diffusion-source td {
|
|
vertical-align: top;
|
|
white-space: pre-wrap;
|
|
padding: 3px 12px;
|
|
width: 100%;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.diffusion-browse-type-form {
|
|
float: right;
|
|
}
|
|
|
|
.diffusion-blame-link,
|
|
.diffusion-rev-link,
|
|
.diffusion-blame-date {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.diffusion-blame-date {
|
|
background: {$lightgreybackground};
|
|
font: {$basefont};
|
|
font-size: {$smallestfontsize};
|
|
}
|
|
|
|
.diffusion-blame-link,
|
|
.diffusion-line-link {
|
|
background: {$lightgreybackground};
|
|
}
|
|
|
|
.diffusion-source th.diffusion-rev-link {
|
|
text-align: left;
|
|
min-width: 130px;
|
|
background: {$lightgreybackground};
|
|
font: {$basefont};
|
|
font-size: {$smallestfontsize};
|
|
}
|
|
|
|
.diffusion-source a {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.diffusion-rev-link a {
|
|
max-width: 340px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.diffusion-rev-link a,
|
|
.diffusion-rev-link span,
|
|
.diffusion-blame-date a {
|
|
margin: 3px 8px;
|
|
float: left;
|
|
}
|
|
|
|
.diffusion-rev-link span {
|
|
margin-right: -4px;
|
|
margin-left: -4px;
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.diffusion-blame-link a,
|
|
.diffusion-line-link a {
|
|
/* Give the user a larger click target. */
|
|
display: block;
|
|
padding: 4px 8px 3px;
|
|
}
|
|
|
|
.diffusion-line-link a {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.diffusion-blame-link a .phui-icon-view {
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.diffusion-blame-link a:hover .phui-icon-view {
|
|
color: {$sky};
|
|
}
|
|
|
|
.diffusion-line-link {
|
|
-moz-user-select: -moz-none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|