erich37 Well-known member Licensed customer Jul 10, 2015 #1 search-box at this page needs "focus active" (showing yellow background) Search Tags | XenForo Community same as at the other "search tabs".
search-box at this page needs "focus active" (showing yellow background) Search Tags | XenForo Community same as at the other "search tabs".
Mike XenForo developer Staff member Licensed customer Jul 10, 2015 #2 This is fixed now (for the next roll out), thanks.
erich37 Well-known member Licensed customer Jul 13, 2015 #3 hmm... I do see the cursor blinking now, but there is no yellow background in the field ?
Chris D XenForo developer Staff member Licensed customer Jul 13, 2015 #4 That's likely not going to be possible. It's a bit of a special case here. It's not a normal text input. We'll have a look at it but it's likely expected.
That's likely not going to be possible. It's a bit of a special case here. It's not a normal text input. We'll have a look at it but it's likely expected.
TickTackk Well-known member Licensed customer Jul 13, 2015 #5 Adding this PHP: $textInput.on('focus', function(event) { $(this).closest('div.taggingInput.textCtrl').addClass('activeTagInput'); }); $textInput.on('blur', function(event) { $(this).closest('div.taggingInput.textCtrl').removeClass('activeTagInput'); }); to js/xenforo/full/tag.js after PHP: $textInput.closest('form').on('submit AutoValidationBeforeSubmit', function() { var val = $textInput.val(); if (val.length) { $input.addTag(val, {unique: true}); $textInput.val(''); } }); and then adding this PHP: div.taggingInput.textCtrl.activeTagInput { @property "textCtrlFocus"; background: rgb(255,255,240) url('@imagePath/xenforo/gradients/form-element-focus-25.png') repeat-x; border-top-color: rgb(150,150,150); border-bottom-color: rgb(230,230,230); @property "/textCtrlFocus"; } to EXTRA.css or somewhere in xenforo.css gives the real input field like effect for boards with debug mode on
Adding this PHP: $textInput.on('focus', function(event) { $(this).closest('div.taggingInput.textCtrl').addClass('activeTagInput'); }); $textInput.on('blur', function(event) { $(this).closest('div.taggingInput.textCtrl').removeClass('activeTagInput'); }); to js/xenforo/full/tag.js after PHP: $textInput.closest('form').on('submit AutoValidationBeforeSubmit', function() { var val = $textInput.val(); if (val.length) { $input.addTag(val, {unique: true}); $textInput.val(''); } }); and then adding this PHP: div.taggingInput.textCtrl.activeTagInput { @property "textCtrlFocus"; background: rgb(255,255,240) url('@imagePath/xenforo/gradients/form-element-focus-25.png') repeat-x; border-top-color: rgb(150,150,150); border-bottom-color: rgb(230,230,230); @property "/textCtrlFocus"; } to EXTRA.css or somewhere in xenforo.css gives the real input field like effect for boards with debug mode on