2025-08-18, 04:42 PM
Done..
I didn't think ChatGPT would know about this, but it did and gave me an acceptable solution.. this perfectly fit the height of my TV screen..
Apply this to: Dashboard > General > Custom CSS
/* Makes the alphabet-list fullheight and always visible to the right */
div.alphaPicker-fixed {
position: fixed !important;
right: 0 !important;
top: 0 !important;
bottom: 0 !important;
height: 100vh !important;
z-index: 9999 !important;
}
/* Evens the letters from # to Z */
div.alphaPickerRow-vertical {
height: 100% !important;
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
padding: .4rem 0 !important;
}
/* Small, tight buttons so all can fit */
button.alphaPickerButton-vertical {
line-height: 1 !important;
padding: .1rem .2rem !important;
font-size: 1rem !important; /* justera vid behov */
}
I didn't think ChatGPT would know about this, but it did and gave me an acceptable solution.. this perfectly fit the height of my TV screen..

Apply this to: Dashboard > General > Custom CSS
/* Makes the alphabet-list fullheight and always visible to the right */
div.alphaPicker-fixed {
position: fixed !important;
right: 0 !important;
top: 0 !important;
bottom: 0 !important;
height: 100vh !important;
z-index: 9999 !important;
}
/* Evens the letters from # to Z */
div.alphaPickerRow-vertical {
height: 100% !important;
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
padding: .4rem 0 !important;
}
/* Small, tight buttons so all can fit */
button.alphaPickerButton-vertical {
line-height: 1 !important;
padding: .1rem .2rem !important;
font-size: 1rem !important; /* justera vid behov */
}