mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
0dde637059
Summary: Tightened up spaces, made inline area more 'inset', tweaked colors to match timeline view. Test Plan: Tested mocks with and without inline comments. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5188
39 lines
694 B
CSS
39 lines
694 B
CSS
/**
|
|
* @provides pholio-inline-comments-css
|
|
*/
|
|
.pholio-inline-comment-dialog-title {
|
|
font-weight: bold;
|
|
color: #fff;
|
|
padding-bottom: 2px;
|
|
margin-bottom: 6px;
|
|
text-align: left;
|
|
}
|
|
|
|
.pholio-inline-comment-dialog-buttons button {
|
|
float: right;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.pholio-inline-comment-dialog {
|
|
padding: 10px;
|
|
}
|
|
|
|
.pholio-inline-comment-dialog-textarea {
|
|
width: 254px;
|
|
height: 6em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.pholio-new-inline-comment {
|
|
position: absolute;
|
|
border: 1px solid #000;
|
|
background: rgb(60, 60, 60);
|
|
z-index: 100;
|
|
padding: 8px 10px 8px 12px;
|
|
width: 260px;
|
|
box-shadow: 0 2px 10px 1px #999;
|
|
}
|
|
|
|
.pholio-inline-comment-dialog-buttons a {
|
|
display: none;
|
|
}
|