Latest updates from IceHrmPro

This commit is contained in:
Thilina Pituwala
2020-05-20 18:47:29 +02:00
parent 60c92d7935
commit 7453a58aad
18012 changed files with 2089245 additions and 10173 deletions

2
web/node_modules/antd/es/result/style/css.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import '../../style/index.css';
import './index.css';

68
web/node_modules/antd/es/result/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,68 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-result {
padding: 48px 32px;
}
.ant-result-success .ant-result-icon > .anticon {
color: #52c41a;
}
.ant-result-error .ant-result-icon > .anticon {
color: #ff4d4f;
}
.ant-result-info .ant-result-icon > .anticon {
color: #1890ff;
}
.ant-result-warning .ant-result-icon > .anticon {
color: #faad14;
}
.ant-result-image {
width: 250px;
height: 295px;
margin: auto;
}
.ant-result-icon {
margin-bottom: 24px;
text-align: center;
}
.ant-result-icon > .anticon {
font-size: 72px;
}
.ant-result-title {
color: rgba(0, 0, 0, 0.85);
font-size: 24px;
line-height: 1.8;
text-align: center;
}
.ant-result-subtitle {
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
line-height: 1.6;
text-align: center;
}
.ant-result-extra {
margin-top: 32px;
text-align: center;
}
.ant-result-extra > * {
margin-right: 8px;
}
.ant-result-extra > *:last-child {
margin-right: 0;
}
.ant-result-content {
margin-top: 24px;
padding: 24px 40px;
background-color: #fafafa;
}
.ant-result-rtl {
direction: rtl;
}
.ant-result-rtl .ant-result-extra > * {
margin-right: 0;
margin-left: 8px;
}
.ant-result-rtl .ant-result-extra > *:last-child {
margin-left: 8px;
}

2
web/node_modules/antd/es/result/style/index.d.ts generated vendored Normal file
View File

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

2
web/node_modules/antd/es/result/style/index.js generated vendored Normal file
View File

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

74
web/node_modules/antd/es/result/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,74 @@
@import '../../style/themes/default';
@import '../../style/mixins/index';
@result-prefix-cls: ~'@{ant-prefix}-result';
.@{result-prefix-cls} {
padding: 48px 32px;
// status color
&-success &-icon > .anticon {
color: @success-color;
}
&-error &-icon > .anticon {
color: @error-color;
}
&-info &-icon > .anticon {
color: @info-color;
}
&-warning &-icon > .anticon {
color: @warning-color;
}
// Exception Status image
&-image {
width: 250px;
height: 295px;
margin: auto;
}
&-icon {
margin-bottom: 24px;
text-align: center;
> .anticon {
font-size: 72px;
}
}
&-title {
color: @heading-color;
font-size: 24px;
line-height: 1.8;
text-align: center;
}
&-subtitle {
color: @text-color-secondary;
font-size: 14px;
line-height: 1.6;
text-align: center;
}
&-extra {
margin-top: 32px;
text-align: center;
> * {
margin-right: 8px;
&:last-child {
margin-right: 0;
}
}
}
&-content {
margin-top: 24px;
padding: 24px 40px;
background-color: @background-color-light;
}
}
@import './rtl';

25
web/node_modules/antd/es/result/style/rtl.less generated vendored Normal file
View File

@@ -0,0 +1,25 @@
@import '../../style/themes/default';
@import '../../style/mixins/index';
@result-prefix-cls: ~'@{ant-prefix}-result';
.@{result-prefix-cls} {
&-rtl {
direction: rtl;
}
&-extra {
> * {
.@{result-prefix-cls}-rtl & {
margin-right: 0;
margin-left: 8px;
}
&:last-child {
.@{result-prefix-cls}-rtl & {
margin-left: 8px;
}
}
}
}
}