mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
80ebe401e5
Summary: Give profile images a little more space, fix "/" spacing, add a tooltip. Test Plan: {F5251205} Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D18749
102 lines
1.8 KiB
CSS
102 lines
1.8 KiB
CSS
/**
|
|
* @provides diffusion-source-css
|
|
*/
|
|
|
|
.diffusion-source {
|
|
width: 100%;
|
|
background: {$page.content};
|
|
overflow: hidden;
|
|
}
|
|
|
|
.device-phone .diffusion-source-wrap {
|
|
overflow: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.diffusion-source tr.phabricator-source-highlight {
|
|
background: {$sh-yellowbackground};
|
|
}
|
|
|
|
.diffusion-source th {
|
|
text-align: right;
|
|
vertical-align: top;
|
|
background: {$lightgreybackground};
|
|
color: {$bluetext};
|
|
border-right: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.diffusion-source td {
|
|
vertical-align: top;
|
|
white-space: pre-wrap;
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
padding-left: 8px;
|
|
width: 100%;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.device .diffusion-source td {
|
|
word-break: normal;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.diffusion-browse-type-form {
|
|
float: right;
|
|
}
|
|
|
|
.diffusion-blame-link,
|
|
.diffusion-rev-link {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.diffusion-blame-link {
|
|
min-width: 28px;
|
|
}
|
|
|
|
.diffusion-source th.diffusion-rev-link {
|
|
text-align: left;
|
|
min-width: 130px;
|
|
}
|
|
|
|
.diffusion-blame-link a,
|
|
.diffusion-rev-link a,
|
|
.diffusion-line-link a {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.diffusion-rev-link a {
|
|
margin: 0 8px 0 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.diffusion-rev-link span {
|
|
display: inline-block;
|
|
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: 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;
|
|
}
|
|
|
|
.diffusion-rev-link .diffusion-author-link {
|
|
display: inline-block;
|
|
padding: 0;
|
|
margin: 2px 6px -4px 8px;
|
|
width: 16px;
|
|
height: 16px;
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|