The function to hide the number of remaining cards in Queue is gone

image

In the previous version I could click on the number of the remaining card and it would change to a dot


After I turned off this feature

RemNote still show the number of remaining cards…

Still broken as of 10/10/2021.

1 Like

My temporary CSS workaround to hide the ‘number’ of remaining cards -

.queue__badge{
    color: transparent;
}
.queue__badge:hover {
    color: #292936;
} 

Additionally, to remove/hide the “Flashcards for” -

span.sm\:inline.whitespace-nowrap.hidden.ml-2 {
    display: none;
}
div.queue__title__middle.font-semibold.flex.gap-2.items-center {
	color: white;
} 

hide

4 Likes

Wow… Thank you… !! I didn’t think of this solution…