Making the search box (List search, LL) larger / text size smaller

I’ve used the following code to do this. It shows more results. It’s especially useful if you’ve changed general heading styles, which unfortunately get carried over into the search box by default.

```

/* Sorting out search box */

/* The outer dialog */

.dialog {

height: 750px !important;

}

/* The inner content wrapper — also has inline height */

.dialog__content.cl_content {

height: 750px !important;

}

/* The scrolling segment in the search box */

.searchEverywhere .menuPopupList,

.searchEverywhere .locationsList {

max-height: 590px !important;

}

/* Sets font size for text shown in the search box */

.searchEverywhere .node_text {

font-size: 14px !important;

line-height: 1.3 !important;

font-weight: normal !important;

}

```

Hello @Nick_Riches !

Thanks for sharing this. I see that it is inconvenient to set the max-height, so I corrected this, and uploaded the fix to beta.checkvist.com. Now, you can affect the max height of the LL window as:

.searchEverywhere {
  --searchEverywhere-maxHeight: 550px;
}

In fact, it affects only the height of the scrollable part, so it is not the direct height of the whole window.

I hope this will help, please check how it works on https://beta.checkvist.com

Please let me know.

Kind regards,
KIR

Thanks. I’ve yet to try this. I am not sure of the relationship between the beta account and the main account. Presumably new features are introduced in the beta account first? However, the css seems to have an identical effect in the beta and main accounts. One thing, I have noticed is that the css manipulation unfortunately affects both the tag selection dialog and the date selection dialog too. Is there a way to restrict this so that it only works in the locations list?