MyBB Community Forums

Full Version: inline_edit on forum display threadlist
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On the threadlisting, if you hover over one of the titles, you get "Click and hold to edit" When you click and hold an input box appears which allows you to edit the thread title. Since my text line height is increased, where can i find the input box code to increase the box height? Don't see where in inline_edit.js
I fixed it with this css:

.subject_editable {
  height: 100%;
  display: inline-block;
  width: 98%;
}	
Nice, thank you!
%width above can be reduced a bit when making uses of thread prefixes, otherwise the title breaks onto a new line.
Yea, use what fits your needs.