Светлый стиль для прелоадера картинки на странице кода mfa

Выводим XXXX для непрогруженного кода
This commit is contained in:
ErickSkrauch 2017-11-21 15:40:04 +03:00
parent 9ec146193b
commit a540191800
3 changed files with 7 additions and 8 deletions

View File

@ -15,8 +15,7 @@ export default function KeyForm({secret, qrCodeSrc}: {
secret: string, secret: string,
qrCodeSrc: string qrCodeSrc: string
}) { }) {
// we are using invisible symbol (\u2063) as a placeholder till we get actual secret const formattedSecret = formatSecret(secret || (new Array(24)).join('X'));
const formattedSecret = formatSecret(secret) || '\u2063';
return ( return (
<div className={profileForm.formBody}> <div className={profileForm.formBody}>

View File

@ -2,6 +2,7 @@
import React from 'react'; import React from 'react';
import classNames from 'classnames'; import classNames from 'classnames';
import { ComponentLoader } from 'components/ui/loader'; import { ComponentLoader } from 'components/ui/loader';
import { SKIN_LIGHT } from 'components/ui';
import styles from './imageLoader.scss'; import styles from './imageLoader.scss';
@ -49,7 +50,7 @@ export default class ImageLoader extends React.Component<{
{isLoading && ( {isLoading && (
<div className={styles.loader}> <div className={styles.loader}>
<ComponentLoader /> <ComponentLoader skin={SKIN_LIGHT} />
</div> </div>
)} )}

View File

@ -12,7 +12,6 @@
.spin { .spin {
height: 20px; height: 20px;
width: 20px; width: 20px;
// background: $green;
display: inline-block; display: inline-block;
margin: 10px 2px; margin: 10px 2px;
opacity: 0; opacity: 0;
@ -44,7 +43,7 @@
*/ */
.lightComponentLoader { .lightComponentLoader {
.spin { .spin {
background: #fff; background: #aaa;
} }
} }
@ -56,15 +55,15 @@
@keyframes loaderAnimation { @keyframes loaderAnimation {
0% { 0% {
opacity:0; opacity: 0;
} }
50% { 50% {
opacity:1; opacity: 1;
transform: scaleY(2) transform: scaleY(2)
} }
100% { 100% {
opacity:0; opacity: 0;
} }
} }