mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
bd4ce3580c
Summary: Some recent CSS change tweaked these out a bit. They were also sort of weird looking after fixing the double-draw thing: - Make them work properly; - make the implementation a bit simpler; - make them clearer visually. Also fix a bug where "border" and "fill" were accidentally reversed. Test Plan: {F34625} (The highlight on the reticle is a little hard to pick out in the screenshot, but very obvious in practice.) Reviewers: chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5228
107 lines
1.8 KiB
CSS
107 lines
1.8 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;
|
|
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;
|
|
margin-right: 319px;
|
|
border-top: 1px solid #333;
|
|
border-right: 1px solid #333;
|
|
}
|
|
|
|
.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;
|
|
}
|