This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

1
node_modules/ng-zorro-antd/qr-code/style/entry.less generated vendored Normal file
View File

@@ -0,0 +1 @@
@import './index.less';

31
node_modules/ng-zorro-antd/qr-code/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,31 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.ant-qrcode {
position: relative;
display: inline-block;
padding: 12px;
}
.ant-qrcode > canvas {
display: block;
}
.ant-qrcode-border {
border: 1px solid #f0f0f0;
border-radius: 2px;
}
.ant-qrcode-mask {
position: absolute;
top: 0;
right: 0;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
text-align: center;
background-color: rgba(255, 255, 255, 0.96);
}
.ant-qrcode-expired {
color: rgba(0, 0, 0, 0.85);
}

38
node_modules/ng-zorro-antd/qr-code/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,38 @@
@import '../../style/themes/index';
@import '../../style/mixins/index';
@qrcode-prefix-cls: ~'@{ant-prefix}-qrcode';
.@{qrcode-prefix-cls} {
position: relative;
display: inline-block;
padding: @padding-sm;
&>canvas {
display: block;
}
}
.@{qrcode-prefix-cls}-border {
border: @border-width-base @border-style-base @border-color-split;
border-radius: @border-radius-base;
}
.@{qrcode-prefix-cls}-mask {
position: absolute;
top: 0;
right: 0;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
text-align: center;
background-color: fade(@white, 96%);
}
.@{qrcode-prefix-cls}-expired {
color: fade(@black, 85%);
}

View File

@@ -0,0 +1 @@
.ant-qrcode{position:relative;display:inline-block;padding:12px}.ant-qrcode>canvas{display:block}.ant-qrcode-border{border:1px solid #f0f0f0;border-radius:2px}.ant-qrcode-mask{position:absolute;top:0;right:0;z-index:10;display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%;text-align:center;background-color:rgba(255,255,255,.96)}.ant-qrcode-expired{color:rgba(0,0,0,.85)}