Changing the width of the search box below the sync button

Hi dstillman et al, are there any plans to allow the value of "search-textbox-width" variable to be changed by the user, so that the search box isn't so narrow?

For anyone interested, here's a hackey solution -- use at your own risk, as I haven't looked carefully to see if this might somehow negatively impact other elements in the UI.

As of Zotero 7 beta-55, the following code can be used in your userChrome.css file to change the width of the search box that is just above the table with your library's content (and just below the sync button):
```
quick-search-textbox {
--search-textbox-width: 250% !important;
}
```

In Zotero 7 beta-54 or below, the following code worked:
```
quick-search-textbox {
width: 250% !important;
}
```
Sign In or Register to comment.