@zscreate/form-component 1.1.649-test.1 → 1.1.649
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/dist/form-component.css +146 -110
- package/dist/form-component.umd.js +7541 -7176
- package/package.json +1 -1
package/dist/form-component.css
CHANGED
|
@@ -1574,50 +1574,121 @@ dd[data-v-f7c20cf8] {
|
|
|
1574
1574
|
color: #cccccc;
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
|
-
.
|
|
1577
|
+
.CodeMirror-hints {
|
|
1578
|
+
position: absolute;
|
|
1579
|
+
z-index: 10;
|
|
1580
|
+
overflow: hidden;
|
|
1581
|
+
list-style: none;
|
|
1582
|
+
|
|
1583
|
+
margin: 0;
|
|
1584
|
+
padding: 2px;
|
|
1585
|
+
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
1586
|
+
border-radius: 3px;
|
|
1587
|
+
border: 1px solid silver;
|
|
1588
|
+
|
|
1589
|
+
background: white;
|
|
1590
|
+
font-size: 90%;
|
|
1591
|
+
font-family: monospace;
|
|
1592
|
+
|
|
1593
|
+
max-height: 20em;
|
|
1594
|
+
overflow-y: auto;
|
|
1595
|
+
box-sizing: border-box;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.CodeMirror-hint {
|
|
1599
|
+
margin: 0;
|
|
1600
|
+
padding: 0 4px;
|
|
1601
|
+
border-radius: 2px;
|
|
1602
|
+
white-space: pre;
|
|
1603
|
+
color: black;
|
|
1604
|
+
cursor: pointer;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
li.CodeMirror-hint-active {
|
|
1608
|
+
background: #08f;
|
|
1609
|
+
color: white;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.option_row_header[data-v-0bed63c4] {
|
|
1578
1613
|
background: #eee;
|
|
1579
1614
|
text-align: center;
|
|
1580
1615
|
line-height: 45px;
|
|
1581
1616
|
}
|
|
1582
|
-
.option_row[data-v-
|
|
1617
|
+
.option_row[data-v-0bed63c4] {
|
|
1583
1618
|
border-left: 1px solid #eee;
|
|
1584
1619
|
}
|
|
1585
|
-
.option_row .ant-col[data-v-
|
|
1620
|
+
.option_row .ant-col[data-v-0bed63c4] {
|
|
1586
1621
|
border-right: 1px solid #eee;
|
|
1587
1622
|
border-bottom: 1px solid #eee;
|
|
1588
1623
|
text-align: left;
|
|
1589
1624
|
height: 180px;
|
|
1590
1625
|
}
|
|
1591
|
-
.option_row .ant-col[data-v-
|
|
1626
|
+
.option_row .ant-col[data-v-0bed63c4]:not(.code-col) {
|
|
1592
1627
|
line-height: 180px;
|
|
1593
1628
|
text-align: center;
|
|
1594
1629
|
}
|
|
1595
|
-
.no-data[data-v-
|
|
1630
|
+
.no-data[data-v-0bed63c4] {
|
|
1596
1631
|
border: 1px solid #eee;
|
|
1597
1632
|
line-height: 45px;
|
|
1598
1633
|
text-align: center;
|
|
1599
1634
|
cursor: pointer;
|
|
1600
1635
|
color: #ccc;
|
|
1601
1636
|
}
|
|
1602
|
-
.code[data-v-
|
|
1637
|
+
.code[data-v-0bed63c4] {
|
|
1603
1638
|
height: 180px;
|
|
1604
1639
|
width: 100%;
|
|
1605
1640
|
}
|
|
1606
|
-
.getTemp[data-v-
|
|
1641
|
+
.getTemp[data-v-0bed63c4] {
|
|
1607
1642
|
position: absolute;
|
|
1608
1643
|
right: -10px;
|
|
1609
1644
|
top: 45px;
|
|
1610
1645
|
cursor: pointer;
|
|
1611
1646
|
}
|
|
1612
|
-
.delete[data-v-
|
|
1647
|
+
.delete[data-v-0bed63c4] {
|
|
1613
1648
|
color: #ff0000;
|
|
1614
1649
|
}
|
|
1615
|
-
[data-v-
|
|
1650
|
+
[data-v-0bed63c4] .vue-codemirror {
|
|
1616
1651
|
height: 100%;
|
|
1617
1652
|
}
|
|
1618
|
-
[data-v-
|
|
1653
|
+
[data-v-0bed63c4] .CodeMirror {
|
|
1619
1654
|
height: 178px !important;
|
|
1620
1655
|
}
|
|
1656
|
+
[data-v-0bed63c4] .CodeMirror-hints {
|
|
1657
|
+
z-index: 999999 !important;
|
|
1658
|
+
max-height: 200px;
|
|
1659
|
+
overflow-y: auto;
|
|
1660
|
+
border-radius: 4px;
|
|
1661
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
1662
|
+
background: white !important;
|
|
1663
|
+
border: 1px solid #d9d9d9 !important;
|
|
1664
|
+
position: fixed !important;
|
|
1665
|
+
}
|
|
1666
|
+
[data-v-0bed63c4] .CodeMirror-hint {
|
|
1667
|
+
padding: 6px 12px;
|
|
1668
|
+
font-size: 13px;
|
|
1669
|
+
line-height: 1.5;
|
|
1670
|
+
border-radius: 2px;
|
|
1671
|
+
color: #333 !important;
|
|
1672
|
+
background: white !important;
|
|
1673
|
+
cursor: pointer;
|
|
1674
|
+
}
|
|
1675
|
+
[data-v-0bed63c4] .CodeMirror-hint:hover {
|
|
1676
|
+
background-color: #f5f5f5 !important;
|
|
1677
|
+
}
|
|
1678
|
+
[data-v-0bed63c4] .CodeMirror-hint-active {
|
|
1679
|
+
background-color: #1890ff !important;
|
|
1680
|
+
color: white !important;
|
|
1681
|
+
}
|
|
1682
|
+
[data-v-0bed63c4] .custom-hint-item {
|
|
1683
|
+
font-weight: 500;
|
|
1684
|
+
}
|
|
1685
|
+
[data-v-0bed63c4]:global(.CodeMirror-hints) {
|
|
1686
|
+
z-index: 999999 !important;
|
|
1687
|
+
position: fixed !important;
|
|
1688
|
+
background: white !important;
|
|
1689
|
+
border: 1px solid #d9d9d9 !important;
|
|
1690
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
|
|
1691
|
+
}
|
|
1621
1692
|
|
|
1622
1693
|
|
|
1623
1694
|
[data-v-dd940658] .ant-select-selection__rendered {
|
|
@@ -4889,46 +4960,46 @@ div {
|
|
|
4889
4960
|
align-items: center;
|
|
4890
4961
|
}
|
|
4891
4962
|
|
|
4892
|
-
.t-border[data-v-
|
|
4963
|
+
.t-border[data-v-6be0a318] {
|
|
4893
4964
|
border-right: 1px solid #333;
|
|
4894
4965
|
border-bottom: 1px solid #333;
|
|
4895
4966
|
}
|
|
4896
|
-
[data-v-
|
|
4967
|
+
[data-v-6be0a318] * {
|
|
4897
4968
|
font-size: var(--paperFontSize);
|
|
4898
4969
|
}
|
|
4899
|
-
[data-v-
|
|
4970
|
+
[data-v-6be0a318] .custom_form_item {
|
|
4900
4971
|
height: -moz-fit-content;
|
|
4901
4972
|
height: fit-content;
|
|
4902
4973
|
}
|
|
4903
|
-
.save-pdf[data-v-
|
|
4974
|
+
.save-pdf[data-v-6be0a318] .ant-input {
|
|
4904
4975
|
border: none !important;
|
|
4905
4976
|
}
|
|
4906
|
-
.save-pdf[data-v-
|
|
4977
|
+
.save-pdf[data-v-6be0a318] .ant-select-selection {
|
|
4907
4978
|
border: none !important;
|
|
4908
4979
|
}
|
|
4909
|
-
.save-pdf[data-v-
|
|
4980
|
+
.save-pdf[data-v-6be0a318] .ant-select-arrow svg {
|
|
4910
4981
|
display: none;
|
|
4911
4982
|
}
|
|
4912
|
-
.save-pdf[data-v-
|
|
4983
|
+
.save-pdf[data-v-6be0a318] .ant-upload.ant-upload-select-picture-card {
|
|
4913
4984
|
display: none;
|
|
4914
4985
|
}
|
|
4915
|
-
.save-pdf[data-v-
|
|
4986
|
+
.save-pdf[data-v-6be0a318] .anticon svg {
|
|
4916
4987
|
display: none;
|
|
4917
4988
|
}
|
|
4918
|
-
.save-pdf[data-v-
|
|
4989
|
+
.save-pdf[data-v-6be0a318] .ant-time-picker-input {
|
|
4919
4990
|
border: none !important;
|
|
4920
4991
|
}
|
|
4921
|
-
.save-pdf[data-v-
|
|
4992
|
+
.save-pdf[data-v-6be0a318] .ant-upload.ant-upload-select {
|
|
4922
4993
|
display: none;
|
|
4923
4994
|
}
|
|
4924
4995
|
/**打印非固定高度标签 高度不确定bug**/
|
|
4925
|
-
.computed-wrap[data-v-
|
|
4996
|
+
.computed-wrap[data-v-6be0a318] {
|
|
4926
4997
|
background: #f5f5f5;
|
|
4927
4998
|
}
|
|
4928
|
-
.computed-wrap .item[data-v-
|
|
4999
|
+
.computed-wrap .item[data-v-6be0a318] {
|
|
4929
5000
|
display: flex;
|
|
4930
5001
|
}
|
|
4931
|
-
.computed-wrap .item > div[data-v-
|
|
5002
|
+
.computed-wrap .item > div[data-v-6be0a318] {
|
|
4932
5003
|
height: 35px;
|
|
4933
5004
|
line-height: 35px;
|
|
4934
5005
|
flex: 1;
|
|
@@ -4936,130 +5007,130 @@ div {
|
|
|
4936
5007
|
border-bottom: 1px solid #000;
|
|
4937
5008
|
text-align: center;
|
|
4938
5009
|
}
|
|
4939
|
-
.computed-wrap .item > div + div[data-v-
|
|
5010
|
+
.computed-wrap .item > div + div[data-v-6be0a318] {
|
|
4940
5011
|
flex: 2;
|
|
4941
5012
|
}
|
|
4942
|
-
.layout .paper[data-v-
|
|
5013
|
+
.layout .paper[data-v-6be0a318] {
|
|
4943
5014
|
position: relative;
|
|
4944
5015
|
}
|
|
4945
|
-
.layout .paper .form-title[data-v-
|
|
5016
|
+
.layout .paper .form-title[data-v-6be0a318] {
|
|
4946
5017
|
text-align: center;
|
|
4947
5018
|
font-weight: 600;
|
|
4948
5019
|
font-size: 16px;
|
|
4949
5020
|
min-height: 40px;
|
|
4950
5021
|
line-height: 30px;
|
|
4951
5022
|
}
|
|
4952
|
-
.row-item[data-v-
|
|
5023
|
+
.row-item[data-v-6be0a318] {
|
|
4953
5024
|
height: -moz-fit-content;
|
|
4954
5025
|
height: fit-content;
|
|
4955
5026
|
/**打印非固定高度标签 高度不确定bug**/
|
|
4956
5027
|
}
|
|
4957
|
-
.no-row-item[data-v-
|
|
5028
|
+
.no-row-item[data-v-6be0a318] {
|
|
4958
5029
|
border-right: none;
|
|
4959
5030
|
border-bottom: none;
|
|
4960
5031
|
}
|
|
4961
5032
|
/****page边框内的 ***/
|
|
4962
|
-
.page-border[data-v-
|
|
5033
|
+
.page-border[data-v-6be0a318] {
|
|
4963
5034
|
background: #fff;
|
|
4964
5035
|
box-sizing: border-box;
|
|
4965
5036
|
}
|
|
4966
|
-
.page-border .row-item[data-v-
|
|
5037
|
+
.page-border .row-item[data-v-6be0a318]:first-child {
|
|
4967
5038
|
border-top: 1px solid #000;
|
|
4968
5039
|
}
|
|
4969
|
-
.page-border .row-item[data-v-
|
|
5040
|
+
.page-border .row-item[data-v-6be0a318] {
|
|
4970
5041
|
border-left: 1px solid #000;
|
|
4971
5042
|
}
|
|
4972
|
-
.page-border .item-bottom[data-v-
|
|
5043
|
+
.page-border .item-bottom[data-v-6be0a318] {
|
|
4973
5044
|
border-bottom: 1px solid #000;
|
|
4974
5045
|
}
|
|
4975
|
-
.page-border .row-item[data-v-
|
|
5046
|
+
.page-border .row-item[data-v-6be0a318]:not(:last-child) {
|
|
4976
5047
|
position: relative;
|
|
4977
5048
|
}
|
|
4978
|
-
.page-border li.sortable-chosen[data-v-
|
|
5049
|
+
.page-border li.sortable-chosen[data-v-6be0a318] {
|
|
4979
5050
|
height: 2px !important;
|
|
4980
5051
|
overflow: hidden !important;
|
|
4981
5052
|
background: red !important;
|
|
4982
5053
|
}
|
|
4983
|
-
.page-border .ant-time-picker-panel[data-v-
|
|
5054
|
+
.page-border .ant-time-picker-panel[data-v-6be0a318] {
|
|
4984
5055
|
z-index: 200000 !important;
|
|
4985
5056
|
}
|
|
4986
|
-
.page-border .ant-calendar-picker-container[data-v-
|
|
5057
|
+
.page-border .ant-calendar-picker-container[data-v-6be0a318] {
|
|
4987
5058
|
z-index: 200000 !important;
|
|
4988
5059
|
}
|
|
4989
|
-
[data-v-
|
|
5060
|
+
[data-v-6be0a318] .ant-time-picker-panel {
|
|
4990
5061
|
z-index: 9999 !important;
|
|
4991
5062
|
}
|
|
4992
|
-
.ant-calendar-picker-container[data-v-
|
|
5063
|
+
.ant-calendar-picker-container[data-v-6be0a318] {
|
|
4993
5064
|
z-index: 200000 !important;
|
|
4994
5065
|
}
|
|
4995
|
-
[data-v-
|
|
5066
|
+
[data-v-6be0a318] .ant-form-item-children {
|
|
4996
5067
|
display: block;
|
|
4997
5068
|
}
|
|
4998
|
-
[data-v-
|
|
5069
|
+
[data-v-6be0a318] .ant-form-item {
|
|
4999
5070
|
width: 100%;
|
|
5000
5071
|
height: 100%;
|
|
5001
5072
|
margin-bottom: 0;
|
|
5002
5073
|
display: flex;
|
|
5003
5074
|
}
|
|
5004
|
-
[data-v-
|
|
5075
|
+
[data-v-6be0a318] .ant-form-item .is_required::before {
|
|
5005
5076
|
content: "*";
|
|
5006
5077
|
color: #f56c6c;
|
|
5007
5078
|
margin-right: 4px;
|
|
5008
5079
|
}
|
|
5009
|
-
[data-v-
|
|
5080
|
+
[data-v-6be0a318] .ant-form-item .ant-form-item-label {
|
|
5010
5081
|
border-right: 1px solid #000;
|
|
5011
5082
|
}
|
|
5012
|
-
[data-v-
|
|
5083
|
+
[data-v-6be0a318] .ant-form-item .ant-form-item-label label {
|
|
5013
5084
|
display: flex;
|
|
5014
5085
|
justify-content: center;
|
|
5015
5086
|
align-items: center;
|
|
5016
5087
|
height: 100%;
|
|
5017
5088
|
}
|
|
5018
|
-
[data-v-
|
|
5089
|
+
[data-v-6be0a318] .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
5019
5090
|
display: none;
|
|
5020
5091
|
}
|
|
5021
|
-
[data-v-
|
|
5092
|
+
[data-v-6be0a318] .ant-form-item .ant-form-item-control-wrapper {
|
|
5022
5093
|
display: flex;
|
|
5023
5094
|
align-items: center;
|
|
5024
5095
|
text-align: left;
|
|
5025
5096
|
}
|
|
5026
|
-
[data-v-
|
|
5097
|
+
[data-v-6be0a318] .ant-form-item .ant-form-item-control {
|
|
5027
5098
|
width: 98%;
|
|
5028
5099
|
margin: 0 auto;
|
|
5029
5100
|
}
|
|
5030
|
-
[data-v-
|
|
5101
|
+
[data-v-6be0a318] .ant-form-item .is_required::before {
|
|
5031
5102
|
content: "*";
|
|
5032
5103
|
color: #f56c6c;
|
|
5033
5104
|
margin-right: 4px;
|
|
5034
5105
|
}
|
|
5035
|
-
.row-table[data-v-
|
|
5106
|
+
.row-table[data-v-6be0a318] {
|
|
5036
5107
|
display: flex;
|
|
5037
5108
|
}
|
|
5038
|
-
.row-table[data-v-
|
|
5039
|
-
.row-table[data-v-
|
|
5109
|
+
.row-table[data-v-6be0a318] .ant-spin-container,
|
|
5110
|
+
.row-table[data-v-6be0a318] {
|
|
5040
5111
|
display: flex;
|
|
5041
5112
|
width: 100%;
|
|
5042
5113
|
}
|
|
5043
|
-
.row-table[data-v-
|
|
5044
|
-
.row-table .table-left[data-v-
|
|
5114
|
+
.row-table[data-v-6be0a318] .ant-spin-container .table-left,
|
|
5115
|
+
.row-table .table-left[data-v-6be0a318] {
|
|
5045
5116
|
width: 100px;
|
|
5046
5117
|
text-align: center;
|
|
5047
5118
|
border-right: 1px solid #333;
|
|
5048
5119
|
border-bottom: 1px solid #333;
|
|
5049
5120
|
position: relative;
|
|
5050
5121
|
}
|
|
5051
|
-
.row-table[data-v-
|
|
5052
|
-
.row-table .table-left p[data-v-
|
|
5122
|
+
.row-table[data-v-6be0a318] .ant-spin-container .table-left p,
|
|
5123
|
+
.row-table .table-left p[data-v-6be0a318] {
|
|
5053
5124
|
position: absolute;
|
|
5054
5125
|
top: 50%;
|
|
5055
5126
|
left: 50%;
|
|
5056
5127
|
transform: translate(-50%, -50%);
|
|
5057
5128
|
}
|
|
5058
|
-
.row-table[data-v-
|
|
5059
|
-
.row-table .table-right[data-v-
|
|
5129
|
+
.row-table[data-v-6be0a318] .ant-spin-container .table-right,
|
|
5130
|
+
.row-table .table-right[data-v-6be0a318] {
|
|
5060
5131
|
flex: 1;
|
|
5061
5132
|
}
|
|
5062
|
-
.table-content[data-v-
|
|
5133
|
+
.table-content[data-v-6be0a318] {
|
|
5063
5134
|
width: 100%;
|
|
5064
5135
|
height: 40px;
|
|
5065
5136
|
line-height: 40px;
|
|
@@ -5068,11 +5139,11 @@ div {
|
|
|
5068
5139
|
border-bottom: 1px solid #333;
|
|
5069
5140
|
border-right: 1px solid #333;
|
|
5070
5141
|
}
|
|
5071
|
-
.sub-table-col[data-v-
|
|
5142
|
+
.sub-table-col[data-v-6be0a318] {
|
|
5072
5143
|
display: flex;
|
|
5073
5144
|
box-sizing: border-box;
|
|
5074
5145
|
}
|
|
5075
|
-
.sub-table-col > span[data-v-
|
|
5146
|
+
.sub-table-col > span[data-v-6be0a318] {
|
|
5076
5147
|
flex: 2;
|
|
5077
5148
|
border-bottom: 1px solid #000;
|
|
5078
5149
|
border-right: 1px solid #000;
|
|
@@ -5080,34 +5151,34 @@ div {
|
|
|
5080
5151
|
line-height: 40px;
|
|
5081
5152
|
text-align: center;
|
|
5082
5153
|
}
|
|
5083
|
-
.sub-table-col > .last-one[data-v-
|
|
5154
|
+
.sub-table-col > .last-one[data-v-6be0a318] {
|
|
5084
5155
|
width: 87px;
|
|
5085
5156
|
flex: 0 0 87px;
|
|
5086
5157
|
border-right: 1px solid #333;
|
|
5087
5158
|
border-bottom: 1px solid #333;
|
|
5088
5159
|
}
|
|
5089
|
-
.sub-table-col-no-border > span[data-v-
|
|
5160
|
+
.sub-table-col-no-border > span[data-v-6be0a318] {
|
|
5090
5161
|
border: none;
|
|
5091
5162
|
height: auto;
|
|
5092
5163
|
width: 0;
|
|
5093
5164
|
}
|
|
5094
|
-
.sub-table-col-no-border > .sub-table-title[data-v-
|
|
5095
|
-
.sub-table-col-no-border > .sub-table-item[data-v-
|
|
5165
|
+
.sub-table-col-no-border > .sub-table-title[data-v-6be0a318]:last-child,
|
|
5166
|
+
.sub-table-col-no-border > .sub-table-item[data-v-6be0a318]:last-child {
|
|
5096
5167
|
border-right: none !important;
|
|
5097
5168
|
}
|
|
5098
|
-
.sub-table-col-no-border > .last-one[data-v-
|
|
5169
|
+
.sub-table-col-no-border > .last-one[data-v-6be0a318] {
|
|
5099
5170
|
width: 87px;
|
|
5100
5171
|
flex: 0 0 87px;
|
|
5101
5172
|
display: flex;
|
|
5102
5173
|
justify-content: center;
|
|
5103
5174
|
align-items: center;
|
|
5104
5175
|
}
|
|
5105
|
-
.pagiAfter + .row-item[data-v-
|
|
5176
|
+
.pagiAfter + .row-item[data-v-6be0a318] {
|
|
5106
5177
|
border-top-width: 1px;
|
|
5107
5178
|
border-top-style: solid;
|
|
5108
5179
|
}
|
|
5109
5180
|
/* 选择所有后面还有其他非.hiddenWidget的.row-item元素的.hasWidgetAfter */
|
|
5110
|
-
.row-item:not(:last-child) .hasWidgetAfter[data-v-
|
|
5181
|
+
.row-item:not(:last-child) .hasWidgetAfter[data-v-6be0a318] {
|
|
5111
5182
|
/* 为这些.hasWidgetAfter设置样式 */
|
|
5112
5183
|
width: calc(100% + 1px);
|
|
5113
5184
|
border-left-width: 1px;
|
|
@@ -5116,7 +5187,7 @@ div {
|
|
|
5116
5187
|
border-right-style: solid;
|
|
5117
5188
|
left: -1px;
|
|
5118
5189
|
}
|
|
5119
|
-
.row-item:not(:last-child):has(+ .row-item.hiddenWidget) .hasWidgetAfter[data-v-
|
|
5190
|
+
.row-item:not(:last-child):has(+ .row-item.hiddenWidget) .hasWidgetAfter[data-v-6be0a318] {
|
|
5120
5191
|
/* 为这些.hasWidgetAfter设置样式 */
|
|
5121
5192
|
width: calc(100% + 1px);
|
|
5122
5193
|
border-left: none;
|
|
@@ -5124,33 +5195,33 @@ div {
|
|
|
5124
5195
|
left: -1px;
|
|
5125
5196
|
}
|
|
5126
5197
|
/*****无border *****/
|
|
5127
|
-
.no-border .page-border[data-v-
|
|
5198
|
+
.no-border .page-border[data-v-6be0a318] {
|
|
5128
5199
|
border: none;
|
|
5129
5200
|
}
|
|
5130
|
-
.no-border .page-border .row-item[data-v-
|
|
5201
|
+
.no-border .page-border .row-item[data-v-6be0a318]:not(:last-child) {
|
|
5131
5202
|
border: none;
|
|
5132
5203
|
}
|
|
5133
|
-
.no-border .page-border[data-v-
|
|
5204
|
+
.no-border .page-border[data-v-6be0a318] .ant-form-item .ant-form-item-label {
|
|
5134
5205
|
border: none;
|
|
5135
5206
|
}
|
|
5136
|
-
.table_border[data-v-
|
|
5207
|
+
.table_border[data-v-6be0a318] {
|
|
5137
5208
|
border-bottom: 0;
|
|
5138
5209
|
border-right: 0;
|
|
5139
5210
|
}
|
|
5140
5211
|
/*****无border *****/
|
|
5141
|
-
[data-v-
|
|
5212
|
+
[data-v-6be0a318] .ant-form-item-children > div > p,[data-v-6be0a318] .ant-form-item-children > div > h1,[data-v-6be0a318] .ant-form-item-children > div > h2,[data-v-6be0a318] .ant-form-item-children > div > h3,[data-v-6be0a318] .ant-form-item-children > div > h4,[data-v-6be0a318] .ant-form-item-children > div > h5,[data-v-6be0a318] .ant-form-item-children > div > table /deep/ .ant-form-item-children > div > pre {
|
|
5142
5213
|
margin: 10px 0;
|
|
5143
5214
|
line-height: 1.5;
|
|
5144
5215
|
}
|
|
5145
|
-
[data-v-
|
|
5216
|
+
[data-v-6be0a318] .ant-spin-dot {
|
|
5146
5217
|
font-size: 20px !important;
|
|
5147
5218
|
}
|
|
5148
|
-
.form_skeleton[data-v-
|
|
5219
|
+
.form_skeleton[data-v-6be0a318] {
|
|
5149
5220
|
display: block;
|
|
5150
5221
|
width: 700px;
|
|
5151
5222
|
margin: 55px auto;
|
|
5152
5223
|
}
|
|
5153
|
-
.form_skeleton[data-v-
|
|
5224
|
+
.form_skeleton[data-v-6be0a318] .ant-skeleton-title {
|
|
5154
5225
|
margin: 0 auto;
|
|
5155
5226
|
}
|
|
5156
5227
|
|
|
@@ -8013,41 +8084,6 @@ div {
|
|
|
8013
8084
|
background: rgba(24, 144, 255, 0.6);
|
|
8014
8085
|
}
|
|
8015
8086
|
|
|
8016
|
-
.CodeMirror-hints {
|
|
8017
|
-
position: absolute;
|
|
8018
|
-
z-index: 10;
|
|
8019
|
-
overflow: hidden;
|
|
8020
|
-
list-style: none;
|
|
8021
|
-
|
|
8022
|
-
margin: 0;
|
|
8023
|
-
padding: 2px;
|
|
8024
|
-
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
8025
|
-
border-radius: 3px;
|
|
8026
|
-
border: 1px solid silver;
|
|
8027
|
-
|
|
8028
|
-
background: white;
|
|
8029
|
-
font-size: 90%;
|
|
8030
|
-
font-family: monospace;
|
|
8031
|
-
|
|
8032
|
-
max-height: 20em;
|
|
8033
|
-
overflow-y: auto;
|
|
8034
|
-
box-sizing: border-box;
|
|
8035
|
-
}
|
|
8036
|
-
|
|
8037
|
-
.CodeMirror-hint {
|
|
8038
|
-
margin: 0;
|
|
8039
|
-
padding: 0 4px;
|
|
8040
|
-
border-radius: 2px;
|
|
8041
|
-
white-space: pre;
|
|
8042
|
-
color: black;
|
|
8043
|
-
cursor: pointer;
|
|
8044
|
-
}
|
|
8045
|
-
|
|
8046
|
-
li.CodeMirror-hint-active {
|
|
8047
|
-
background: #08f;
|
|
8048
|
-
color: white;
|
|
8049
|
-
}
|
|
8050
|
-
|
|
8051
8087
|
.cm-s-eclipse span.cm-meta { color: #FF1717; }
|
|
8052
8088
|
.cm-s-eclipse span.cm-keyword { line-height: 1em; font-weight: bold; color: #7F0055; }
|
|
8053
8089
|
.cm-s-eclipse span.cm-atom { color: #219; }
|