What is the html class for loading progress bar?

I tried to change the style for the progress bar during loading, but it was too quick to open the dev tools. I was wondering

  1. What is the class(or other ways to style) for this element? Does it change in the mobile app?
  2. How to find out these elements’ classes in general, when they disappear quickly?

Thank you

1 Like

While I still haven’t found a way to pause/add a breakpoint during the loading, it seems the progress bar color can be changed with:

.progress-bar-line {
    background-color: #F00 !important;
}
1 Like

I decided to look into it on desktop, this the loading progress bar container CSS

.progress-bar-line {
    background-color: yourcolor;
}

And this is for the loading bar within the progress bar container

.progress-bar-subline{
background: yourcolor;
}

This is the message that appears when it’s loading

.progress-bar-message{
color: yourcolor;
}