Browser width cannot shrink further below a certain limit with TextInput

I’m testing the TextInput widget with sizing_mode=‘stretch_width’. However, the width of the browser cannot be shrunk further below a certain width. It seems like there is a minimum hidden width somewhere.

Could you please let me know what to do so the minimum width limit can be removed? Below is a minimum working script. Thanks!

from bokeh.server.server import Server
from bokeh.models import TextInput


def make_document(doc):
    status_text = TextInput(title='', value='Ready', disabled=True,
                                         sizing_mode='stretch_width')
    doc.add_root(status_text, sizing_mode='stretch_width')


apps = {'/': make_document}
server = Server(apps)
server.start()
server.io_loop.add_callback(server.show, "/")
server.io_loop.start()

However, the width of the browser cannot be shrunk further below a certain width.

This limit is likely imposed by your windowing manager or the web browser itself. If you think that’s not the case, then please submit a gif/video of the observed behavior.