Jump to content

Limit characters on "jump to" sidebar


Eradev

Recommended Posts

Back in 2018 I had a thread that showed an annoying feature that was added. It's still the same today.

image.thumb.png.2c3f238a6d2289fd2e29a928d8fb1fe7.png

 

I'd really like to be able to either select to display only #A-Z, or have it scrollable and easier to read/click. Plus it seems to work differently from one page to another (Albums/Album Arists and Artists).

Link to comment
Share on other sites

Happy2Play
9 minutes ago, Eradev said:

'd really like to be able to either select to display only #A-Z

The only way you have more then #A-Z is other languages.  I uses to get these foreign character on movies do to my third party xml metadata and Emby using that language field differently.

You would have to go over specific example for "it seems to work differently from one page to another".

Edited by Happy2Play
Link to comment
Share on other sites

Yes I have multiple albums whose titles aren't translated. It'd still be nice to force #A-Z.

 

Album artist - Now that I look at it, it is better spaced probably because of less different number of different letters

image.png.0a1c939787ba9ab4efde4ca10283fde9.png

 

 

Link to comment
Share on other sites

21 minutes ago, Eradev said:

Back in 2018 I had a thread that showed an annoying feature that was added. It's still the same today.

image.thumb.png.2c3f238a6d2289fd2e29a928d8fb1fe7.png

 

I'd really like to be able to either select to display only #A-Z, or have it scrollable and easier to read/click. Plus it seems to work differently from one page to another (Albums/Album Arists and Artists).

It's different because it's based on the content being displayed.

Link to comment
Share on other sites

8 minutes ago, Luke said:

It's different because it's based on the content being displayed.

Ok, still doesn't change the fact that it's not very pratical as it is.

Link to comment
Share on other sites

Can be fixed with css on the web client, but it's still not good on Android.

.alphaPickerRow {
  overflow-y: scroll;
  height: 100%;
  justify-content: flex-start !important;
}

.alphaPickerRow > button {
  padding: 0.5rem;
}

.alphaPickerRow::-webkit-scrollbar {
  width: 4px !important;
  height: 4px;
  display: block !important;
}

.alphaPickerRow::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.alphaPickerRow::-webkit-scrollbar-thumb {
  background: #52b54b;
  border: 0px none #ffffff;
  border-radius: 50px;
}
.alphaPickerRow::-webkit-scrollbar-thumb:hover {
  background: #52b54b;
}
.alphaPickerRow::-webkit-scrollbar-thumb:active {
  background: #a6e2a1;
}
.alphaPickerRow::-webkit-scrollbar-track {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 50px;
}
.alphaPickerRow::-webkit-scrollbar-track:hover {
  background: #666666;
}
.alphaPickerRow::-webkit-scrollbar-track:active {
  background: #333333;
}
.alphaPickerRow::-webkit-scrollbar-corner {
  background: transparent;
}

 

Edited by Eradev
Fixed for version 4.5.1.0
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...