mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-18 22:23:37 +09:00
- Advanced tab finished;
- Advanced > Features section is finished; - General > Users section is finished;
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
.um-form-table .um-forms-line[data-conditional] {
|
||||
display: none; }
|
||||
|
||||
.um-form-table .um-forms-line[data-field_type="checkbox"] td label {
|
||||
.um-form-table .um-forms-line[data-field_type="checkbox"] td label, .um-form-table .um-forms-line[data-field_type="same_page_update"] td label {
|
||||
font-style: italic; }
|
||||
|
||||
.um-form-table .um-forms-line label .um-req {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -7,7 +7,8 @@
|
||||
.#{$prefix}forms-line
|
||||
&[data-conditional]
|
||||
display: none
|
||||
&[data-field_type="checkbox"]
|
||||
&[data-field_type="checkbox"],
|
||||
&[data-field_type="same_page_update"]
|
||||
td
|
||||
label
|
||||
font-style: italic
|
||||
|
||||
@@ -130,9 +130,9 @@ jQuery(document).ready( function() {
|
||||
jQuery( document.body ).on( 'click', '.um-forms-field[data-log-object]', function() {
|
||||
var obj = jQuery( this ).data( 'log-object' );
|
||||
if ( jQuery( this ).is( ':checked' ) ) {
|
||||
jQuery( this ).siblings( '.um-same-page-update-' + obj ).show();
|
||||
jQuery( this ).parents('label').siblings( '.um-same-page-update-' + obj ).show();
|
||||
} else {
|
||||
jQuery( this ).siblings( '.um-same-page-update-' + obj ).hide();
|
||||
jQuery( this ).parents('label').siblings( '.um-same-page-update-' + obj ).hide();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user