olor; } } .textRecognitionSuccessIcon { display: inline-block; background-color: #2ac3a2; border: 3px solid #2ac3a2; fill: var(--background-color-canvas); -moz-context-properties: fill; border-radius: 10px; width: 12px; height: 12px; margin-inline-end: 6px; } @media (prefers-reduced-motion: no-preference) { .textRecognitionSuccessIcon { animation: success-animation 0.3s cubic-bezier(0.3, 2, 0.48, 0.94); } } .textRecognitionNoResultIcon { display: inline-block; fill: #ffbf00; -moz-context-properties: fill; width: 18px; height: 18px; margin-inline-end: 8px; } @media (prefers-contrast) { .textRecognitionSuccessIcon { background-color: currentColor; border-color: currentColor; fill: var(--background-color-canvas); } .textRecognitionNoResultIcon { fill: currentColor; } } @keyframes throbber-animation-ltr { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } @keyframes throbber-animation-rtl { 0% { transform: translateX(0); } 100% { transform: translateX(100%); } } @keyframes success-animation { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } PK