CSS – Rapido

/* Suppress the OR between the two parts of the Rapido tile */

.or-separator .or .word {
display: none;
}

/* Add a spinner when you’re not using Ex Libris’ default icons */

[translate=’rapido.tiles.placeholder.text’]:after {
content: ” “;
display: block;
width: 32px;
height: 32px;
margin-top: 1.5em;
border-radius: 50%;
border: 2px solid #008488;
border-color: #008488 transparent;
animation: rapido-load 1.2s linear infinite;
}

@keyframes rapido-load {
0% {transform: rotate(0deg);}
100% {
transform: rotate(360deg);
}}

5.1.2023