mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
Mobile work and profile settings
This commit is contained in:
+256
-26
@@ -1,41 +1,271 @@
|
||||
/*
|
||||
* imgAreaSelect default style
|
||||
*/
|
||||
.cropper-container {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
.imgareaselect-border1 {
|
||||
background: url(../img/border-v.gif) repeat-y left top;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
.imgareaselect-border2 {
|
||||
background: url(../img/border-h.gif) repeat-x left top;
|
||||
.cropper-container img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-width: 0 !important;
|
||||
min-height: 0 !important;
|
||||
max-width: none !important;
|
||||
max-height: none !important;
|
||||
}
|
||||
|
||||
.imgareaselect-border3 {
|
||||
background: url(../img/border-v.gif) repeat-y right top;
|
||||
.cropper-modal,
|
||||
.cropper-canvas {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.imgareaselect-border4 {
|
||||
background: url(../img/border-h.gif) repeat-x left bottom;
|
||||
.cropper-canvas {
|
||||
background-color: #fff;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
.imgareaselect-border1, .imgareaselect-border2,
|
||||
.imgareaselect-border3, .imgareaselect-border4 {
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
.cropper-modal {
|
||||
background-color: #000;
|
||||
opacity: .5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
|
||||
.imgareaselect-handle {
|
||||
background-color: #fff;
|
||||
border: solid 1px #000;
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
.cropper-dragger {
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
left: 10%;
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
|
||||
.imgareaselect-outer {
|
||||
background-color: #000;
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
.cropper-viewer {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
outline-width: 1px;
|
||||
outline-style: solid;
|
||||
outline-color: #69f;
|
||||
outline-color: rgba(51, 102, 255, .75);
|
||||
}
|
||||
|
||||
.imgareaselect-selection {
|
||||
}
|
||||
.cropper-dashed {
|
||||
position: absolute;
|
||||
display: block;
|
||||
border: 0 dashed #fff;
|
||||
opacity: .5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
|
||||
.cropper-dashed.dashed-h {
|
||||
top: 33.3%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 33.3%;
|
||||
border-top-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
}
|
||||
|
||||
.cropper-dashed.dashed-v {
|
||||
top: 0;
|
||||
left: 33.3%;
|
||||
width: 33.3%;
|
||||
height: 100%;
|
||||
border-right-width: 1px;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
.cropper-face,
|
||||
.cropper-line,
|
||||
.cropper-point {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: .1;
|
||||
filter: alpha(opacity=10);
|
||||
}
|
||||
|
||||
.cropper-face {
|
||||
top: 0;
|
||||
left: 0;
|
||||
cursor: move;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cropper-line {
|
||||
background-color: #69f;
|
||||
}
|
||||
|
||||
.cropper-line.line-e {
|
||||
top: 0;
|
||||
right: -3px;
|
||||
width: 5px;
|
||||
cursor: e-resize;
|
||||
}
|
||||
|
||||
.cropper-line.line-n {
|
||||
top: -3px;
|
||||
left: 0;
|
||||
height: 5px;
|
||||
cursor: n-resize;
|
||||
}
|
||||
|
||||
.cropper-line.line-w {
|
||||
top: 0;
|
||||
left: -3px;
|
||||
width: 5px;
|
||||
cursor: w-resize;
|
||||
}
|
||||
|
||||
.cropper-line.line-s {
|
||||
bottom: -3px;
|
||||
left: 0;
|
||||
height: 5px;
|
||||
cursor: s-resize;
|
||||
}
|
||||
|
||||
.cropper-point {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
background-color: #69f;
|
||||
opacity: .75;
|
||||
filter: alpha(opacity=75);
|
||||
}
|
||||
|
||||
.cropper-point.point-e {
|
||||
top: 50%;
|
||||
right: -3px;
|
||||
margin-top: -3px;
|
||||
cursor: e-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-n {
|
||||
top: -3px;
|
||||
left: 50%;
|
||||
margin-left: -3px;
|
||||
cursor: n-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-w {
|
||||
top: 50%;
|
||||
left: -3px;
|
||||
margin-top: -3px;
|
||||
cursor: w-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-s {
|
||||
bottom: -3px;
|
||||
left: 50%;
|
||||
margin-left: -3px;
|
||||
cursor: s-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-ne {
|
||||
top: -3px;
|
||||
right: -3px;
|
||||
cursor: ne-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-nw {
|
||||
top: -3px;
|
||||
left: -3px;
|
||||
cursor: nw-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-sw {
|
||||
bottom: -3px;
|
||||
left: -3px;
|
||||
cursor: sw-resize;
|
||||
}
|
||||
|
||||
.cropper-point.point-se {
|
||||
right: -3px;
|
||||
bottom: -3px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
cursor: se-resize;
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
|
||||
.cropper-point.point-se:before {
|
||||
position: absolute;
|
||||
right: -50%;
|
||||
bottom: -50%;
|
||||
display: block;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
content: " ";
|
||||
background-color: #69f;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.cropper-point.point-se {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.cropper-point.point-se {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.cropper-point.point-se {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
opacity: .75;
|
||||
filter: alpha(opacity=75);
|
||||
}
|
||||
}
|
||||
|
||||
/* Helper classes for JavaScript */
|
||||
|
||||
.cropper-hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.cropper-invisible {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
width: auto !important;
|
||||
max-width: none !important;
|
||||
height: auto !important;
|
||||
max-height: none !important;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
.cropper-move {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.cropper-crop {
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
.cropper-disabled .cropper-canvas,
|
||||
.cropper-disabled .cropper-face,
|
||||
.cropper-disabled .cropper-line,
|
||||
.cropper-disabled .cropper-point {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
@@ -7,14 +7,24 @@
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.um .um-single-image-preview > img {
|
||||
max-height: 200px;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.um-single-image-preview,
|
||||
.um-single-file-preview {
|
||||
display: none;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
.um-single-image-preview > img {
|
||||
max-width: 100%;
|
||||
max-height: inherit;
|
||||
}
|
||||
|
||||
.um-single-image-preview a.cancel,
|
||||
@@ -27,8 +37,9 @@
|
||||
border-radius: 999px;
|
||||
background: #ddd;
|
||||
cursor: pointer;
|
||||
transition: 0.2s;
|
||||
text-decoration: none !important;
|
||||
z-index: 8888;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
.um-single-image-preview a.cancel i,
|
||||
@@ -39,44 +50,40 @@
|
||||
top: 4px;
|
||||
}
|
||||
|
||||
.um-single-image-preview img {
|
||||
max-width: 100%;
|
||||
margin: 0 auto !important;
|
||||
padding: 0 !important;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
/*
|
||||
- file preview
|
||||
- file info
|
||||
*/
|
||||
|
||||
.um-single-fileinfo {
|
||||
padding: 36px 0 30px 0;
|
||||
padding: 26px 0 20px 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.um-single-fileinfo span.icon {
|
||||
font-size: 38px;
|
||||
font-size: 42px;
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
border-radius: 5px;
|
||||
border-radius: 3px;
|
||||
background-color: #666;
|
||||
color: #fff !important;
|
||||
}
|
||||
.um-single-fileinfo span.icon i {line-height: 1em !important;vertical-align: middle}
|
||||
.um-single-fileinfo span.icon i{vertical-align: middle}
|
||||
|
||||
.um-single-fileinfo span.filename {
|
||||
display: block;
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
color: #888;
|
||||
padding: 15px 0 0 0;
|
||||
}
|
||||
|
||||
.um-single-fileinfo a {text-decoration: none !important; opacity: 0.85 }
|
||||
.um-single-fileinfo a:hover { opacity: 1 }
|
||||
.um-single-fileinfo a {
|
||||
text-decoration: none !important;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.um-single-fileinfo a:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
/*
|
||||
- upload progress
|
||||
@@ -122,7 +129,7 @@
|
||||
|
||||
.ajax-upload-dragdrop span.str {
|
||||
display: block;
|
||||
margin: 0 0 12px 0;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
|
||||
.ajax-upload-dragdrop span.icon {
|
||||
|
||||
@@ -111,8 +111,14 @@
|
||||
|
||||
.um-gutter-sizer { width: 5% }
|
||||
|
||||
/*
|
||||
- Member cover
|
||||
*/
|
||||
|
||||
.um-member-cover {
|
||||
background-color: #eee;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.um-member-cover-e {
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
background: #3ba1da;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
font-size: 15px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.um-modal-footer {
|
||||
@@ -93,6 +93,7 @@
|
||||
display: inline-block;
|
||||
border-radius: 3px;
|
||||
padding: 0 20px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #3ba1da;
|
||||
vertical-align: middle;
|
||||
|
||||
+112
-16
@@ -4,6 +4,19 @@
|
||||
|
||||
.um-profile {
|
||||
box-sizing: border-box;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.um-profile .um-cover-overlay {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.um-profile.um-editing .um-cover.has-cover .um-cover-overlay {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.um-profile.um-viewing .um-profile-photo-overlay {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.um-profile img {display: block;overflow:hidden;border-radius:0!important;margin: 0!important}
|
||||
@@ -33,21 +46,11 @@
|
||||
- Profile cover
|
||||
*/
|
||||
|
||||
.um-cover{
|
||||
.um-cover {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.um-cover-add span {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.um-cover-e {
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
.um-cover-e.empty {border: 2px dashed #ddd}
|
||||
.um-cover-e img {width: 100% !important}
|
||||
|
||||
.um-cover-add {
|
||||
color: #aaa;
|
||||
@@ -55,8 +58,61 @@
|
||||
width: 100%;
|
||||
display: table;
|
||||
}
|
||||
|
||||
.um-cover-add span {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.um-cover-add:hover { color: #3ba1da }
|
||||
|
||||
.um-cover-e {
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.um-cover-e img {width: 100% !important}
|
||||
|
||||
.um-cover-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: rgba(0,0,0,.5);
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 40px;
|
||||
color: #fff;
|
||||
text-shadow: 0 2px #333;
|
||||
cursor: pointer !important;
|
||||
line-height: 21px;
|
||||
font-size: 16px;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.um-cover-overlay:hover {
|
||||
background: rgba(0,0,0,.55);
|
||||
}
|
||||
|
||||
.um-cover-overlay span.um-cover-overlay-s {
|
||||
display: table;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.um-cover-overlay ins {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
height: 100%;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.um-cover-overlay i {
|
||||
font-size: 46px;
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
/*
|
||||
- Profile header
|
||||
*/
|
||||
@@ -70,7 +126,7 @@
|
||||
.um-profile-edit {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 15px;
|
||||
right: 0;
|
||||
vertical-align: middle;
|
||||
z-index: 99;
|
||||
font-size: 30px;
|
||||
@@ -124,7 +180,6 @@
|
||||
|
||||
.um-profile-photo {
|
||||
float: left;
|
||||
width: 250px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
@@ -136,11 +191,51 @@
|
||||
left: 30px;
|
||||
}
|
||||
|
||||
.um-profile-photo img {
|
||||
.um-profile-photo a.um-profile-photo-img img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.um-profile-photo-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0,0,0,.5);
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 40px;
|
||||
color: #fff;
|
||||
line-height: 21px;
|
||||
font-size: 16px;
|
||||
text-shadow: 0 1px #333;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.um-profile-photo-overlay:hover {
|
||||
background: rgba(0,0,0,.55);
|
||||
}
|
||||
|
||||
.um-profile-photo-overlay span.um-profile-photo-overlay-s {
|
||||
display: table;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.um-profile-photo-overlay ins {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
height: 100%;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.um-profile-photo-overlay i {
|
||||
font-size: 46px;
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
/*
|
||||
- Profile meta
|
||||
*/
|
||||
@@ -164,12 +259,13 @@
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.um-meta span:first-child {margin: 0 5px 0 0}
|
||||
.um-meta span {
|
||||
margin: 0 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.um-meta-text {
|
||||
margin: 12px 0 0 0;
|
||||
margin: 6px 0 0 0;
|
||||
color: #666;
|
||||
}
|
||||
+296
-39
@@ -28,22 +28,31 @@ div.uimob960 .uimob960-hide
|
||||
|
||||
/********************************************/
|
||||
|
||||
.uimob340 .um-half {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin: 0 0 10px 0;
|
||||
div.uimob340 .um-cover-overlay span.um-cover-overlay-t,
|
||||
div.uimob340 .um-profile-photo-overlay span.um-profile-photo-overlay-t
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.uimob340 .um-button.um-btn-auto-width {
|
||||
min-width: auto;
|
||||
max-width: auto;
|
||||
width: 100%;
|
||||
div.uimob340 .um-cover-overlay,
|
||||
div.uimob340 .um-profile-photo-overlay
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.uimob340 .um-cover-overlay i,
|
||||
div.uimob340 .um-profile-photo-overlay i
|
||||
{
|
||||
margin-bottom: 0;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.um-modal.uimob340 {
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
left: 0 !important;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.um-modal.uimob340,
|
||||
@@ -52,16 +61,181 @@ div.uimob960 .uimob960-hide
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.um-modal.uimob340 .um-modal-header {text-align: center}
|
||||
.um-modal.uimob340 .um-modal-footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.um-modal.uimob340 .um-modal-right {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.um-modal.uimob340 .um-modal-footer a.um-modal-btn {
|
||||
width: 48%;
|
||||
margin: 0 1%;
|
||||
float: left;
|
||||
display: block;
|
||||
line-height: 44px !important;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
.um-modal.uimob340 .ajax-upload-dragdrop span.icon {
|
||||
font-size: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
div.uimob340 .um-profile-body {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
div.uimob340 .um-profile-photo {
|
||||
width: 100% !important;
|
||||
text-align: center !important;
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
div.uimob340 .um-profile-photo a.um-profile-photo-img {
|
||||
width: 100px !important;
|
||||
height: 100px !important;
|
||||
margin: 0 auto !important;
|
||||
float: none !important;
|
||||
display: inline-block !important;
|
||||
position: relative !important;
|
||||
top: auto !important;
|
||||
left: auto !important;
|
||||
}
|
||||
|
||||
div.uimob340 .um-header .um-profile-meta {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
text-align: center !important;
|
||||
padding-top: 90px !important;
|
||||
}
|
||||
|
||||
div.uimob340 .um-header .um-name {
|
||||
float: none !important;
|
||||
margin-right: 0 !important;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
div.uimob340 .um-header .um-meta-text {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
div.uimob340 .um-header .um-meta {padding: 0 20px}
|
||||
div.uimob340 .um-header .um-meta span:first-child {display: block}
|
||||
div.uimob340 .um-header .um-meta span {display: none}
|
||||
|
||||
div.uimob340 .um-col-121,
|
||||
div.uimob340 .um-col-122,
|
||||
div.uimob340 .um-col-131,
|
||||
div.uimob340 .um-col-132,
|
||||
div.uimob340 .um-col-133 {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.uimob340 .um-field-half {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.uimob340 .um-search {
|
||||
padding: 20px 0 !important;
|
||||
width: 100% !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
div.uimob340 .um-search .um-search-filter {
|
||||
width: 100% !important;
|
||||
float: none !important;
|
||||
padding: 0 0 15px 0 !important;
|
||||
}
|
||||
|
||||
div.uimob340 .um-search .um-search-submit .um-button {
|
||||
display: block !important;
|
||||
min-width: 100% !important;
|
||||
margin: 0 0 15px 0 !important;
|
||||
}
|
||||
|
||||
div.uimob340 .um-member {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.uimob340 .um-gutter-sizer { width: 0px }
|
||||
|
||||
div.uimob340 .um-account-main {
|
||||
float: none;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
div.uimob340 .um-account-tab {
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
div.uimob340 .um-account-main div.um-field {padding-top: 15px}
|
||||
|
||||
div.uimob340 .um-account-meta {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.uimob340 .um-half {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.uimob340 .um-button.um-btn-auto-width {
|
||||
min-width: auto;
|
||||
max-width: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/**
|
||||
for 500px and below
|
||||
**/
|
||||
|
||||
/********************************************/
|
||||
|
||||
div.uimob500 .um-cover-overlay span.um-cover-overlay-t,
|
||||
div.uimob500 .um-profile-photo-overlay span.um-profile-photo-overlay-t
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
div.uimob500 .um-cover-overlay,
|
||||
div.uimob500 .um-profile-photo-overlay
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.uimob500 .um-cover-overlay i,
|
||||
div.uimob500 .um-profile-photo-overlay i
|
||||
{
|
||||
margin-bottom: 0;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.um-modal.uimob500 {
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
left: 0 !important;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.um-modal.uimob500,
|
||||
@@ -70,15 +244,41 @@ div.uimob960 .uimob960-hide
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.um-modal.uimob500 .um-modal-header {text-align: center}
|
||||
.um-modal.uimob500 .um-modal-footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.um-modal.uimob500 .um-modal-right {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.um-modal.uimob500 .um-modal-footer a.um-modal-btn {
|
||||
width: 48%;
|
||||
margin: 0 1%;
|
||||
float: left;
|
||||
display: block;
|
||||
line-height: 44px !important;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
.um-modal.uimob500 .ajax-upload-dragdrop span.icon {
|
||||
font-size: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
div.uimob500 .um-profile-body {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
div.uimob500 .um-profile-edit {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
div.uimob500 .um-profile-photo {
|
||||
width: 100% !important;
|
||||
text-align: center !important;
|
||||
@@ -102,7 +302,7 @@ div.uimob500 .um-header .um-profile-meta {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
text-align: center !important;
|
||||
padding-top: 70px !important;
|
||||
padding-top: 80px !important;
|
||||
}
|
||||
|
||||
div.uimob500 .um-header .um-name {
|
||||
@@ -112,13 +312,12 @@ div.uimob500 .um-header .um-name {
|
||||
}
|
||||
|
||||
div.uimob500 .um-header .um-meta-text {
|
||||
margin: 0;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
div.uimob500 .um-header .um-meta {padding: 0 20px}
|
||||
div.uimob500 .um-header .um-meta span {display: block}
|
||||
div.uimob500 .um-header .um-meta span.b {display: none}
|
||||
div.uimob500 .um-header .um-meta span:first-child {display: block}
|
||||
div.uimob500 .um-header .um-meta span {display: none}
|
||||
|
||||
div.uimob500 .um-col-121,
|
||||
div.uimob500 .um-col-122,
|
||||
@@ -157,7 +356,7 @@ div.uimob500 .um-member {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.uimob500 .um-gutter-sizer { width: 0px }
|
||||
div.uimob500 .um-gutter-sizer { width: 0px }
|
||||
|
||||
div.uimob500 .um-account-main {
|
||||
float: none;
|
||||
@@ -246,6 +445,32 @@ div.uimob800 .um-account-meta img {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
div.uimob800 .um-profile-photo {
|
||||
width: 200px !important;
|
||||
}
|
||||
|
||||
div.uimob800 .um-profile-photo a.um-profile-photo-img {
|
||||
width: 140px !important;
|
||||
height: 140px !important;
|
||||
top: -70px !important;
|
||||
}
|
||||
|
||||
div.uimob800 .um-header .um-profile-meta {
|
||||
padding-left: 200px;
|
||||
}
|
||||
|
||||
div.uimob800 .um-cover-overlay span.um-cover-overlay-t,
|
||||
div.uimob800 .um-profile-photo-overlay span.um-profile-photo-overlay-t
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
div.uimob800 .um-cover-overlay,
|
||||
div.uimob800 .um-profile-photo-overlay
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/********************************************/
|
||||
|
||||
/**
|
||||
@@ -296,30 +521,62 @@ div.uimob960 .um-gutter-sizer { width: 4% }
|
||||
|
||||
/************************************************/
|
||||
|
||||
@media screen and ( max-height: 900px ){
|
||||
.um-single-image-preview img {max-height: 500px}
|
||||
@media screen and (max-height: 400px) {
|
||||
|
||||
.ajax-upload-dragdrop span.icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.um-modal {
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
left: 0 !important;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.um-modal,
|
||||
.um-modal .um-modal-body,
|
||||
.um-modal .um-modal-header {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.um-modal .um-modal-header {text-align: center; font-size: 14px}
|
||||
.um-modal .um-modal-footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.um-modal .um-modal-right {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.um-modal .um-modal-footer a.um-modal-btn {
|
||||
width: 48%;
|
||||
margin: 0 1%;
|
||||
float: left;
|
||||
display: block;
|
||||
line-height: 44px !important;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and ( max-height: 800px ){
|
||||
.um-single-image-preview img {max-height: 500px}
|
||||
}
|
||||
@media screen and (max-height: 300px) {
|
||||
|
||||
@media screen and ( max-height: 700px ){
|
||||
.um-single-image-preview img {max-height: 350px}
|
||||
}
|
||||
.um-modal-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ajax-upload-dragdrop span.icon,
|
||||
.ajax-upload-dragdrop span.str {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and ( max-height: 600px ){
|
||||
.um-single-image-preview img {max-height: 300px}
|
||||
}
|
||||
|
||||
@media screen and ( max-height: 500px ){
|
||||
.um-single-image-preview img {max-height: 250px}
|
||||
}
|
||||
|
||||
@media screen and ( max-height: 400px ){
|
||||
.um-single-image-preview img {max-height: 200px}
|
||||
}
|
||||
|
||||
@media screen and ( max-height: 300px ){
|
||||
.um-single-image-preview img {max-height: 150px}
|
||||
}
|
||||
@@ -25,7 +25,8 @@
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.um a:focus {
|
||||
.um a:focus,
|
||||
.um-modal a:focus {
|
||||
outline: 0 !important;
|
||||
}
|
||||
|
||||
@@ -209,8 +210,17 @@ p.um-notice.success {
|
||||
}
|
||||
|
||||
.um-tip i {
|
||||
font-size: 18px;
|
||||
font-size: 20px;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.um-tip-text {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
line-height: 15px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -264,7 +274,6 @@ p.um-notice.success {
|
||||
|
||||
.um-field-icon {
|
||||
position: absolute;
|
||||
z-index: 888;
|
||||
cursor: default;
|
||||
text-align: center !important;
|
||||
top: 2px;
|
||||
@@ -485,4 +494,60 @@ a.um-link-alt {
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
a.um-link-alt:hover {text-decoration: underline !important;}
|
||||
a.um-link-alt:hover {text-decoration: underline !important;}
|
||||
|
||||
/*
|
||||
- Dropdown menu
|
||||
*/
|
||||
|
||||
.um-dropdown {
|
||||
position: absolute;
|
||||
height: auto;
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
z-index: 555;
|
||||
display: none;
|
||||
border: 1px solid #e5e5e5;
|
||||
box-sizing: border-box;
|
||||
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 0 1px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.um-dropdown ul,
|
||||
.um-dropdown li {
|
||||
list-style-type: none !important;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.um-dropdown li a {
|
||||
display: block;
|
||||
padding: 8px 12px;
|
||||
color: #666;
|
||||
z-index: 4;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.um-dropdown li:last-child a {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.um-dropdown li a:hover {
|
||||
color: #3ba1da;
|
||||
}
|
||||
|
||||
.um-dropdown-b {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.um-dropdown-arr {
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
z-index: 2;
|
||||
}
|
||||
Reference in New Issue
Block a user