mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 12:12:43 +01:00
1f51d023af
Summary: Ref T2644. This isn't perfect, but makes Pholio more-or-less usable on mobile. In particular: - Inline comments drop below the image. - Clicking the image lightboxes a full size version so you can scroll around it and inspect details. - Clicking it again dismisses it. Things that aren't good: - Can't add inline comments. This seems complicated and not critical. - Can't easily figure out which inline comments go where since there's no hover. Maybe let you tap them? Not sure if we really need this. - Thumbs are between image and image data. I'm planning to get rid of the thumbs and do swipe left/right instead. - It would be nice to scroll the lightbox to center on the part of the image you tapped. I just thought of this, though. Test Plan: {F34640} {F34641} {F34642} Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T2644 Differential Revision: https://secure.phabricator.com/D5232
128 lines
2.1 KiB
CSS
128 lines
2.1 KiB
CSS
/**
|
|
* @provides pholio-css
|
|
*/
|
|
.pholio-mock-image-container {
|
|
background-color: #282828;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
background: url('/rsrc/image/texture/pholio-background.gif');
|
|
}
|
|
|
|
.pholio-mock-carousel {
|
|
background-color: #282828;
|
|
text-align: center;
|
|
border-top: 1px solid #101010;
|
|
}
|
|
|
|
.device-desktop .pholio-mock-carousel {
|
|
margin-right: 320px;
|
|
}
|
|
|
|
.pholio-mock-carousel-thumb-item {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
width: 140px;
|
|
height: 140px;
|
|
padding: 5px;
|
|
margin: 3px;
|
|
background: #181818;
|
|
vertical-align: middle;
|
|
border: 1px solid #383838;
|
|
position: relative;
|
|
}
|
|
|
|
.device-desktop .pholio-mock-carousel-thumb-item:hover,
|
|
.pholio-mock-carousel-thumb-current {
|
|
background: #383838;
|
|
border-color: #686868;
|
|
}
|
|
|
|
.pholio-mock-carousel-thumbnail {
|
|
margin: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.pholio-mock-image {
|
|
margin: auto;
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.pholio-mock-select-fill {
|
|
position: absolute;
|
|
background: #ffffff;
|
|
opacity: 0.25;
|
|
box-sizing: border-box;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
.pholio-mock-select-border {
|
|
position: absolute;
|
|
border: 1px dashed #ffffff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pholio-mock-image-panel {
|
|
padding: 20px;
|
|
border-top: 1px solid #333;
|
|
}
|
|
|
|
.device-desktop .pholio-mock-image-panel {
|
|
border-right: 1px solid #333;
|
|
margin-right: 319px;
|
|
}
|
|
|
|
.pholio-mock-image-viewport {
|
|
position: relative;
|
|
margin: auto;
|
|
display: inline-block;
|
|
}
|
|
|
|
.pholio-inline-comment-header {
|
|
color: #fff;
|
|
border-bottom: 1px solid #555;
|
|
font-weight: bold;
|
|
padding-bottom: 6px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.pholio-image-loading img {
|
|
opacity: 0.50;
|
|
}
|
|
|
|
.pholio-image-info {
|
|
border-bottom: 1px solid #101010;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.pholio-image-info-item {
|
|
padding: 0 10px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.pholio-visible-size {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.pholio-image-description {
|
|
color: #777777;
|
|
}
|
|
|
|
.pholio-image-title {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.pholio-device-lightbox {
|
|
position: absolute;
|
|
overflow: auto;
|
|
z-index: 99;
|
|
}
|
|
|
|
.pholio-device-lightbox img {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.pholio-device-lightbox-loading {
|
|
background: url(/rsrc/image/darkload.gif) no-repeat center;
|
|
}
|