Files
ultimatemember/assets/css/um-styles.css
T

1101 lines
24 KiB
CSS
Raw Normal View History

2014-12-15 22:38:07 +02:00
/*
- Layout
*/
.um {
width: 100%;
text-align: left;
box-sizing: border-box;
color: #666;
font-size: 15px;
margin-bottom: 30px !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
2014-12-19 00:42:23 +02:00
opacity: 0;
2014-12-15 22:38:07 +02:00
}
.um-s1,
.um-s2 {
display: none;
}
.um *,
.um *:before,
.um *:after {
box-sizing: content-box;
}
2015-01-11 19:07:55 +02:00
.um-header a,
.um-cover a,
.um-member-photo a,
.um-member-name a,
.um-member-more a,
.um-member-less a,
.um-members a,
.um-account-side li a,
.um-members-pagi span,
.um-members-pagi a,
.um-field-value a
{
border-bottom: 0 !important;
}
2014-12-29 15:51:55 +02:00
.um a:focus,
.um-modal a:focus {
2014-12-20 18:02:41 +02:00
outline: 0 !important;
}
2015-01-14 00:11:38 +02:00
.um a .image-overlay,
.um a:hover .image-overlay,
.um a:hover .image-overlay * {
display: none !important;
width: 0 !important;
height: 0 !important;
position: static !important;
}
2014-12-15 22:38:07 +02:00
/* only in admin mode */
.um.um-in-admin {
padding-top: 0;
}
2015-01-09 03:08:31 +02:00
.um.um-in-admin .um-tip {display: none !important}
2014-12-15 22:38:07 +02:00
2019-09-23 13:34:25 +03:00
.um:not(.um-directory) input,
.um:not(.um-directory) select,
.um:not(.um-directory) textarea{
2014-12-15 22:38:07 +02:00
font-size: 15px;
}
.um * {
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}
.um-left {float: left}
.um-right {float: right}
.um-clear {clear: both}
.um-center {text-align: center}
.um-center .um-button {
display: inline-block !important;
width: auto !important;
min-width: 250px !important;
}
.um-half { width: 48%}
.um-field-half {width: 48%;float: left}
.um-field-half.right {float: right}
.um-field-tri {
width: 30%;
float: left;
margin-right: 3%;
}
.um img {box-shadow: none !important}
.um-col {padding-bottom: 20px}
2018-08-29 16:43:58 +03:00
.um-col-alt {margin: 15px 0 5px 0}
2015-02-15 20:31:41 +02:00
.um-col-alt-s {padding-top: 10px}
2014-12-15 22:38:07 +02:00
.um-col-alt-b {padding-top: 20px}
2015-01-25 19:59:18 +02:00
.um-col-121 {float: left;width: 48%}
2014-12-15 22:38:07 +02:00
2015-01-25 19:59:18 +02:00
.um-col-122 {float: right;width: 48%}
2014-12-15 22:38:07 +02:00
2015-01-25 19:59:18 +02:00
.um-col-131 {float: left;width: 30%}
2014-12-15 22:38:07 +02:00
2015-01-25 19:59:18 +02:00
.um-col-132 {float: left;width: 30%;margin: 0 5%}
2014-12-15 22:38:07 +02:00
2015-01-25 19:59:18 +02:00
.um-col-133 {float: left;width: 30%}
2014-12-15 22:38:07 +02:00
/*
- Font Icons
*/
.um-raty i {font-size: 26px}
2014-12-21 17:47:37 +02:00
2014-12-15 22:38:07 +02:00
.um-field-half .um-raty i {font-size: 21px}
2014-12-21 17:47:37 +02:00
2014-12-15 22:38:07 +02:00
.um-field-tri .um-raty i {font-size: 21px}
.um-button i {
2015-02-15 20:31:41 +02:00
font-size: 22px;
width: 22px;
height: 12px !important;
display: inline-block;
line-height: 12px !important;
vertical-align: middle !important;
position: relative;
top: -6px;
margin-right: 8px;
2014-12-15 22:38:07 +02:00
}
/*
- Row general css
*/
.um-row-heading {
2014-12-16 21:57:13 +02:00
padding: 5px 0;
2014-12-15 22:38:07 +02:00
font-size: 16px;
}
.um-row-heading i {
font-size: 24px;
height: 24px;
2014-12-16 21:57:13 +02:00
line-height: 24px;
margin: 0 12px 0 0;
2015-01-23 02:40:37 +02:00
display: inline-block;
width: 30px;
text-align: center;
2014-12-16 21:57:13 +02:00
}
.um-row-heading i:before {
vertical-align: middle !important;
2014-12-15 22:38:07 +02:00
}
2014-12-22 01:45:24 +02:00
/*
- Notices
*/
p.um-notice {
width: auto;
color: #fff;
box-sizing: border-box;
font-size: 15px;
padding: 12px !important;
margin: 12px 0 0 0 !important;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
2015-02-15 20:31:41 +02:00
position: relative;
}
2019-10-17 21:44:11 +03:00
p.um-notice a {
color: #fff;
text-decoration: underline;
}
2015-02-15 20:31:41 +02:00
p.um-notice i {
2015-02-21 01:39:02 +02:00
position: absolute;
right: 14px;
font-size: 36px;
cursor: pointer;
top: 7px;
display: block;
height: 30px;
line-height: 30px;
2014-12-22 01:45:24 +02:00
}
p.um-notice.success {
background: #7ACF58;
}
2014-12-30 20:18:29 +02:00
p.um-notice.err {
background: #C74A4A;
}
2015-04-15 16:59:27 +02:00
p.um-notice.warning {
background: #f9f9d1;
color: #666;
border: 1px solid #efe4a2;
padding: 8px 15px !important;
}
2019-10-17 21:44:11 +03:00
p.um-notice.warning a {
color: #666;
text-decoration: underline;
}
2014-12-15 22:38:07 +02:00
/*
- Errors
*/
.um-field-error {
width: auto;
max-width: 100%;
background: #C74A4A;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
2014-12-15 22:38:07 +02:00
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 14px;
line-height: 20px !important;
margin: 12px 0 0 0;
}
.um-field-error a{color: #fff !important;text-decoration: underline !important}
.um-field-arrow {
top: -17px;
left: 10px;
position: absolute;
2019-10-16 18:30:39 +03:00
z-index: 1;
2014-12-15 22:38:07 +02:00
color: #C74A4A;
font-size: 28px;
line-height: 1em !important;
}
.um-error-block {
width: auto;
max-width: 100%;
background: #C74A4A;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
2014-12-15 22:38:07 +02:00
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 14px;
line-height: 1em !important;
margin: 12px 0 0 0;
}
2020-01-08 17:51:23 +08:00
/*
- Notices
*/
.um-field-notice {
width: auto;
max-width: 100%;
background: #497BC7;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 14px;
line-height: 20px !important;
margin: 5px 0 0 0;
}
.um-field-notice a{color: #fff !important;text-decoration: underline !important}
.um-field-notice .um-field-arrow {
top: -17px;
left: 10px;
position: absolute;
z-index: 1;
color: #497BC7 !important;
font-size: 28px;
line-height: 1em !important;
}
.um-notice-block {
width: auto;
max-width: 100%;
background: #497BC7;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 14px;
line-height: 1em !important;
margin: 12px 0 0 0;
}
2014-12-15 22:38:07 +02:00
/*
- Help tooltips
*/
.um-tip {
margin: 0 0 0 8px;
cursor: pointer;
display: inline-block;
2015-02-12 02:16:33 +02:00
position: relative;
top: 3px;
2014-12-15 22:38:07 +02:00
}
.um-tip i {
2015-01-15 17:15:12 +02:00
font-size: 22px;
height: 22px;
line-height: 22px;
display: block;
2014-12-29 15:51:55 +02:00
position: relative;
}
.um-tip-text {
display: block;
font-size: 13px;
line-height: 15px;
color: #999;
2014-12-15 22:38:07 +02:00
}
/*
- Forms & Fields
*/
.um-form button::-moz-focus-inner,
.um-form input::-moz-focus-inner {
border: 0 !important;
padding: 0 !important;
}
.um-field {
position: relative;
padding: 15px 0 0 0;
}
2015-02-15 20:31:41 +02:00
.um-field-b, .um-field-c {
2015-02-13 02:05:04 +02:00
padding-top: 0 !important;
}
2018-08-03 16:47:05 +03:00
/*.um-field.um-is-conditional {
2014-12-15 22:38:07 +02:00
display: none;
2018-08-03 16:47:05 +03:00
}*/
2014-12-15 22:38:07 +02:00
2015-01-10 16:45:35 +02:00
.um-field-label {
display: block;
margin: 0 0 8px 0;
}
2015-01-11 19:07:55 +02:00
2015-01-18 15:55:43 +02:00
.um-field-label .um-field-label-icon {
float: left;
margin: 0 8px 0 0;
height: 22px;
2015-02-06 02:38:41 +02:00
line-height: 18px;
2015-01-18 15:55:43 +02:00
display: inline-block;
2015-02-06 02:38:41 +02:00
width: 24px;
text-align: center;
2015-01-18 15:55:43 +02:00
}
2015-03-01 00:44:04 +02:00
.um-field-label .um-field-label-icon i { font-size: 22px; position: relative; top: 1px; }
2015-01-11 19:07:55 +02:00
.um-field-label label {
2015-01-14 00:11:38 +02:00
font-size: 15px !important;
2015-01-11 19:07:55 +02:00
line-height: 22px !important;
font-weight: bold;
font-weight: 600;
}
2014-12-15 22:38:07 +02:00
.um-field-area {
position: relative;
2015-11-05 19:51:31 +08:00
word-wrap: break-word;
2014-12-15 22:38:07 +02:00
}
2015-02-04 20:31:39 +02:00
.um-field-value p {
margin: 0 0 6px 0 !important;
padding: 0;
}
2014-12-15 22:38:07 +02:00
.um-field-block {
2014-12-22 01:45:24 +02:00
color: #777;
font-size: 17px;
2014-12-15 22:38:07 +02:00
}
.um-field-spacing {
width: 100%;
}
.um-field-divider {
width: 100%;
2015-01-28 17:16:04 +02:00
margin: 0 0 12px 0;
height: 24px;
position: relative;
}
.um-field-divider-text {
position: absolute;
width: 100%;
text-align: center;
bottom: -24px;
left: 0;
font-size: 16px;
padding: 10px 0;
}
.um-field-divider-text span {
background: #fff;
color: #555;
display: inline-block;
padding: 0 15px;
2014-12-15 22:38:07 +02:00
}
.um-field-icon {
position: absolute;
cursor: default;
text-align: center !important;
2015-01-15 17:15:12 +02:00
top: 2px;
2014-12-30 20:18:29 +02:00
left: 0;
width: 44px;
font-size: 22px;
2015-01-11 19:07:55 +02:00
line-height: 1.7em;
2014-12-15 22:38:07 +02:00
}
.um-form input[type=text],
2019-11-20 17:07:38 +02:00
.um-form input[type=search],
2016-01-28 10:16:14 -08:00
.um-form input[type=tel],
2015-12-30 22:08:23 +02:00
.um-form input[type=number],
2014-12-15 22:38:07 +02:00
.um-form input[type=password] {
2015-01-14 00:11:38 +02:00
padding: 0 12px !important;
2015-02-04 20:31:39 +02:00
width: 100%;
2015-01-14 00:11:38 +02:00
display: block !important;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
2014-12-15 22:38:07 +02:00
border-radius: 2px;
outline: none !important;
cursor: text !important;
font-size: 15px !important;
height: 40px !important;
2015-01-14 00:11:38 +02:00
box-sizing: border-box !important;
2014-12-15 22:38:07 +02:00
box-shadow: none !important;
2015-01-14 00:11:38 +02:00
margin: 0 !important;
2015-01-11 19:07:55 +02:00
position: static;
2015-01-14 00:11:38 +02:00
outline: none !important;
2014-12-15 22:38:07 +02:00
}
2015-12-30 22:08:23 +02:00
.um-form input[type=number] {
width: auto;
padding: 0 0 0 5px !important;
height: 30px !important;
}
2015-04-15 16:59:27 +02:00
.um-form input[type=text]:focus,
2019-11-20 17:07:38 +02:00
.um-form input[type=search]:focus,
2016-01-28 10:16:14 -08:00
.um-form input[type=tel]:focus,
2015-12-30 22:08:23 +02:00
.um-form input[type=number]:focus,
2014-12-15 22:38:07 +02:00
.um-form input[type=password]:focus,
.um-form textarea:focus {
box-shadow: none !important;
2015-01-14 00:11:38 +02:00
outline: none !important;
2014-12-15 22:38:07 +02:00
}
.um-form input[type=text].um-iconed,
2016-01-28 10:16:14 -08:00
.um-form input[type=tel].um-iconed,
2015-01-15 17:15:12 +02:00
.um-form input[type=password].um-iconed { padding-left: 44px !important }
2014-12-15 22:38:07 +02:00
.um-form input[type=text].um-error,
2016-01-28 10:16:14 -08:00
.um-form input[type=tel].um-error,
2014-12-15 22:38:07 +02:00
.um-form input[type=password].um-error { border-color: #C74A4A !important }
.um-form textarea {
width: 100%;
2015-01-14 00:11:38 +02:00
padding: 8px 12px !important;
2014-12-15 22:38:07 +02:00
display: block;
font-size: 15px !important;
line-height: 22px !important;
background: #fff;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
2014-12-15 22:38:07 +02:00
border-radius: 2px;
box-sizing: border-box;
2015-01-14 00:11:38 +02:00
min-height: 80px !important;
2015-01-11 19:07:55 +02:00
box-shadow: none;
2015-01-14 00:11:38 +02:00
outline: none !important;
2014-12-15 22:38:07 +02:00
}
.um-form .um-meta-text textarea {
max-width: 100%;
}
.um-form .wp-editor-container {
border: 1px solid #ddd;
}
.um-form .wp-editor-container textarea {
background: #ddd !important;
color: #222 !important;
border-radius: 0;
}
2014-12-15 22:38:07 +02:00
/*
- Radio & Checkboxes
*/
2015-02-15 20:31:41 +02:00
.um-field-c .um-field-checkbox {
2018-08-29 16:43:58 +03:00
margin-bottom: 14px;
margin-top: 0 !important;
2015-02-15 20:31:41 +02:00
position: relative;
}
.um-field-checkbox:not(.um-field),
.um-field-radio:not(.um-field) {
2014-12-15 22:38:07 +02:00
display: block;
margin: 8px 0;
2014-12-15 22:38:07 +02:00
position: relative;
}
.um-profile.um-editing .um-field-checkbox,
.um-profile.um-editing .um-field-radio{
2015-02-23 01:43:11 +02:00
cursor: pointer !important;
2014-12-15 22:38:07 +02:00
}
2015-01-14 00:11:38 +02:00
.um-field-checkbox:hover i, .um-field-radio:hover i {color: #666}
2014-12-15 22:38:07 +02:00
.um-field-checkbox input,
2015-02-19 00:49:08 +02:00
.um-field-radio input{
opacity: 0 !important;
2015-02-23 01:43:11 +02:00
display: inline !important;
width: 0 !important;
float: left;
2015-02-19 00:49:08 +02:00
}
2014-12-15 22:38:07 +02:00
.um-field-checkbox-state,
.um-field-radio-state {
position: absolute;
top: 0;
left: 1px;
width: 24px;
height: 24px;
}
.um-field-checkbox-state i,
.um-field-radio-state i {
font-size: 24px;
line-height: 24px;
height: 24px;
2015-01-15 17:15:12 +02:00
color: #aaa;
2014-12-15 22:38:07 +02:00
transition: all .2s linear;
}
.um-field-checkbox-option,
.um-field-radio-option {
2015-02-23 01:43:11 +02:00
margin: 0px 0px 0px 36px;
2014-12-15 22:38:07 +02:00
line-height: 24px;
2015-01-14 00:11:38 +02:00
color: #888 !important;
2015-02-23 01:43:11 +02:00
display: block;
2014-12-15 22:38:07 +02:00
}
/*
- Group of Fields
*/
.um-field-group {
2014-12-16 21:57:13 +02:00
margin-top: 20px;
2014-12-15 22:38:07 +02:00
}
.um-field-group-head {
cursor: pointer;
color: #fff;
font-size: 16px;
line-height: 22px;
padding: 10px 20px;
transition: 0.25s;
box-sizing: border-box;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
2014-12-15 22:38:07 +02:00
border-radius: 4px !important;
border-top: 1px solid rgba(0,0,0,0.0) !important;
border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}
.um-field-group-head i {
2014-12-16 21:57:13 +02:00
font-size: 20px;
2014-12-15 22:38:07 +02:00
margin: 0 8px 0 0;
2014-12-16 21:57:13 +02:00
}
.um-field-group-head i:before {
vertical-align: middle !important;
2014-12-15 22:38:07 +02:00
}
.um-field-group-body {
display: none;
margin: 15px 0 0 0;
padding: 15px 20px 5px 20px;
background: #f9f9f9;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
2014-12-15 22:38:07 +02:00
border-radius: 3px;
position: relative;
box-sizing: border-box;
width: 100%;
}
.um-field-group-body div.um-field {
padding: 0 0 15px 0;
}
.um-field-group-cancel {
font-size: 18px;
position: absolute;
z-index: 800;
right: 8px;
top: 8px;
color: #ccc !important;
text-decoration: none !important;
}
.um-field-group-cancel:hover {color: #777 !important}
/*
- Buttons
*/
.um div.disabled,
2015-11-05 19:51:31 +08:00
.um-disabled,
2014-12-15 22:38:07 +02:00
.um input[type=submit]:disabled,
2015-12-30 22:08:23 +02:00
.um input[type=text]:disabled,
.um input[type=number]:disabled {
2014-12-15 22:38:07 +02:00
opacity: 0.6 !important;
2015-11-05 19:51:31 +08:00
cursor: no-drop !important;
2014-12-15 22:38:07 +02:00
}
input[type=submit].um-button,
input[type=submit].um-button:focus {
vertical-align: middle !important;
height: auto !important;
font-size: 15px;
cursor: pointer !important;
2015-01-11 19:07:55 +02:00
width: 100%;
box-shadow: none;
text-shadow: none;
2015-01-14 00:11:38 +02:00
font-family: inherit;
outline: none !important;
margin: 0;
opacity: 1;
2015-11-05 19:51:31 +08:00
-webkit-appearance: none;
2015-01-14 00:11:38 +02:00
}
input[type=submit].um-button:hover {
opacity: 1;
2014-12-15 22:38:07 +02:00
}
.um-button {
font-size: 15px;
2014-12-15 22:38:07 +02:00
border: none !important;
display: block;
width: 100%;
line-height: 1em !important;
padding: 16px 20px !important;
text-decoration: none !important;
text-align: center;
text-transform: none !important;
font-weight: normal !important;
overflow: hidden;
position: relative;
transition: 0.25s;
box-sizing: border-box;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
2014-12-15 22:38:07 +02:00
border-radius: 4px !important;
2018-06-19 13:55:07 +03:00
-webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
2015-01-14 00:11:38 +02:00
opacity: 1;
2014-12-15 22:38:07 +02:00
}
2018-06-19 13:55:07 +03:00
a.um-button {
font-size: 15px;
border: none !important;
display: block;
width: 100%;
line-height: 1em !important;
padding: 16px 20px !important;
text-decoration: none !important;
text-align: center;
text-transform: none !important;
font-weight: normal !important;
overflow: hidden;
position: relative;
transition: 0.25s;
box-sizing: border-box;
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
-webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
opacity: 1;
}
a.um-button:hover {
-webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}
.um-button.um-btn-auto-width {
width: auto;
display: inline-block;
padding: 14px 20px !important;
min-width: 200px;
max-width: 450px;
}
2014-12-15 22:38:07 +02:00
a.um-link-alt {
line-height: 22px;
color: #888 !important;
display: block !important;
text-decoration: none !important;
font-weight: normal;
text-align: center;
2015-01-22 22:27:53 +02:00
border-bottom: none !important;
2014-12-15 22:38:07 +02:00
}
2014-12-29 15:51:55 +02:00
a.um-link-alt:hover {text-decoration: underline !important;}
/*
- Dropdown menu
*/
.um-dropdown {
position: absolute;
height: auto;
background: #fff;
2015-01-14 00:11:38 +02:00
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
2014-12-29 15:51:55 +02:00
border-radius: 5px;
2021-03-03 19:58:51 +02:00
z-index: 55;
2014-12-29 15:51:55 +02:00
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;
}
2019-09-11 16:07:51 +03:00
.um-dropdown ul {
background: #fff;
position: relative;
z-index: 16;
}
.um-dropdown li a {
2014-12-29 15:51:55 +02:00
display: block;
padding: 8px 12px;
color: #666;
font-size: 14px;
line-height: 18px;
}
.um-dropdown li:last-child a {
border-top: 1px solid #e5e5e5;
padding: 12px;
}
2019-09-11 16:07:51 +03:00
.um-dropdown li a:hover {
2015-04-07 20:10:23 +02:00
2014-12-29 15:51:55 +02:00
}
.um-dropdown-b {
position: relative;
}
.um-dropdown-arr {
position: absolute;
font-size: 24px;
width: 24px;
height: 24px;
2015-01-05 01:33:17 +02:00
overflow: hidden;
2015-01-14 00:11:38 +02:00
z-index: 15;
2015-01-05 01:33:17 +02:00
color: #eee;
2014-12-30 20:18:29 +02:00
}
2015-01-05 01:33:17 +02:00
.um-dropdown-arr * { display: block !important; width: 24px !important; height: 24px !important; vertical-align: bottom !important; overflow: hidden !important; line-height: 24px !important; }
2014-12-30 20:18:29 +02:00
/*
- Misc.
*/
div.um-photo {
margin: 20px auto 0 auto;
text-align: center;
2015-01-03 15:31:15 +02:00
box-sizing: border-box;
max-width: 100%;
2014-12-30 20:18:29 +02:00
}
div.um-photo,
div.um-photo a,
div.um-photo img {
2015-01-14 00:11:38 +02:00
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
2014-12-30 20:18:29 +02:00
border-radius: 3px;
}
div.um-photo a {
border: 1px solid #e5e5e5;
padding: 5px;
box-sizing: border-box;
display: inline-block;
box-shadow: 0 1px 1px #eee;
margin: 0 auto;
2015-01-03 15:31:15 +02:00
max-width: 100%;
2014-12-30 20:18:29 +02:00
}
2015-02-02 02:10:06 +02:00
div.um-photo img {max-height: 300px; max-width: 100%;}
/*
- other form styles
*/
span.um-req {
margin: 0 0 0 8px;
2015-11-05 19:51:31 +08:00
font-size: 14px;
2015-02-02 02:10:06 +02:00
display: inline-block;
2016-01-28 10:16:14 -08:00
}
2016-02-16 23:02:51 +08:00
small.um-max-filesize {
display: block;
color: #999999;
padding-top: 5px;
}
small.um-max-filesize span{
font-size: 12px;
2016-02-16 15:10:51 -08:00
}
.um-form .um-field .um-field-area input.um-form-field.um-validate-not-matched,
2016-02-16 16:10:31 -08:00
.um-form .um-field .um-field-area input.um-form-field.um-validate-not-matched:focus,
.um-form .um-field .um-field-area input.um-form-field.um-validate-username-exists,
.um-form .um-field .um-field-area input.um-form-field.um-validate-username-exists:focus {
2016-02-16 15:10:51 -08:00
border-color: #DB2929 !important;
}
2016-02-16 16:10:31 -08:00
.um-form .um-field .um-field-area input.um-searching-username {
background-image: url('../img/loading.gif');
background-position: right center;
background-repeat: no-repeat;
background-size: 24px 24px;
}
2016-03-17 15:09:49 -07:00
.um-search-area {
position: relative;
max-width: 300px;
}
.um-search-area .um-search-field {
width: 100%;
}
.um-search-area .um-search-icon {
position: absolute;
top: 7px;
right: 10px;
}
2016-05-26 18:56:28 +08:00
2022-05-28 16:47:49 +03:00
/*
- Customize Select2 CSS
*/
.um-search-filter .select2-container.select2-container--open,
.um-field .select2-container.select2-container--open {
2022-05-28 16:47:49 +03:00
z-index: 9999999;
}
.um-search-filter .select2.select2-container .select2-selection,
.um-field .select2.select2-container .select2-selection {
2022-05-28 16:47:49 +03:00
display: block !important;
height: 40px;
padding: 0 0 0 12px !important;
overflow: hidden !important;
position: relative !important;
white-space: nowrap !important;
line-height: 35px !important;
color: #666 !important;
font-size: 15px !important;
-moz-border-radius: 2px !important;
-webkit-border-radius: 2px !important;
border-radius: 2px !important;
background-clip: padding-box !important;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: #fff !important;
2022-05-28 16:47:49 +03:00
border: 1px solid #ddd !important;
}
.rtl .um-search-filter .select2.select2-container .select2-selection,
.rtl .um-field .select2.select2-container .select2-selection {
2022-05-28 16:47:49 +03:00
padding: 0 12px 0 0 !important;
2016-05-26 18:56:28 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow,
.um-field .select2.select2-container .select2-selection .select2-selection__arrow {
2020-01-29 13:22:03 +02:00
display: inline-block !important;
width: 34px !important;
height: 100% !important;
position: absolute;
right: 0;
top: 0;
text-align: center;
2020-01-29 13:22:03 +02:00
background: transparent !important;
border: none !important;
2016-05-26 18:56:28 +08:00
}
.rtl .um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow,
.rtl .um-field .select2.select2-container .select2-selection .select2-selection__arrow {
right: initial;
left: 0;
2022-05-28 16:47:49 +03:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow:before,
.um-field .select2.select2-container .select2-selection .select2-selection__arrow:before {
2016-05-26 18:56:28 +08:00
content: "\f3d0" !important;
2022-05-28 16:47:49 +03:00
font-size: 28px !important;
font-family: "Ionicons" !important;
display: block;
height: 100%;
line-height: 40px;
min-width: 1em;
text-align: center;
color: #aaaaaa;
2016-05-26 18:56:28 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow b[role="presentation"],
.um-field .select2.select2-container .select2-selection .select2-selection__arrow b[role="presentation"] {
2022-05-28 16:47:49 +03:00
display: none;
2016-05-26 18:56:28 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2-container.select2-container--open .select2-dropdown,
.um-field .select2-container.select2-container--open .select2-dropdown {
2022-05-28 16:47:49 +03:00
border: 1px solid #ddd !important;
2020-01-29 13:22:03 +02:00
border-radius: 0;
2016-05-26 18:56:28 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2-container.select2-container--open .select2-dropdown .select2-results li,
.um-field .select2-container.select2-container--open .select2-dropdown .select2-results li {
2016-05-26 18:56:28 +08:00
list-style: none;
2022-05-28 16:47:49 +03:00
display: list-item;
background: none;
2022-05-28 16:47:49 +03:00
font-size: 15px;
margin: 5px !important;
color: #666 !important;
padding: 3px 7px 4px !important;
cursor: pointer;
min-height: 1em;
2022-05-28 16:47:49 +03:00
}
2016-05-26 18:56:28 +08:00
.um-search-filter .select2.select2-container .select2-selection.select2-selection--multiple,
.um-field .select2.select2-container .select2-selection.select2-selection--multiple {
2020-01-29 13:22:03 +02:00
height: auto !important;
line-height: 0.8 !important;
2022-05-28 16:47:49 +03:00
min-height: 40px;
padding-bottom: 4px !important;
2020-01-29 13:22:03 +02:00
}
.um-search-filter .select2-container--default .select2-selection--single .select2-selection__rendered,
.um-field .select2-container--default .select2-selection--single .select2-selection__rendered {
2020-01-29 13:22:03 +02:00
line-height: 37px;
padding-left: 0px;
padding-right: 24px;
2022-05-28 16:47:49 +03:00
}
.rtl .um-search-filter .select2-container--default .select2-selection--single .select2-selection__rendered,
.rtl .um-field .select2-container--default .select2-selection--single .select2-selection__rendered {
padding-left: 24px;
padding-right: 0px;
2020-01-29 13:22:03 +02:00
}
.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered {
2022-05-28 16:47:49 +03:00
line-height: 37px;
2020-01-29 13:22:03 +02:00
box-sizing: border-box;
list-style: none;
margin: 0;
padding-left: 0px;
2020-01-29 13:22:03 +02:00
padding-right: 30px;
width: 100%;
font-size: 13px;
2016-05-26 18:56:28 +08:00
}
.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered {
padding-left: 30px;
padding-right: 0px;
2022-05-28 16:47:49 +03:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2-dropdown .select2-results li.select2-results__option.select2-results__option--highlighted,
.um-field .select2-dropdown .select2-results li.select2-results__option.select2-results__option--highlighted {
background: #f4f4f4;
color: #666;
2016-05-26 18:56:28 +08:00
}
.um-search-filter .select2-dropdown .select2-results li.select2-results__option[aria-selected="true"],
.um-field .select2-dropdown .select2-results li.select2-results__option[aria-selected="true"] {
2022-05-28 16:47:49 +03:00
background-color: #ddd;
2016-05-26 18:56:28 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2-container--default .select2-selection--single .select2-selection__clear,
.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear,
.um-field .select2-container--default .select2-selection--single .select2-selection__clear,
.um-field .select2-container--default .select2-selection--multiple .select2-selection__clear {
color: #aaaaaa;
2022-05-28 16:47:49 +03:00
font-size: 28px;
font-weight: normal;
line-height: 34px;
2020-01-29 13:22:03 +02:00
margin: 0 !important;
2022-05-28 16:47:49 +03:00
right: 0;
text-align: center;
width: 1em;
}
.rtl .um-search-filter .select2-container--default .select2-selection--single .select2-selection__clear,
.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear,
.rtl .um-field .select2-container--default .select2-selection--single .select2-selection__clear,
.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__clear {
2022-05-28 16:47:49 +03:00
left: 0;
right: initial;
2016-06-03 22:39:16 +08:00
}
.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear,
.um-field .select2-container--default .select2-selection--multiple .select2-selection__clear {
2020-01-29 13:22:03 +02:00
position: absolute;
2016-06-03 22:39:16 +08:00
}
2020-01-29 13:22:03 +02:00
.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__choice,
.um-field .select2-container--default .select2-selection--multiple .select2-selection__choice {
2022-05-28 16:47:49 +03:00
margin: 5px 5px 0 0;
max-height: 28px;
2016-06-03 22:39:16 +08:00
padding: 3px 3px 3px 5px;
2016-06-03 22:54:29 +08:00
}
.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__choice,
.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__choice {
2022-05-28 16:47:49 +03:00
margin: 5px 0 0 5px;
padding: 3px 5px 3px 3px;
}
2016-06-03 22:54:29 +08:00
.um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline,
.um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline {
2022-06-07 12:12:03 +03:00
margin: 5px 5px 0 0;
padding: 0px;
}
.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline,
.rtl .um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline {
2022-06-07 12:12:03 +03:00
margin: 5px 0 0 5px;
}
.um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline > input,
.um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline > input {
2020-01-29 13:22:03 +02:00
border: none !important;
padding: 0 !important;
2022-06-07 12:12:03 +03:00
max-height: 28px;
2017-02-15 13:27:22 +08:00
}
.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered li,
.um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
2020-01-29 13:22:03 +02:00
overflow-x: hidden;
text-overflow: ellipsis;
max-width: 100%;
box-sizing: border-box;
2022-05-28 16:47:49 +03:00
line-height: 20px;
2020-01-27 19:09:54 +02:00
}
/*
- Multi-select
*/
/* @todo maybe deprecated and used only for select and multiselect */
2020-01-29 13:22:03 +02:00
.um-field-select .um-field-area .um-field-icon,
.um-field-multiselect .um-field-area .um-field-icon {
z-index: 99999999;
2020-01-27 19:09:54 +02:00
}
2020-01-29 13:22:03 +02:00
.um-field-select .um-field-area.um-field-area-has-icon .select2-selection__rendered {
text-indent: 20px;
2020-01-27 19:09:54 +02:00
}
2020-01-29 13:22:03 +02:00
.um-field-multiselect .um-field-area.um-field-area-has-icon ul:first-child {
margin-left: 30px !important;
2020-10-18 15:28:55 +03:00
}
.um-field-area .wp-switch-editor{
float: none;
height: auto;
2016-05-26 18:56:28 +08:00
}