mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
5fdaebf158
Summary: - Always show the column so there's no jumping around when comments are added. - Set width to 320px so we can mobile it (not 100% sure how this will work yet). - When there are too many comments, scroll them internally. Test Plan: {F33552} Reviewers: ljalonen, chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5071
100 lines
1.7 KiB
CSS
100 lines
1.7 KiB
CSS
/**
|
|
* @provides pholio-css
|
|
*/
|
|
.pholio-mock-image-container {
|
|
background-color: #282828;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
}
|
|
|
|
.pholio-mock-carousel {
|
|
background-color: #202020;
|
|
text-align: center;
|
|
border-top: 1px solid #101010;
|
|
}
|
|
|
|
.pholio-mock-carousel-thumb-item {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
width: 140px;
|
|
height: 140px;
|
|
padding: 5px;
|
|
margin: 3px;
|
|
background: #282828;
|
|
vertical-align: middle;
|
|
border: 1px solid #383838;
|
|
position: relative;
|
|
}
|
|
|
|
.device-desktop .pholio-mock-carousel-thumb-item:hover {
|
|
background: #383838;
|
|
border-color: #686868;
|
|
}
|
|
|
|
.pholio-mock-carousel-thumbnail {
|
|
margin: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.pholio-mock-image {
|
|
display: inline-block;
|
|
}
|
|
|
|
.pholio-mock-select-border {
|
|
position: absolute;
|
|
background: #ffffff;
|
|
opacity: 0.25;
|
|
box-sizing: border-box;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
.pholio-mock-select-fill {
|
|
position: absolute;
|
|
border: 1px dashed #ffffff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pholio-mock-wrapper {
|
|
position: relative;
|
|
margin: 20px 340px 20px 20px;
|
|
display: inline-block;
|
|
cursor: crosshair;
|
|
padding: 0px;
|
|
}
|
|
|
|
.pholio-mock-inline-comments {
|
|
width: 320px;
|
|
border-left: 1px solid #101010;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
overflow-x: auto;
|
|
text-align: left;
|
|
}
|
|
|
|
.pholio-inline-comment {
|
|
border: 1px solid #aa8;
|
|
background: #f9f9f1;
|
|
margin: 2px;
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.pholio-inline-comment-header {
|
|
border-bottom: 1px solid #cca;
|
|
color: #333;
|
|
font-weight: bold;
|
|
padding-bottom: 6px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.pholio-mock-inline-comment-highlight {
|
|
background-color: #F0B160;
|
|
}
|
|
|
|
.pholio-inline-head-links a {
|
|
font-weight: normal;
|
|
margin-left: 5px;
|
|
}
|
|
|