mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
fcc467fe5e
Summary: - Prevent long comments from expanding the inline box. - Make anchor links to inlines work properly. - Get rid of "pre" white-space formatting in inline comments. Test Plan: Viewed a revision with crazy comments in it. Reviewers: CC:
28 lines
520 B
CSS
28 lines
520 B
CSS
/**
|
|
* @provides differential-revision-add-comment-css
|
|
*/
|
|
|
|
.differential-add-comment-panel .aphront-form-view {
|
|
background: #fffff5;
|
|
}
|
|
|
|
.differential-add-comment-panel .differential-panel {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.differential-comment-preview {
|
|
background: #f0f0f0;
|
|
border-bottom: 1px solid #aaaaaa;
|
|
margin-bottom: 2em;
|
|
max-width: 1120px;
|
|
padding: 15px 20px;
|
|
}
|
|
|
|
.differential-comment-preview .differential-loading-text {
|
|
color: #aaaaaa;
|
|
}
|
|
|
|
#inline-comment-preview {
|
|
margin-left: 60px;
|
|
width: 550px;
|
|
}
|