Update 1.2.2

This commit is contained in:
ultimatemember
2015-04-15 16:59:27 +02:00
parent 5e281fbeaf
commit 7b9b59ea8d
32 changed files with 1375 additions and 135 deletions
+33
View File
@@ -1,3 +1,36 @@
.um-popup-overlay {
background: rgba(0,0,0, 0.7);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1564;
}
.um-popup {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
position: fixed;
left: 50%;
top: 10%;
margin-left: -250px;
width: 500px;
background: #fff;
box-shadow: 0 1px 3px #111;
z-index: 1565;
box-sizing: border-box;
overflow: auto;
color: #888;
padding: 10px 0;
}
.um-popup.loading {
background: #fff url(../img/loading.gif) no-repeat center;
min-height: 100px;
}
/*
- Overlay
*/