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
*/
File diff suppressed because it is too large Load Diff
+10 -5
View File
@@ -194,6 +194,13 @@ p.um-notice.err {
background: #C74A4A;
}
p.um-notice.warning {
background: #f9f9d1;
color: #666;
border: 1px solid #efe4a2;
padding: 8px 15px !important;
}
/*
- Errors
*/
@@ -391,11 +398,9 @@ p.um-notice.err {
outline: none !important;
}
.um-form input[type=text]:focus ,
.um-form input[type=text]:focus,
.um-form input[type=password]:focus,
.um-form textarea:focus {
border-color: #ccc;
background-color: #fff !important;
box-shadow: none !important;
outline: none !important;
}
@@ -708,9 +713,9 @@ div.um-photo img {max-height: 300px; max-width: 100%;}
span.um-req {
margin: 0 0 0 8px;
font-size: xx-large;
font-size: x-large;
display: inline-block;
font-weight: bold;
position: relative;
top: 10px;
top: 8px;
}
+1 -1
View File
File diff suppressed because one or more lines are too long