@authing/react-ui-components 3.0.2-beta.5 → 3.1.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +1 -1
- package/LICENSE +21 -0
- package/config/env.js +26 -24
- package/config/paths.js +3 -3
- package/config/webpack.config.js +29 -7
- package/lib/index.d.ts +211 -1252
- package/lib/index.min.css +1 -2
- package/lib/index.min.js +1 -1
- package/lib/index.min.js.LICENSE.txt +0 -32
- package/package.json +14 -20
- package/scripts/build.js +83 -79
- package/scripts/start.js +73 -69
- package/scripts/test.js +23 -19
- package/{components → src/common}/AuthingDropdown/index.tsx +1 -1
- package/{components → src/common}/AuthingDropdown/style.less +0 -0
- package/{components → src/common}/AuthingTabs/index.tsx +1 -1
- package/{components → src/common}/AuthingTabs/style.less +0 -0
- package/{components → src/common}/CopyAbleText/index.tsx +1 -1
- package/{components → src/common}/CopyAbleText/style.less +0 -0
- package/{components → src/common}/VerifyCodeInput/index.tsx +0 -0
- package/{components → src/common}/VerifyCodeInput/style.less +0 -0
- package/{components → src/components}/AuthingGuard/AppMFALayout/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/AppMFALayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/ADLoginForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/Agreements/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/Agreements/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/CompleteUserInfoForm/index.tsx +3 -3
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.tsx +4 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/index.tsx +4 -9
- package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step1.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step2.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/PasswordLoginForm/index.tsx +3 -3
- package/{components → src/components}/AuthingGuard/Forms/PhoneCodeLoginForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/PhoneRegisterForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/index.tsx +4 -2
- package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Footer.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step1.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step2.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step3.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step4.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.tsx +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/index.tsx +7 -7
- package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/UploadImage/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/index.ts +0 -0
- package/{components → src/components}/AuthingGuard/GuardLayout/index.tsx +17 -3
- package/{components → src/components}/AuthingGuard/GuardLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Header/index.tsx +6 -3
- package/{components → src/components}/AuthingGuard/Header/style.less +23 -11
- package/{components → src/components}/AuthingGuard/IconFont/iconfont.js +0 -0
- package/{components → src/components}/AuthingGuard/IconFont/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/IconFont/style.less +0 -0
- package/{components → src/components}/AuthingGuard/IconFont/svg.js +0 -0
- package/{components → src/components}/AuthingGuard/LoginLayout/index.tsx +69 -25
- package/{components → src/components}/AuthingGuard/LoginLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/MfaLayout/Steps.ts +0 -0
- package/{components → src/components}/AuthingGuard/MfaLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/MfaLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/RegisterLayout/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/RegisterLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/ResetPwdLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/ToggleLang/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/api/appConfig.ts +22 -14
- package/{components/_utils → src/components/AuthingGuard/api}/http.ts +33 -30
- package/{components → src/components}/AuthingGuard/api/index.ts +0 -0
- package/{components → src/components}/AuthingGuard/api/sso.ts +1 -1
- package/{components → src/components}/AuthingGuard/api/userPoolConfig.ts +3 -2
- package/{components → src/components}/AuthingGuard/constants.ts +2 -2
- package/{components → src/components}/AuthingGuard/hooks/index.tsx +0 -0
- package/{components → src/components}/AuthingGuard/hooks/useScreenSize.tsx +0 -0
- package/{components → src/components}/AuthingGuard/index.tsx +11 -3
- package/{components/_utils → src/components/AuthingGuard}/locales/en/common.json +26 -70
- package/{components/_utils → src/components/AuthingGuard}/locales/en/index.ts +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/en/login.json +19 -21
- package/{components/_utils → src/components/AuthingGuard}/locales/en/map.json +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/en/user.json +3 -4
- package/{components/_utils → src/components/AuthingGuard}/locales/index.ts +2 -2
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/common.json +9 -53
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/index.ts +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/login.json +4 -6
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/map.json +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/user.json +1 -3
- package/{components → src/components}/AuthingGuard/style.less +5 -0
- package/{components → src/components}/AuthingGuard/types/Forms.ts +2 -1
- package/{components → src/components}/AuthingGuard/types/GuardConfig.ts +5 -1
- package/{components → src/components}/AuthingGuard/types/GuardState.ts +1 -1
- package/{components → src/components}/AuthingGuard/types/Locales.ts +0 -0
- package/{components → src/components}/AuthingGuard/types/index.ts +0 -0
- package/src/components/index.ts +7 -0
- package/{components → src}/context/base.tsx +0 -0
- package/{components → src}/context/global/context.tsx +0 -0
- package/{components → src}/context/global/reducer.tsx +2 -2
- package/src/index.tsx +142 -0
- package/{logo.svg → src/logo.svg} +0 -0
- package/{react-app-env.d.ts → src/react-app-env.d.ts} +0 -0
- package/{reportWebVitals.ts → src/reportWebVitals.ts} +0 -0
- package/{setupTests.ts → src/setupTests.ts} +0 -0
- package/{components/_utils → src/utils}/clipboard.ts +1 -1
- package/{components/_utils → src/utils}/index.ts +3 -149
- package/{components/_utils → src/utils}/popupCenter.ts +0 -0
- package/tsconfig.json +2 -8
- package/build/asset-manifest.json +0 -26
- package/build/favicon.ico +0 -0
- package/build/index.html +0 -1
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +0 -25
- package/build/robots.txt +0 -3
- package/build/static/css/2.51c07e65.chunk.css +0 -3
- package/build/static/css/2.51c07e65.chunk.css.map +0 -1
- package/build/static/css/main.779f221a.chunk.css +0 -2
- package/build/static/css/main.779f221a.chunk.css.map +0 -1
- package/build/static/js/2.bbae9fdb.chunk.js +0 -3
- package/build/static/js/2.bbae9fdb.chunk.js.LICENSE.txt +0 -102
- package/build/static/js/2.bbae9fdb.chunk.js.map +0 -1
- package/build/static/js/3.fd17f196.chunk.js +0 -2
- package/build/static/js/3.fd17f196.chunk.js.map +0 -1
- package/build/static/js/main.5f341531.chunk.js +0 -2
- package/build/static/js/main.5f341531.chunk.js.map +0 -1
- package/build/static/js/runtime-main.ef138021.js +0 -2
- package/build/static/js/runtime-main.ef138021.js.map +0 -1
- package/build/static/media/loading.4a67a5f3.svg +0 -29
- package/components/BindTotp/core/bindSuccess.tsx +0 -72
- package/components/BindTotp/core/securityCode.tsx +0 -108
- package/components/BindTotp/index.tsx +0 -134
- package/components/BindTotp/interface.ts +0 -30
- package/components/BindTotp/styles.less +0 -57
- package/components/ChangeLanguage/index.tsx +0 -35
- package/components/ChangePassword/core/firstLoginReset.tsx +0 -111
- package/components/ChangePassword/core/rotateReset.tsx +0 -114
- package/components/ChangePassword/index.tsx +0 -72
- package/components/CompleteInfo/core/completeInfo.tsx +0 -155
- package/components/CompleteInfo/index.tsx +0 -45
- package/components/CompleteInfo/interface.ts +0 -40
- package/components/CompleteInfo/styles.less +0 -7
- package/components/DownloadAuthenticator/index.tsx +0 -97
- package/components/DownloadAuthenticator/interface.ts +0 -22
- package/components/DownloadAuthenticator/styles.less +0 -52
- package/components/Error/index.tsx +0 -21
- package/components/Error/interface.ts +0 -9
- package/components/Error/styles.less +0 -12
- package/components/ForgetPassword/core/resetPassword.tsx +0 -162
- package/components/ForgetPassword/index.tsx +0 -78
- package/components/ForgetPassword/interface.ts +0 -32
- package/components/Guard/Guard.tsx +0 -295
- package/components/Guard/authClient.ts +0 -44
- package/components/Guard/config.ts +0 -19
- package/components/Guard/event.ts +0 -52
- package/components/Guard/index.tsx +0 -4
- package/components/Guard/module.ts +0 -20
- package/components/Guard/stateMachine.ts +0 -152
- package/components/Guard/styles.less +0 -461
- package/components/IconFont/iconfont.js +0 -74
- package/components/IconFont/index.tsx +0 -16
- package/components/IconFont/style.less +0 -6
- package/components/IconFont/svg.js +0 -2
- package/components/ImagePro/index.tsx +0 -53
- package/components/ImagePro/styles.less +0 -40
- package/components/InputNumber/index.tsx +0 -33
- package/components/Login/codemap.ts +0 -49
- package/components/Login/core/withAD.tsx +0 -9
- package/components/Login/core/withAppQrcode.tsx +0 -49
- package/components/Login/core/withLDAP.tsx +0 -146
- package/components/Login/core/withPassword/FormItemAccount.tsx +0 -42
- package/components/Login/core/withPassword/GraphicVerifyCode.tsx +0 -30
- package/components/Login/core/withPassword/InputAccount.tsx +0 -64
- package/components/Login/core/withPassword/index.tsx +0 -173
- package/components/Login/core/withPhonecode.tsx +0 -122
- package/components/Login/core/withWechatMiniQrcode.tsx +0 -60
- package/components/Login/core/withWechatmpQrcode.tsx +0 -53
- package/components/Login/index.tsx +0 -374
- package/components/Login/props.ts +0 -74
- package/components/Login/socialLogin/index.tsx +0 -407
- package/components/Login/socialLogin/style.less +0 -69
- package/components/Login/styles.less +0 -53
- package/components/MFA/VerifyCodeInput/VerifyCodeFormItem.tsx +0 -41
- package/components/MFA/VerifyCodeInput/index.tsx +0 -145
- package/components/MFA/VerifyCodeInput/style.less +0 -35
- package/components/MFA/codemap.ts +0 -24
- package/components/MFA/core/email.tsx +0 -203
- package/components/MFA/core/face.tsx +0 -297
- package/components/MFA/core/face_deps.tsx +0 -37
- package/components/MFA/core/sms.tsx +0 -203
- package/components/MFA/core/totp.tsx +0 -122
- package/components/MFA/index.tsx +0 -143
- package/components/MFA/mfaMethods/index.tsx +0 -88
- package/components/MFA/mfaMethods/style.less +0 -39
- package/components/MFA/props.ts +0 -51
- package/components/MFA/styles.less +0 -100
- package/components/NeedHelpView/core/describeQuestions.tsx +0 -245
- package/components/NeedHelpView/index.tsx +0 -47
- package/components/RecoveryCode/core/useCode.tsx +0 -71
- package/components/RecoveryCode/index.tsx +0 -27
- package/components/RecoveryCode/interface.ts +0 -31
- package/components/RecoveryCode/style.less +0 -13
- package/components/Register/codemap.ts +0 -12
- package/components/Register/components/Agreements/index.tsx +0 -81
- package/components/Register/components/Agreements/style.less +0 -44
- package/components/Register/core/WithEmail.tsx +0 -242
- package/components/Register/core/WithPhone.tsx +0 -184
- package/components/Register/index.tsx +0 -139
- package/components/Register/props.ts +0 -50
- package/components/SendCode/SendCodeBtn.tsx +0 -96
- package/components/SendCode/index.tsx +0 -94
- package/components/SendCode/style.less +0 -31
- package/components/ShieldSpin/index.tsx +0 -27
- package/components/ShieldSpin/loading.svg +0 -29
- package/components/SubmitButton/index.tsx +0 -50
- package/components/SubmitSuccess/index.tsx +0 -66
- package/components/SubmitSuccess/interface.ts +0 -17
- package/components/Type/index.ts +0 -52
- package/components/ValidatorRules/ValidatorFormItem.tsx +0 -139
- package/components/ValidatorRules/index.ts +0 -20
- package/components/_utils/GuardErrorCode.ts +0 -9
- package/components/_utils/config.ts +0 -116
- package/components/_utils/guradHttp.ts +0 -101
- package/components/_utils/hooks/index.ts +0 -64
- package/components/assets/images/error.png +0 -0
- package/components/context/module/context.tsx +0 -23
- package/components/index.ts +0 -12
- package/examples.tsx +0 -87
- package/index.js +0 -1
- package/lib/static/media/loading.4a67a5f3.svg +0 -29
- package/scripts/publish.js +0 -57
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.g2-base-image-background-animation{background:linear-gradient(60deg,#888,#cecece,#dfdfdf,#f0f0f0);animation:gradientBG 3s ease infinite;background-size:400% 400%}@keyframes gradientBG{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.g2-base-imagepro-container{border-radius:4px;display:inline-block;-webkit-user-select:none;-ms-user-select:none;user-select:none}.g2-base-imagepro-container.loaded{background:none}.g2-base-imagepro-container.loaded .imagePro{opacity:1}.g2-base-imagepro-container.unload .imagePro{opacity:0}.g2-base-imagepro{object-fit:cover}[class*=authing-].authing-g2-send-code-btn{height:46px;width:100%;border:1px solid #d4d6dc;border-radius:4px}[class*=authing-].authing-g2-send-code-btn:hover{background:rgba(57,106,255,.1)}[class*=authing-].authing-g2-send-code-btn:focus{outline:none}[class*=authing-].authing-g2-send-code-btn[disabled]{cursor:not-allowed;-webkit-filter:opacity(.5);filter:opacity(.5)}@media only screen and (max-width:719px){[class*=authing-].authing-g2-send-code-btn{font-size:14px}}.g2-loading-btn-center [class*=authing-].authing-ant-btn-loading-icon .anticon{padding-right:0}.g2-icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor}.g2-guard-full-width-space{width:100%}.no-login-methods{padding:38px}.g2-guard-third-login-btn{display:flex!important;border:none!important;background-color:#f5f6f7!important;border-radius:4px!important;color:#282d3c!important;font-size:14px!important;justify-content:center;align-items:center}.g2-social-login-item{display:inline-flex;margin:12px;width:56px;height:48px;background-color:#f5f6f7;border-radius:4px;justify-content:center;align-items:center;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none}.g2-social-login-item .g2-icon{font-size:24px;transition:color .3s ease-in-out}.g2-social-login-item:hover{background:rgba(84,89,104,.2)}.g2-social-login-title{text-align:center;font-size:14px;color:#c8c9cc}.g2-social-login-title:after,.g2-social-login-title:before{content:"——";color:#eee;margin:0 11px}.g2-social-login-list{display:flex;flex-wrap:wrap;justify-content:center;padding:0 35px}[class*=authing-].authing-ant-avatar>img{display:block;width:100%;height:100%;object-fit:cover}.g2-qrcode-switch{position:absolute;display:flex;right:16px}.g2-qrcode-switch .switch-text{display:flex;justify-content:center;align-items:center;background:rgba(84,89,104,.1);height:26px;margin-right:4px;font-size:12px;padding:0 12px;border-radius:4px;color:#545968}.g2-qrcode-switch .switch-img:hover .imgae-mask{border-width:0;right:50px;top:50px}.g2-qrcode-switch .imgae-mask{width:0;height:0;border-color:transparent transparent transparent #fff;border-style:solid;border-width:50px 0 0 50px;position:absolute;right:0;top:0;transition:all .2s}.g2-qrcode-switch .qrcode-switch-image{font-size:50px;color:#396aff;cursor:pointer}[class*=authing-].authing-g2-login-app-qrcode{min-height:288px;height:300px;display:flex;justify-content:center;align-items:center}[class*=authing-].authing-g2-code-input-item{text-align:center;width:40px;min-width:40px;min-height:40px;height:40px;line-height:40px;background-color:#f5f6f7;border:unset;border-radius:4px}[class*=authing-].authing-g2-code-input-item:not(:first-child){margin-left:18px}[class*=authing-].authing-g2-code-input-item input{text-align:center}[class*=authing-].authing-g2-code-input-divider{width:14px;min-width:14px;max-width:14px;margin-left:18px}[class*=authing-].authing-g2-code-input{display:flex;align-items:center}[class*=authing-].authing-ant-form-item-has-error .authing-g2-code-input-item{background-color:#f5f6f7;border:1px solid #ff4d4f}.g2-mfa-method{padding:0 38px}.g2-mfa-method-title{text-align:center;font-size:14px;color:#c8c9cc;margin-bottom:8px;width:100%}.g2-mfa-method-title:after,.g2-mfa-method-title:before{content:"——";color:#eee;margin:0 11px}.g2-guard-mfa-methods-btn{border:none!important;background-color:#f5f6f7!important;border-radius:4px!important;color:#282d3c!important;font-size:14px!important;height:49px!important;margin-top:8px!important;width:100%;justify-content:center;align-items:center;font-size:14px}.g2-guard-mfa-methods-btn .g2-icon{font-size:16px;margin-right:8px}[class*=authing-].authing-g2-mfa-title{color:#282d3c;font-size:18px;font-weight:600;text-align:center;margin-bottom:8px;margin-top:40px}[class*=authing-].authing-g2-mfa-tips{font-size:14px;color:#545968;text-align:center;margin-bottom:24px}.g2-mfa-content{margin:0 38px}.g2-mfa-content .g2-mfa-submit-button{margin-top:32px!important}.g2-mfa-content .bind-totp{margin-top:80px!important}.g2-mfa-content [class*=authing-].authing-ant-form-item-control-input-content{display:flex;justify-content:center}.g2-mfa-content .g2-mfa-totp-verify-input{text-align:center}.g2-mfa-content .g2-mfa-totp-verify-input [class*=authing-].authing-code-input-item:not(:first-child){margin-left:14px}.g2-mfa-content [class*=authing-].authing-ant-form-horizontal{display:flex;justify-content:center;flex-direction:column}.g2-mfa-content .g2-mfa-face-image{display:block;margin:0 auto 24px}.g2-mfa-content .g2-mfa-face-identifying{display:flex;justify-content:center;align-items:center}.g2-mfa-content .g2-mfa-face-identifying .video-round{width:210px;height:210px;border-radius:50%;vertical-align:middle}.g2-mfa-content .g2-mfa-face-identifying .mesh{z-index:100;-webkit-user-select:none;-ms-user-select:none;user-select:none;color:#fff;position:absolute;display:flex;justify-content:center;align-items:center;cursor:pointer;background:rgba(0,0,0,.4)}.g2-mfa-content .g2-mfa-face-identifying .ring{width:240px;height:240px;position:absolute;transform:rotate(270deg)}.svg-circle-bg{stroke-width:4}.svg-circle-running{stroke-width:4;transition:all .2s linear;stroke:#396aff;stroke-linecap:round}.g2-mfa-verifyCode-formItem [class*=authing-].authing-ant-form-item-explain-error{display:flex;justify-content:center}[class*=authing-].authing-agreements{margin-top:20px;margin-bottom:20px}[class*=authing-].authing-agreements.authing-agreements-error .authing-agreements-item-invalid,[class*=authing-].authing-agreements.authing-agreements-error .authing-agreements-item-invalid a{color:#ff4d4f}[class*=authing-].authing-agreements.authing-agreements-error .authing-agreements-item-invalid :global(.ant-checkbox-inner){border-color:#ff4d4f}[class*=authing-].authing-agreements-item{color:#999;-webkit-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;font-size:12px}[class*=authing-].authing-agreements-item:not(:first-child){margin-top:4px}[class*=authing-].authing-agreements-item p{margin-bottom:0;display:inline-block}[class*=authing-].authing-agreements-checkbox{margin-bottom:2px}[class*=authing-].authing-agreements-checkbox :global(.ant-checkbox-inner){width:14px;height:14px}[class*=authing-].authing-agreements-checkbox :global(.ant-checkbox-inner):after{left:20%}[class*=authing-].authing-agreements-item-content{line-height:23px}.g2-view-container-totp-dl{width:900px;padding:0}.g2-mfa-totp-title{width:100%;height:54px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#293350;border-bottom:1px solid #eaebee;margin-bottom:54px}.g2-mfa-totp-download-tabs{margin-top:30px}.g2-mfa-download-at-tab{display:flex;flex-direction:column;align-items:center;margin-top:15px}.g2-mfa-download-at-tab .g2-mfa-totp-download-subtitle{color:#545968}.g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item{display:flex;flex-direction:column;align-items:center;margin-top:35px}.g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item .g2-mfa-totp-download-image{width:130px;height:130px;display:flex;align-items:center;justify-content:center;box-shadow:0 0 30px rgba(84,89,104,.15);border-radius:4px}.g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item .g2-mfa-totp-download-qrcode-text{margin-top:8px;color:#545968}.g2-mfa-bindTotp{display:flex;flex-direction:column;align-items:center;height:100%}.g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret{width:100%;height:48px;display:flex;justify-content:center;align-items:center;background:#f5f6f7;border-radius:4px}.g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret [class*=authing-].authing-ant-typography{margin:0}.g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret [class*=authing-].authing-ant-typography svg{color:#878a95!important;margin-left:30px}.g2-mfa-bindTotp .g2-mfa-bindTotp-secretSave{margin-top:16px}.g2-mfa-bindTotp .g2-mfa-submit-button{margin-top:80px!important}.g2-mfa-bindTotp .g2-mfa-bindTotp-qrcode{box-shadow:0 0 30px rgba(84,89,104,.15);border-radius:4px}.g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form{display:flex;flex-direction:column;align-items:center}.g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form .g2-mfa-submit-button{margin-top:64px!important}.g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form .g2-mfa-totp-verify-input{text-align:center;margin-bottom:8px!important;margin-top:40px!important}.g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form p{color:#878a95}.g2-completeInfo-content{margin-bottom:44px}.g2-completeInfo-submit{margin-top:30px!important}.g2-mfa-recovery-code [class*=authing-].authing-g2-mfa-title{margin-top:92px}.g2-mfa-recovery-code [class*=authing-].authing-g2-mfa-tips{margin-bottom:52px}.g2-mfa-recovery-code .submit-form{margin-top:64px!important}[class*=authing-] body,[class*=authing-] html{width:100%;height:100%}[class*=authing-] input::-ms-clear,[class*=authing-] input::-ms-reveal{display:none}[class*=authing-] *,[class*=authing-] :after,[class*=authing-] :before{box-sizing:border-box}[class*=authing-] html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}@-ms-viewport{width:device-width}[class*=authing-] body{margin:0;color:rgba(0,0,0,.85);font-size:14px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-variant:tabular-nums;line-height:1.5715;background-color:#fff;font-feature-settings:"tnum","tnum"}[class*=authing-] [tabindex="-1"]:focus{outline:none!important}[class*=authing-] hr{box-sizing:content-box;height:0;overflow:visible}[class*=authing-] h1,[class*=authing-] h2,[class*=authing-] h3,[class*=authing-] h4,[class*=authing-] h5,[class*=authing-] h6{margin-top:0;margin-bottom:.5em;color:rgba(0,0,0,.85);font-weight:500}[class*=authing-] p{margin-top:0;margin-bottom:1em}[class*=authing-] abbr[data-original-title],[class*=authing-] abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;border-bottom:0;cursor:help}[class*=authing-] address{margin-bottom:1em;font-style:normal;line-height:inherit}[class*=authing-] input[type=number],[class*=authing-] input[type=password],[class*=authing-] input[type=text],[class*=authing-] textarea{-webkit-appearance:none}[class*=authing-] dl,[class*=authing-] ol,[class*=authing-] ul{margin-top:0;margin-bottom:1em}[class*=authing-] ol ol,[class*=authing-] ol ul,[class*=authing-] ul ol,[class*=authing-] ul ul{margin-bottom:0}[class*=authing-] dt{font-weight:500}[class*=authing-] dd{margin-bottom:.5em;margin-left:0}[class*=authing-] blockquote{margin:0 0 1em}[class*=authing-] dfn{font-style:italic}[class*=authing-] b,[class*=authing-] strong{font-weight:bolder}[class*=authing-] small{font-size:80%}[class*=authing-] sub,[class*=authing-] sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}[class*=authing-] sub{bottom:-.25em}[class*=authing-] sup{top:-.5em}[class*=authing-] a{color:#396aff;text-decoration:none;background-color:transparent;outline:none;cursor:pointer;transition:color .3s;-webkit-text-decoration-skip:objects}[class*=authing-] a:hover{color:#618eff}[class*=authing-] a:active{color:#254cd9}[class*=authing-] a:active,[class*=authing-] a:focus,[class*=authing-] a:hover{text-decoration:none;outline:0}[class*=authing-] a[disabled]{color:rgba(0,0,0,.25);cursor:not-allowed;pointer-events:none}[class*=authing-] code,[class*=authing-] kbd,[class*=authing-] pre,[class*=authing-] samp{font-size:1em;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}[class*=authing-] pre{margin-top:0;margin-bottom:1em;overflow:auto}[class*=authing-] figure{margin:0 0 1em}[class*=authing-] img{vertical-align:middle;border-style:none}[class*=authing-] svg:not(:root){overflow:hidden}[class*=authing-] [role=button],[class*=authing-] a,[class*=authing-] area,[class*=authing-] button,[class*=authing-] input:not([type=range]),[class*=authing-] label,[class*=authing-] select,[class*=authing-] summary,[class*=authing-] textarea{touch-action:manipulation}[class*=authing-] table{border-collapse:collapse}[class*=authing-] caption{padding-top:.75em;padding-bottom:.3em;color:rgba(0,0,0,.45);text-align:left;caption-side:bottom}[class*=authing-] th{text-align:inherit}[class*=authing-] button,[class*=authing-] input,[class*=authing-] optgroup,[class*=authing-] select,[class*=authing-] textarea{margin:0;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}[class*=authing-] button,[class*=authing-] input{overflow:visible}[class*=authing-] button,[class*=authing-] select{text-transform:none}[class*=authing-] [type=reset],[class*=authing-] [type=submit],[class*=authing-] button,[class*=authing-] html [type=button]{-webkit-appearance:button}[class*=authing-] [type=button]::-moz-focus-inner,[class*=authing-] [type=reset]::-moz-focus-inner,[class*=authing-] [type=submit]::-moz-focus-inner,[class*=authing-] button::-moz-focus-inner{padding:0;border-style:none}[class*=authing-] input[type=checkbox],[class*=authing-] input[type=radio]{box-sizing:border-box;padding:0}[class*=authing-] input[type=date],[class*=authing-] input[type=datetime-local],[class*=authing-] input[type=month],[class*=authing-] input[type=time]{-webkit-appearance:listbox}[class*=authing-] textarea{overflow:auto;resize:vertical}[class*=authing-] fieldset{min-width:0;margin:0;padding:0;border:0}[class*=authing-] legend{display:block;width:100%;max-width:100%;margin-bottom:.5em;padding:0;color:inherit;font-size:1.5em;line-height:inherit;white-space:normal}[class*=authing-] progress{vertical-align:baseline}[class*=authing-] [type=number]::-webkit-inner-spin-button,[class*=authing-] [type=number]::-webkit-outer-spin-button{height:auto}[class*=authing-] [type=search]{outline-offset:-2px;-webkit-appearance:none}[class*=authing-] [type=search]::-webkit-search-cancel-button,[class*=authing-] [type=search]::-webkit-search-decoration{-webkit-appearance:none}[class*=authing-] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}[class*=authing-] output{display:inline-block}[class*=authing-] summary{display:list-item}[class*=authing-] template{display:none}[class*=authing-] [hidden]{display:none!important}[class*=authing-] mark{padding:.2em;background-color:#feffe6}[class*=authing-] ::selection{color:#fff;background:#396aff}[class*=authing-] .clearfix:before{display:table;content:""}[class*=authing-] .clearfix:after{display:table;clear:both;content:""}[class*=authing-].authing-g2-render-module{--sidePadding:38px;--containerWidth:456px}[class*=authing-].authing-g2-render-module-modal{--containerWidth:456px}@media only screen and (max-width:450px){[class*=authing-].authing-g2-render-module{--sidePadding:8px;--containerWidth:100%}[class*=authing-].authing-g2-render-module-modal{--containerWidth:100%}}.g2-view-container{font-family:sans-serif;box-shadow:0 0 60px rgba(84,89,104,.05);background:#fff;display:flex;flex-direction:column;width:var(--containerWidth);min-height:610px;box-sizing:border-box;padding:16px 16px 32px;border-radius:8px;position:relative}.g2-view-container .none{display:none}.g2-view-container .g2-view-back{margin-top:26px;padding-left:38px;cursor:pointer;font-size:14px;color:#878a95}.g2-view-container .g2-view-back .g2-icon{margin-right:8px}.g2-view-container .g2-view-header{-webkit-user-select:none;-ms-user-select:none;user-select:none;padding:44px var(--sidePadding) 0;margin-bottom:24px}.g2-view-container .g2-view-header .icon{width:48px;height:48px;border-radius:4px;margin-bottom:8px}.g2-view-container .g2-view-header .title{font-weight:600;font-size:24px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.g2-view-container .g2-view-header .title-explain{font-weight:300;font-size:14px;color:#545968}.g2-view-container .g2-view-tabs{padding:0 var(--sidePadding)}.g2-view-container .g2-view-tabs [class*=authing-].authing-ant-tabs-tab{color:#878a95}.g2-view-container .g2-view-tabs [class*=authing-].authing-ant-tabs-tab:hover{color:#282d3c}.g2-view-container [class*=authing-].authing-g2-submit-button{width:calc(100% - 4px);border-radius:4px;height:42px;margin:0 2px}.g2-view-container [class*=authing-].authing-g2-submit-button.shaking{animation:shake .82s cubic-bezier(.36,.07,.19,.97) both}@keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}[class*=authing-].authing-g2-button-group{background:#eff2f6;border-radius:8px;padding:4px 2px;margin-bottom:16px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}[class*=authing-].authing-g2-button-group .authing-ant-radio-button-wrapper{margin:0 2px;border-radius:8px;color:#545968;cursor:pointer;border:none;background:none;height:auto}[class*=authing-].authing-g2-button-group .authing-ant-radio-button-wrapper.authing-ant-radio-button-wrapper-checked{color:#396aff;background:#fff}[class*=authing-].authing-g2-button-group .authing-ant-radio-button-wrapper:not(:first-child):before{display:none}[class*=authing-].authing-g2-input-form{padding:0 2px;margin-bottom:16px}[class*=authing-].authing-g2-input-form.submit-form{margin-top:32px}[class*=authing-].authing-g2-input-form .label-title{padding:0 0 8px}[class*=authing-].authing-g2-input-form .authing-g2-select{border:1px solid #f5f6f7;height:46px;border-radius:4px}[class*=authing-].authing-g2-input-form .authing-g2-select .authing-ant-select-selector{height:100%!important;border-color:#f5f6f7!important;background-color:#f5f6f7!important}[class*=authing-].authing-g2-input-form .authing-g2-select .authing-ant-select-selector .authing-ant-select-selection-item{line-height:42px}[class*=authing-].authing-g2-input-form .authing-g2-select .authing-ant-select-selector:hover{border-color:#eeeff1!important;background-color:#eeeff1!important}[class*=authing-].authing-g2-input{border:1px solid #f5f6f7;height:46px;border-radius:4px;background:#f5f6f7}[class*=authing-].authing-g2-input:hover{background-color:#eeeff1}[class*=authing-].authing-g2-input:focus{background:#fff!important;border-color:#618eff}[class*=authing-].authing-g2-input input{height:0;background-color:#f5f6f7;padding:1em .5em!important;background-clip:content-box!important}[class*=authing-].authing-g2-input input::-webkit-input-placeholder{color:#a7a7a7}[class*=authing-].authing-g2-input input::-webkit-input-placeholder,[class*=authing-].authing-g2-input input::placeholder{color:#a7a7a7}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper:hover{background:#eeeff1;border-color:#618eff}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper:hover .authing-ant-input{background:#eeeff1}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper-focused{background:#fff!important;border-color:#618eff}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper-focused input{height:0;padding:1em .5em!important;background-clip:content-box!important}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper-focused input::-webkit-input-placeholder{color:#a7a7a7}[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper-focused input::-webkit-input-placeholder,[class*=authing-].authing-g2-input.authing-ant-input-affix-wrapper-focused input::placeholder{color:#a7a7a7}[class*=authing-].authing-g2-input.add-after{border:none}[class*=authing-].authing-g2-input.add-after .authing-ant-input-group .authing-ant-input,[class*=authing-].authing-g2-input.add-after .authing-ant-input-group .authing-ant-input-group-addon{border-radius:4px;height:46px}[class*=authing-].authing-g2-input.authing-ant-input-number{width:100%}[class*=authing-].authing-g2-input.authing-ant-input-number input{padding:1.4em .5em!important}[class*=authing-].authing-g2-input.authing-ant-input-number .authing-ant-input-number-handler-wrap{display:none}[class*=authing-].authing-g2-input .g2-captcha-code-image{min-width:100px}.g2-graphic-verify-code{display:flex;justify-content:space-between}.g2-graphic-verify-code [class*=authing-].authing-ant-input{width:55%}.g2-graphic-verify-code .g2-captcha-code-image{min-width:100px;border-radius:4px;border:1px solid #eff2f6!important}[class*=authing-].authing-ant-form-item-has-error .authing-ant-input-affix-wrapper-focused,[class*=authing-].authing-ant-form-item-has-error .authing-ant-input-affix-wrapper:hover{border-color:#ff4d4f!important}[class*=authing-].authing-g2-send-code{color:#396aff;cursor:pointer}[class*=authing-].authing-g2-send-code.sending{cursor:not-allowed;-webkit-filter:opacity(.5);filter:opacity(.5)}.g2-tips-line{display:flex;font-size:14px;padding:0 var(--sidePadding);height:22px}.g2-tips-line .link-like{color:#396aff;cursor:pointer;transition:all .3s}.g2-tips-line .link-like:hover{color:#557fff}.g2-tips-line .link-like:active{color:#254cd9}.g2-tips-line .gray{color:#999}.g2-tips-line .back-to-login,.g2-tips-line .go-to-register{margin-left:auto}.g2-tips-line .touch-tip{color:#d4d6dc;cursor:pointer}.g2-tips-line .touch-tip:hover{color:#878a95}.g2-init-setting-loading{width:var(--containerWidth);min-height:610px;display:flex;justify-content:center;align-items:center;box-shadow:0 0 60px rgba(84,89,104,.05)}.g2-questions [class*=authing-].authing-ant-upload-list-picture-card-container{height:56px;width:56px}.g2-questions [class*=authing-].authing-ant-upload-list-picture-card-container .authing-ant-upload-list-item-list-type-picture-card{padding:4px}.g2-questions [class*=authing-].authing-ant-upload-select-picture-card{height:56px;width:56px;border:none;background:#f5f6f7;transition:all .2s}.g2-questions [class*=authing-].authing-ant-upload-select-picture-card:hover{background:#eeeff1}.g2-questions-send-success-page{display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:610px}.g2-questions-send-success-page .plate{margin-bottom:14px}.g2-questions-send-success-page .title{color:#282d3c;font-weight:500;font-size:16px;margin-bottom:10px}.g2-questions-send-success-page .message{font-size:14px;color:#545968;margin-bottom:32px;text-align:center}.g2-questions-send-success-page .timer-tip{font-size:14px;color:#545968;margin-top:12px}.g2-change-language-container{margin:auto 0 20px;padding-top:10px;text-align:center}.g2-change-language-container .g2-change-language-button{-webkit-user-select:none;-ms-user-select:none;user-select:none;font-size:14px;color:#878a95;cursor:pointer;margin:auto;transition:all .2s}.g2-change-language-container .g2-change-language-button:hover{color:#282d3c}.g2-change-language-container .g2-change-language-button .g2-change-language-text{margin-left:5px}[class*=authing-].authing-g2-render-module-modal{width:var(--containerWidth)}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-content{width:var(--containerWidth);border-radius:8px}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-body{padding:0}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-close{left:0;border-radius:4px;transform:scale(.5);color:#d4d6dc;transition:all .2s;width:56px;height:56px}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-close:hover{background:#eeeff1;color:#878a95}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-close .g2-modal-close{font-size:36px;margin-top:10px}[class*=authing-].authing-g2-render-module-modal .authing-ant-modal-footer{display:none}.g2-send-code-input-col input::-webkit-inner-spin-button,.g2-send-code-input-col input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.g2-send-code-input-col input[type=number]{-moz-appearance:textfield}[class*=authing-].authing-icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor}.g2-error-content{display:flex;flex-direction:column;align-items:center;margin:auto 0}.g2-error-content span{margin-top:33px;color:#545968;font-size:14px}
|
|
2
|
-
/*# sourceMappingURL=main.779f221a.chunk.css.map */
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack://components/ImagePro/styles.less","webpack://components/SendCode/style.less","webpack://components/IconFont/style.less","webpack://components/Login/socialLogin/style.less","webpack://components/Login/styles.less","webpack://components/MFA/VerifyCodeInput/style.less","webpack://components/MFA/mfaMethods/style.less","webpack://components/MFA/styles.less","webpack://components/Register/components/Agreements/style.less","webpack://components/DownloadAuthenticator/styles.less","webpack://components/BindTotp/styles.less","webpack://components/CompleteInfo/styles.less","webpack://components/RecoveryCode/style.less","webpack://components/Guard/styles.less","webpack://../node_modules/antd/lib/style/mixins/size.less","webpack://../node_modules/antd/lib/style/core/global.less","webpack://../node_modules/antd/lib/style/mixins/clearfix.less","webpack://components/AuthingGuard/IconFont/style.less","webpack://components/Error/styles.less"],"names":[],"mappings":"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","file":"main.779f221a.chunk.css","sourcesContent":[".g2-base-image-background-animation {\n // .backgroundAnimation {\n background: linear-gradient(60deg, #888888, #cecece, #dfdfdf, #f0f0f0);\n animation: gradientBG 3s ease infinite;\n background-size: 400% 400%;\n}\n\n@keyframes gradientBG {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n 100% {\n background-position: 0% 50%;\n }\n}\n\n.g2-base-imagepro-container {\n border-radius: 4px;\n display: inline-block;\n user-select: none;\n &.loaded {\n background: none;\n .imagePro {\n opacity: 1;\n }\n }\n &.unload {\n .imagePro {\n opacity: 0;\n }\n }\n}\n.g2-base-imagepro {\n // 先屏蔽这个动画,怪怪的\n // transition: 0.2s all;\n object-fit: cover;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".authing-g2-send-code-btn {\n height: 46px;\n width: 100%;\n border: 1px solid #d4d6dc;\n border-radius: 4px;\n}\n\n.authing-g2-send-code-btn:hover {\n background: rgba(57, 106, 255, 0.1);\n}\n\n.authing-g2-send-code-btn:focus {\n outline: none;\n}\n\n.authing-g2-send-code-btn[disabled] {\n cursor: not-allowed;\n filter: opacity(0.5);\n}\n\n@media only screen and (max-width: 719px) {\n .authing-g2-send-code-btn {\n font-size: 14px;\n }\n}\n\n.g2-loading-btn-center {\n .authing-ant-btn-loading-icon .anticon {\n padding-right: 0;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-icon {\n width: 1em;\n height: 1em;\n vertical-align: -0.15em;\n fill: currentColor;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-guard-full-width-space {\n width: 100%;\n}\n\n.no-login-methods {\n padding: 38px;\n}\n\n.g2-guard-third-login-btn {\n display: flex !important;\n\n border: none !important;\n background-color: #f5f6f7 !important;\n border-radius: 4px !important;\n color: #282d3c !important;\n font-size: 14px !important;\n\n justify-content: center;\n align-items: center;\n}\n\n.g2-social-login-item {\n display: inline-flex;\n margin: 12px;\n width: 56px;\n height: 48px;\n background-color: #f5f6f7;\n border-radius: 4px;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n user-select: none;\n\n .g2-icon {\n font-size: 24px;\n transition: color 0.3s ease-in-out;\n }\n\n &:hover {\n background: rgba(84, 89, 104, 0.2);\n }\n}\n\n.g2-social-login-title {\n text-align: center;\n font-size: 14px;\n color: #c8c9cc;\n}\n\n.g2-social-login-title::before,\n.g2-social-login-title::after {\n content: '——';\n color: #eeeeee;\n margin: 0 11px;\n}\n\n.g2-social-login-list {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n padding: 0 35px;\n}\n\n.authing-ant-avatar > img {\n display: block;\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-qrcode-switch {\n position: absolute;\n display: flex;\n right: 16px;\n\n .switch-text {\n display: flex;\n justify-content: center;\n align-items: center;\n background: rgba(84, 89, 104, 0.1);\n height: 26px;\n margin-right: 4px;\n font-size: 12px;\n padding: 0 12px;\n border-radius: 4px;\n color: #545968;\n }\n .switch-img {\n &:hover {\n .imgae-mask {\n border-width: 0;\n right: 50px;\n top: 50px;\n }\n }\n }\n .imgae-mask {\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 50px 0 0 50px;\n border-color: transparent transparent transparent #fff;\n position: absolute;\n right: 0;\n top: 0;\n transition: 0.2s all;\n }\n .qrcode-switch-image {\n // width: 50px;\n // height: 50px;\n font-size: 50px;\n color: #396aff;\n cursor: pointer;\n }\n}\n\n.authing-g2-login-app-qrcode {\n min-height: 288px;\n height: 300px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".authing-g2-code-input-item {\n text-align: center;\n width: 40px;\n min-width: 40px;\n min-height: 40px;\n height: 40px;\n line-height: 40px;\n background-color: #f5f6f7;\n border: unset;\n border-radius: 4px;\n\n &:not(:first-child) {\n margin-left: 18px;\n }\n input {\n text-align: center;\n }\n}\n.authing-g2-code-input-divider {\n width: 14px;\n min-width: 14px;\n max-width: 14px;\n margin-left: 18px;\n}\n.authing-g2-code-input {\n display: flex;\n align-items: center;\n}\n\n.authing-ant-form-item-has-error {\n .authing-g2-code-input-item {\n background-color: #f5f6f7;\n border: 1px solid #ff4d4f;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-mfa-method {\n padding: 0 38px;\n}\n\n.g2-mfa-method-title {\n text-align: center;\n font-size: 14px;\n color: #c8c9cc;\n margin-bottom: 8px;\n width: 100%;\n}\n\n.g2-mfa-method-title::before,\n.g2-mfa-method-title::after {\n content: '——';\n color: #eeeeee;\n margin: 0 11px;\n}\n\n.g2-guard-mfa-methods-btn {\n border: none !important;\n background-color: #f5f6f7 !important;\n border-radius: 4px !important;\n color: #282d3c !important;\n font-size: 14px !important;\n height: 49px !important;\n margin-top: 8px !important;\n width: 100%;\n\n justify-content: center;\n align-items: center;\n\n font-size: 14px;\n\n .g2-icon {\n font-size: 16px;\n margin-right: 8px;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".authing-g2-mfa-title {\n color: #282d3c;\n font-size: 18px;\n font-weight: 600;\n text-align: center;\n margin-bottom: 8px;\n margin-top: 40px;\n}\n\n.authing-g2-mfa-tips {\n font-size: 14px;\n color: #545968;\n text-align: center;\n margin-bottom: 24px;\n}\n\n.g2-mfa-content {\n margin: 0 38px;\n\n .g2-mfa-submit-button {\n margin-top: 32px !important;\n }\n\n .bind-totp {\n margin-top: 80px !important;\n }\n\n .authing-ant-form-item-control-input-content {\n display: flex;\n justify-content: center;\n }\n\n .g2-mfa-totp-verify-input {\n text-align: center;\n .authing-code-input-item {\n &:not(:first-child) {\n margin-left: 14px;\n }\n }\n }\n\n .authing-ant-form-horizontal {\n display: flex;\n justify-content: center;\n flex-direction: column;\n }\n\n .g2-mfa-face-image {\n margin: 0px auto;\n display: block;\n margin-bottom: 24px;\n }\n .g2-mfa-face-identifying {\n display: flex;\n justify-content: center;\n align-items: center;\n\n .video-round {\n width: 210px;\n height: 210px;\n border-radius: 50%;\n vertical-align: middle;\n }\n .mesh {\n z-index: 100;\n cursor: pointer;\n user-select: none;\n color: white;\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n background: rgba(0, 0, 0, 0.4);\n }\n .ring {\n width: 240px;\n height: 240px;\n position: absolute;\n transform: rotate(270deg);\n }\n }\n}\n.svg-circle-bg {\n stroke-width: 4;\n // stroke: rgba(255, 161, 39, 1);\n}\n.svg-circle-running {\n stroke-width: 4;\n transition: all 0.2s linear;\n stroke: #396aff;\n stroke-linecap: round;\n}\n\n.g2-mfa-verifyCode-formItem {\n .authing-ant-form-item-explain-error {\n display: flex;\n justify-content: center;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".authing-agreements {\n margin-top: 20px;\n margin-bottom: 20px;\n &.authing-agreements-error {\n .authing-agreements-item-invalid {\n color: #ff4d4f;\n a {\n color: #ff4d4f;\n }\n :global(.ant-checkbox-inner) {\n border-color: #ff4d4f;\n }\n }\n }\n}\n\n.authing-agreements-item {\n color: #999999;\n user-select: none;\n cursor: pointer;\n font-size: 12px;\n &:not(:first-child) {\n margin-top: 4px;\n }\n p {\n margin-bottom: 0;\n display: inline-block;\n }\n}\n\n.authing-agreements-checkbox {\n margin-bottom: 2px;\n :global(.ant-checkbox-inner) {\n width: 14px;\n height: 14px;\n &::after {\n left: 20%;\n }\n }\n}\n\n.authing-agreements-item-content {\n line-height: 23px;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-view-container-totp-dl {\n width: 900px;\n padding: 0;\n}\n.g2-mfa-totp-title {\n width: 100%;\n height: 54px;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 16px;\n color: #293350;\n border-bottom: 1px solid #eaebee;\n margin-bottom: 54px;\n}\n.g2-mfa-totp-download-tabs {\n margin-top: 30px;\n}\n\n.g2-mfa-download-at-tab {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin-top: 15px;\n\n .g2-mfa-totp-download-subtitle {\n color: #545968;\n }\n\n .g2-mfa-totp-download-qrcode-item {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n margin-top: 35px;\n\n .g2-mfa-totp-download-image {\n width: 130px;\n height: 130px;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0px 0px 30px rgba(84, 89, 104, 0.15);\n border-radius: 4px;\n }\n\n .g2-mfa-totp-download-qrcode-text {\n margin-top: 8px;\n color: #545968;\n }\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-mfa-bindTotp {\n display: flex;\n flex-direction: column;\n align-items: center;\n height: 100%;\n\n .g2-mfa-bindTotp-copySecret {\n width: 100%;\n height: 48px;\n display: flex;\n justify-content: center;\n align-items: center;\n background: #f5f6f7;\n border-radius: 4px;\n\n .authing-ant-typography {\n margin: 0;\n\n svg {\n color: #878a95 !important;\n margin-left: 30px;\n }\n }\n }\n .g2-mfa-bindTotp-secretSave {\n margin-top: 16px;\n }\n\n .g2-mfa-submit-button {\n margin-top: 80px !important;\n }\n\n .g2-mfa-bindTotp-qrcode {\n box-shadow: 0px 0px 30px rgba(84, 89, 104, 0.15);\n border-radius: 4px;\n }\n\n .g2-mfa-bindTotp-securityCode-form {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n .g2-mfa-submit-button {\n margin-top: 64px !important;\n }\n\n .g2-mfa-totp-verify-input {\n text-align: center;\n margin-bottom: 8px !important;\n margin-top: 40px !important;\n }\n\n p {\n color: #878a95;\n }\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-completeInfo-content {\n margin-bottom: 44px;\n}\n\n.g2-completeInfo-submit {\n margin-top: 30px !important;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-mfa-recovery-code {\n .authing-g2-mfa-title {\n margin-top: 92px;\n }\n\n .authing-g2-mfa-tips {\n margin-bottom: 52px;\n }\n\n .submit-form {\n margin-top: 64px !important;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;","@import '~antd/lib/style/mixins/index.less';\n\n*[class*='authing-'] {\n @import '~antd/lib/style/core/global.less';\n}\n\n.authing-g2-render-module {\n --sidePadding: 38px;\n --containerWidth: 456px;\n}\n.authing-g2-render-module-modal {\n --containerWidth: 456px;\n}\n\n@media only screen and (max-width: 450px) {\n .authing-g2-render-module {\n --sidePadding: 8px;\n --containerWidth: 100%;\n }\n .authing-g2-render-module-modal {\n --containerWidth: 100%;\n }\n}\n\n// 侵入 core 的样式代码,guard view 皮肤\n.g2-view-container {\n font-family: sans-serif;\n box-shadow: 0px 0px 60px rgba(84, 89, 104, 0.05);\n background: #ffffff;\n display: flex;\n flex-direction: column;\n width: var(--containerWidth);\n min-height: 610px;\n box-sizing: border-box;\n padding: 16px;\n padding-bottom: 32px;\n border-radius: 8px;\n position: relative;\n .none {\n display: none;\n }\n .g2-view-back {\n margin-top: 26px;\n padding-left: 38px;\n cursor: pointer;\n font-size: 14px;\n color: #878a95;\n .g2-icon {\n margin-right: 8px;\n }\n }\n .g2-view-header {\n user-select: none;\n padding: 44px var(--sidePadding) 0;\n .icon {\n width: 48px;\n height: 48px;\n border-radius: 4px;\n margin-bottom: 8px;\n }\n .title {\n font-weight: 600;\n font-size: 24px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n .title-explain {\n font-weight: 300;\n font-size: 14px;\n color: #545968;\n }\n margin-bottom: 24px;\n }\n\n .g2-view-tabs {\n padding: 0 var(--sidePadding);\n\n .authing-ant-tabs-tab {\n color: #878a95;\n &:hover {\n color: #282d3c;\n }\n }\n }\n\n .authing-g2-submit-button {\n width: calc(100% - 4px);\n border-radius: 4px;\n height: 42px;\n margin: 0 2px;\n &.shaking {\n animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;\n }\n @keyframes shake {\n 10%,\n 90% {\n transform: translate3d(-1px, 0, 0);\n }\n\n 20%,\n 80% {\n transform: translate3d(2px, 0, 0);\n }\n\n 30%,\n 50%,\n 70% {\n transform: translate3d(-4px, 0, 0);\n }\n\n 40%,\n 60% {\n transform: translate3d(4px, 0, 0);\n }\n }\n }\n}\n\n.authing-g2-button-group {\n background: #eff2f6;\n border-radius: 8px;\n padding: 4px 2px;\n margin-bottom: 16px;\n width: fit-content;\n\n .authing-ant-radio-button-wrapper {\n margin: 0 2px;\n border-radius: 8px;\n color: #545968;\n cursor: pointer;\n border: none;\n background: none;\n height: auto;\n &.authing-ant-radio-button-wrapper-checked {\n color: #396aff;\n background: #ffffff;\n }\n &:not(:first-child)::before {\n display: none;\n }\n }\n}\n\n.authing-g2-input-form {\n padding: 0 2px;\n margin-bottom: 16px;\n &.submit-form {\n margin-top: 32px;\n }\n .label-title {\n padding: 0 0 8px;\n }\n // .authing-ant-form-item-explain {\n // // display: none;\n // transition: 0.2s all;\n // position: absolute;\n // user-select: none;\n // background: white;\n // left: 10px;\n // top: -15px;\n // z-index: 100;\n // padding: 4px 8px;\n // border-radius: 4px;\n // box-shadow: #eeeff1;\n // }\n}\n.authing-g2-input-form {\n .authing-g2-select {\n border: 1px solid #f5f6f7;\n border-color: #f5f6f7;\n height: 46px;\n border-radius: 4px;\n .authing-ant-select-selector {\n height: 100% !important;\n border-color: #f5f6f7 !important;\n background-color: #f5f6f7 !important;\n .authing-ant-select-selection-item {\n line-height: 42px;\n }\n &:hover {\n border-color: #eeeff1 !important;\n background-color: #eeeff1 !important;\n }\n }\n }\n}\n\n.authing-g2-input {\n border: 1px solid #f5f6f7;\n height: 46px;\n border-radius: 4px;\n background: #f5f6f7;\n\n &:hover {\n background-color: #eeeff1;\n }\n &:focus {\n background: #ffffff !important;\n border-color: #618eff;\n }\n\n input {\n // 通过这个方式 hack 浏览器自动填充:\n // 自动填充的浏览器可以说罪恶滔天,钉死在 mdn 的耻辱柱上:https://developer.mozilla.org/en-US/docs/Web/CSS/:autofill\n // 下方的 focused 同样需要这样处理\n height: 0;\n background-color: #f5f6f7;\n padding: 1em 0.5em !important;\n background-clip: content-box !important;\n &::placeholder,\n &::-webkit-input-placeholder {\n color: #a7a7a7;\n }\n }\n\n // affix-wrapper 特殊处理 hover\n &.authing-ant-input-affix-wrapper:hover {\n border-color: #eeeff1;\n background: #eeeff1;\n border-color: #618eff;\n\n .authing-ant-input {\n background: #eeeff1;\n }\n }\n\n // focus\n &.authing-ant-input-affix-wrapper-focused {\n background: #ffffff !important;\n border-color: #618eff;\n input {\n height: 0;\n padding: 1em 0.5em !important;\n background-clip: content-box !important;\n &::placeholder,\n &::-webkit-input-placeholder {\n color: #a7a7a7;\n }\n }\n }\n\n // 适配图形验证码\n &.add-after {\n border: none;\n .authing-ant-input-group {\n .authing-ant-input,\n .authing-ant-input-group-addon {\n border-radius: 4px;\n height: 46px;\n }\n }\n }\n\n // 适配数字输入框\n &.authing-ant-input-number {\n width: 100%;\n input {\n padding: 1.4em 0.5em !important;\n }\n .authing-ant-input-number-handler-wrap {\n display: none;\n }\n }\n .g2-captcha-code-image {\n min-width: 100px;\n }\n}\n\n.g2-graphic-verify-code {\n display: flex;\n justify-content: space-between;\n\n .authing-ant-input {\n width: 55%;\n }\n\n .g2-captcha-code-image {\n min-width: 100px;\n border-radius: 4px;\n border: 1px solid #eff2f6 !important;\n }\n}\n\n// input error 的情况\n.authing-ant-form-item-has-error {\n .authing-ant-input-affix-wrapper:hover {\n border-color: #ff4d4f !important;\n }\n\n // focus\n .authing-ant-input-affix-wrapper-focused {\n border-color: #ff4d4f !important;\n }\n}\n\n.authing-g2-send-code {\n color: #396aff;\n cursor: pointer;\n &.sending {\n cursor: not-allowed;\n filter: opacity(0.5);\n }\n}\n\n.g2-tips-line {\n display: flex;\n font-size: 14px;\n padding: 0 var(--sidePadding);\n height: 22px;\n .link-like {\n color: #396aff;\n cursor: pointer;\n transition: all 0.3s;\n &:hover {\n color: #557fff;\n }\n &:active {\n color: #254cd9;\n }\n }\n .gray {\n color: #999;\n }\n .go-to-register {\n margin-left: auto;\n }\n .back-to-login {\n margin-left: auto;\n }\n .touch-tip {\n color: #d4d6dc;\n cursor: pointer;\n &:hover {\n color: #878a95;\n }\n }\n}\n.g2-init-setting-loading {\n width: var(--containerWidth);\n min-height: 610px;\n display: flex;\n justify-content: center;\n align-items: center;\n box-shadow: 0px 0px 60px rgba(84, 89, 104, 0.05);\n}\n\n.g2-questions {\n .authing-ant-upload-list-picture-card-container {\n height: 56px;\n width: 56px;\n\n .authing-ant-upload-list-item-list-type-picture-card {\n padding: 4px;\n }\n }\n // authing-ant-upload authing-ant-upload-select\n .authing-ant-upload-select-picture-card {\n height: 56px;\n width: 56px;\n border: none;\n background: #f5f6f7;\n transition: 0.2s all;\n &:hover {\n background: #eeeff1;\n }\n }\n}\n\n.g2-questions-send-success-page {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n min-height: 610px;\n .plate {\n margin-bottom: 14px;\n }\n .title {\n color: #282d3c;\n font-weight: 500;\n font-size: 16px;\n margin-bottom: 10px;\n }\n .message {\n font-size: 14px;\n color: #545968;\n margin-bottom: 32px;\n text-align: center;\n }\n .timer-tip {\n font-size: 14px;\n color: #545968;\n margin-top: 12px;\n }\n}\n\n.g2-change-language-container {\n margin: auto 0 20px;\n padding-top: 10px;\n text-align: center;\n .g2-change-language-button {\n user-select: none;\n font-size: 14px;\n color: #878a95;\n cursor: pointer;\n margin: auto;\n transition: 0.2s all;\n &:hover {\n color: #282d3c;\n }\n .g2-change-language-text {\n margin-left: 5px;\n }\n }\n}\n.authing-g2-render-module-modal {\n width: var(--containerWidth);\n .authing-ant-modal-content {\n width: var(--containerWidth);\n border-radius: 8px;\n }\n .authing-ant-modal-body {\n padding: 0;\n }\n .authing-ant-modal-close {\n left: 0;\n border-radius: 4px;\n transform: scale(0.5);\n color: #d4d6dc;\n transition: 0.2s all;\n width: 56px;\n height: 56px;\n &:hover {\n background: #eeeff1;\n color: #878a95;\n }\n\n .g2-modal-close {\n font-size: 36px;\n margin-top: 10px;\n }\n }\n .authing-ant-modal-footer {\n display: none;\n }\n}\n\n.g2-send-code-input-col {\n /* Chrome, Safari, Edge, Opera */\n input::-webkit-outer-spin-button,\n input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n\n /* Firefox */\n input[type='number'] {\n -moz-appearance: textfield;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;","// Sizing shortcuts\n\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n\n.square(@size) {\n .size(@size; @size);\n}\n","/* stylelint-disable at-rule-no-unknown */\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n// HTML & Body reset\n@{html-selector},\nbody {\n .square(100%);\n}\n\n// remove the clear button of a text input control in IE10+\ninput::-ms-clear,\ninput::-ms-reveal {\n display: none;\n}\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\n@{html-selector} {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: fade(@black, 0%); // 6\n}\n\n// IE10+ doesn't honor `<meta name=\"viewport\">` in some cases.\n@-ms-viewport {\n width: device-width;\n}\n\n// Body\n//\n// 1. remove the margin in all browsers.\n// 2. As a best practice, apply a default `body-background`.\n\nbody {\n margin: 0; // 1\n color: @text-color;\n font-size: @font-size-base;\n font-family: @font-family;\n font-variant: @font-variant-base;\n line-height: @line-height-base;\n background-color: @body-background; // 2\n font-feature-settings: @font-feature-settings-base;\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex='-1']:focus {\n outline: none !important;\n}\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n//\n// Typography\n//\n\n// remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin-top: 0;\n margin-bottom: 0.5em;\n color: @heading-color;\n font-weight: 500;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `em` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: 1em;\n}\n\n// Abbreviations\n//\n// 1. remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] {\n // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n border-bottom: 0; // 1\n cursor: help; // 3\n}\n\naddress {\n margin-bottom: 1em;\n font-style: normal;\n line-height: inherit;\n}\n\ninput[type='text'],\ninput[type='password'],\ninput[type='number'],\ntextarea {\n -webkit-appearance: none;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1em;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 500;\n}\n\ndd {\n margin-bottom: 0.5em;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1em;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\nsup {\n top: -0.5em;\n}\n\n//\n// Links\n//\n\na {\n color: @link-color;\n text-decoration: @link-decoration;\n background-color: transparent; // remove the gray background on active links in IE 10.\n outline: none;\n cursor: pointer;\n transition: color 0.3s;\n -webkit-text-decoration-skip: objects; // remove gaps in links underline in iOS 8+ and Safari 8+.\n\n &:hover {\n color: @link-hover-color;\n }\n\n &:active {\n color: @link-active-color;\n }\n\n &:active,\n &:hover {\n text-decoration: @link-hover-decoration;\n outline: 0;\n }\n\n // https://github.com/ant-design/ant-design/issues/22503\n &:focus {\n text-decoration: @link-focus-decoration;\n outline: @link-focus-outline;\n }\n\n &[disabled] {\n color: @disabled-color;\n cursor: not-allowed;\n pointer-events: none;\n }\n}\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n font-family: @code-family;\n}\n\npre {\n // remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `em`s\n margin-bottom: 1em;\n // Don't allow content to break outside\n overflow: auto;\n}\n\n//\n// Figures\n//\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1em;\n}\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.\n//\n// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11\n// DON'T remove the click delay when `<meta name=\"viewport\" content=\"width=device-width\">` is present.\n// However, they DO support emoving the click delay via `touch-action: manipulation`.\n// See:\n// * https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch\n// * http://caniuse.com/#feat=css-touch-action\n// * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay\n\na,\narea,\nbutton,\n[role='button'],\ninput:not([type='range']),\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: 0.75em;\n padding-bottom: 0.3em;\n color: @text-color-secondary;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `<td>` alignment by inheriting from the `<body>`, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n//\n// Forms\n//\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // remove the margin in Firefox and Safari\n color: inherit;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\n@{html-selector} [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type='button']::-moz-focus-inner,\n[type='reset']::-moz-focus-inner,\n[type='submit']::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type='radio'],\ninput[type='checkbox'] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. remove the padding in IE 10-\n}\n\ninput[type='date'],\ninput[type='time'],\ninput[type='datetime-local'],\ninput[type='month'] {\n // remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n margin: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n margin-bottom: 0.5em;\n padding: 0;\n color: inherit; // 2\n font-size: 1.5em;\n line-height: inherit;\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of incement and decement buttons in Chrome.\n[type='number']::-webkit-inner-spin-button,\n[type='number']::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type='search'] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type='search']::-webkit-search-cancel-button,\n[type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n\nmark {\n padding: 0.2em;\n background-color: @yellow-1;\n}\n\n::selection {\n color: @text-color-inverse;\n background: @text-selection-bg;\n}\n\n// Utility classes\n.clearfix {\n .clearfix();\n}\n","// mixins for clearfix\n// ------------------------\n.clearfix() {\n // https://github.com/ant-design/ant-design/issues/21301#issuecomment-583955229\n &::before {\n display: table;\n content: '';\n }\n &::after {\n // https://github.com/ant-design/ant-design/issues/21864\n display: table;\n clear: both;\n content: '';\n }\n}\n",".authing-icon {\n width: 1em;\n height: 1em;\n vertical-align: -0.15em;\n fill: currentColor;\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;",".g2-error-content {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: auto 0;\n\n span {\n margin-top: 33px;\n color: #545968;\n font-size: 14px;\n }\n}\n\n@primary-color: #396aff;@link-color: #396aff;@ant-prefix: authing-ant;"]}
|