mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
0cc0782eaf
Summary: - Moves the right-hand gutter under the image. - Moves size information to the upper right. - This is transitional, on the way toward something more like the mocks in D9534. Test Plan: See screenshot. Reviewers: chad Reviewed By: chad Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D9538
84 lines
1.5 KiB
CSS
84 lines
1.5 KiB
CSS
/**
|
|
* @provides pholio-inline-comments-css
|
|
*/
|
|
|
|
.pholio-inline-comment {
|
|
margin: 0 0 4px 0;
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.pholio-mock-inline-comments {
|
|
color: #cccccc;
|
|
background: #282828;
|
|
overflow-x: auto;
|
|
text-align: left;
|
|
}
|
|
|
|
.pholio-inline-comment-header {
|
|
color: #fff;
|
|
font-weight: bold;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.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: 4px;
|
|
}
|
|
|
|
.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);
|
|
padding: 8px 10px 8px 12px;
|
|
width: 260px;
|
|
box-shadow: 0 2px 10px 1px {$lightgreytext};
|
|
}
|
|
|
|
.pholio-inline-comment-dialog-buttons a {
|
|
display: none;
|
|
}
|
|
|
|
.pholio-inline-comment-draft {
|
|
border-style: dashed;
|
|
border-color: {$greytext};
|
|
background: #464646;
|
|
}
|
|
|
|
.pholio-inline-head-links {
|
|
float: right;
|
|
font-weight: normal;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.pholio-mock-inline-comments a {
|
|
font-weight: normal;
|
|
color: {$sky};
|
|
}
|
|
|
|
.device-desktop .pholio-mock-inline-comment-highlight.pholio-mock-select-fill {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.device-desktop .pholio-mock-inline-comment-highlight.pholio-inline-comment {
|
|
background: #555555;
|
|
border-color: #aaaaaa;
|
|
}
|