Partial conversion to new UI paradigm and manager.

This commit is contained in:
Michael Jumper
2012-11-11 23:52:34 -08:00
parent efd93fcad5
commit 38dfc3128a
5 changed files with 491 additions and 131 deletions

View File

@@ -42,9 +42,11 @@ img {
}
#eventTarget {
position: absolute;
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
width: 1px;
height: 1px;
opacity: 0;
}
@@ -170,13 +172,22 @@ div#display > * {
margin-right: auto;
}
div#magnifier {
div#magnifier-background {
display: none;
position: absolute;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}
div#magnifier {
position: absolute;
left: 0;
top: 0;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.75);
width: 50%;
@@ -185,6 +196,15 @@ div#magnifier {
}
div#pan-overlay {
display: none;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
/* Viewport Clone */
div#viewportClone {