2012-03-20 03:45:16 +01:00
|
|
|
/**
|
|
|
|
* @provides inline-comment-summary-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phabricator-inline-summary {
|
2014-04-29 04:43:00 +02:00
|
|
|
color: {$bluetext};
|
|
|
|
padding-top: 12px;
|
|
|
|
margin-top: 12px;
|
|
|
|
border-top: 1px solid {$thinblueborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-remarkup + .phabricator-inline-summary {
|
|
|
|
padding-top: 16px;
|
2012-03-20 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table th {
|
|
|
|
padding: 6px 0px;
|
2014-04-29 04:43:00 +02:00
|
|
|
color: {$lightgreytext};
|
2012-03-20 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td {
|
|
|
|
padding: 0px 4px 6px;
|
|
|
|
white-space: nowrap;
|
2014-04-29 04:43:00 +02:00
|
|
|
color: {$darkbluetext};
|
2012-03-20 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td.inline-line-number {
|
|
|
|
padding-left: 0px;
|
|
|
|
width: 100px;
|
2014-04-29 04:43:00 +02:00
|
|
|
white-space: nowrap;
|
2012-03-20 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td.inline-which-diff {
|
2013-09-02 17:08:54 +02:00
|
|
|
color: {$greytext};
|
2012-03-20 03:45:16 +01:00
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td.inline-summary-content {
|
|
|
|
vertical-align: top;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE: These two rules provide a larger hit target for clicking line numbers
|
|
|
|
(by letting you click the entire cell) and a visual indicator that you're on
|
|
|
|
target (by highlighting the entire cell). */
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td.inline-line-number a.num {
|
2014-04-29 04:43:00 +02:00
|
|
|
padding-left: 4px;
|
2012-03-20 03:45:16 +01:00
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
2014-04-29 04:43:00 +02:00
|
|
|
color: {$blue};
|
2012-03-20 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-inline-summary-table td.inline-line-number a.num:hover {
|
2014-04-29 04:43:00 +02:00
|
|
|
background: {$blue};
|
|
|
|
border-radius: 3px;
|
2012-03-20 03:45:16 +01:00
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-04-29 04:43:00 +02:00
|
|
|
|
|
|
|
.phui-timeline-core-content .phabricator-inline-summary:first-child {
|
|
|
|
border: none;
|
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|