hoeditor-web 3.1.69 → 3.1.71
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/lib/hoeditor.css +29 -84
- package/lib/hoeditor.umd.js +462 -232
- package/lib/hoeditor.umd.min.js +4 -4
- package/package.json +1 -1
package/lib/hoeditor.css
CHANGED
|
@@ -14336,10 +14336,6 @@ legend {
|
|
|
14336
14336
|
-ms-flex-pack: distribute;
|
|
14337
14337
|
justify-content: space-around;
|
|
14338
14338
|
}
|
|
14339
|
-
.ho-comment-box-selected {
|
|
14340
|
-
-webkit-box-shadow: 1px -1px 3px -2px rgba(158, 161, 165, 0.4), 5px -5px 12px -6px rgba(158, 161, 165, 0.4);
|
|
14341
|
-
box-shadow: 1px -1px 3px -2px rgba(158, 161, 165, 0.4), 5px -5px 12px -6px rgba(158, 161, 165, 0.4);
|
|
14342
|
-
}
|
|
14343
14339
|
.edit-container {
|
|
14344
14340
|
display: -webkit-box;
|
|
14345
14341
|
display: -ms-flexbox;
|
|
@@ -14366,8 +14362,8 @@ legend {
|
|
|
14366
14362
|
transition: all 0.1s ease-in-out;
|
|
14367
14363
|
}
|
|
14368
14364
|
.edit-container .domcanvas-selected {
|
|
14369
|
-
-webkit-box-shadow:
|
|
14370
|
-
box-shadow:
|
|
14365
|
+
-webkit-box-shadow: 0px 2px 12px 0px #c7cacf;
|
|
14366
|
+
box-shadow: 0px 2px 12px 0px #c7cacf;
|
|
14371
14367
|
}
|
|
14372
14368
|
.edit-container .selectcanvas {
|
|
14373
14369
|
position: absolute;
|
|
@@ -14910,14 +14906,15 @@ legend {
|
|
|
14910
14906
|
background: #fff;
|
|
14911
14907
|
}
|
|
14912
14908
|
|
|
14913
|
-
.edit-container .ho-comment-
|
|
14914
|
-
-
|
|
14915
|
-
|
|
14916
|
-
|
|
14909
|
+
.edit-container .ho-comment-history-selected {
|
|
14910
|
+
z-index: 13;
|
|
14911
|
+
overflow-y: hidden;
|
|
14912
|
+
}
|
|
14913
|
+
.ho-history-box {
|
|
14917
14914
|
overflow-y: auto;
|
|
14918
|
-
|
|
14915
|
+
min-height: 100%;
|
|
14919
14916
|
}
|
|
14920
|
-
.ho-comment-line {
|
|
14917
|
+
.ho-history-box .ho-comment-line {
|
|
14921
14918
|
position: absolute;
|
|
14922
14919
|
z-index: 10;
|
|
14923
14920
|
height: 1px;
|
|
@@ -14927,15 +14924,19 @@ legend {
|
|
|
14927
14924
|
-webkit-transition: 0.6s ease-in-out;
|
|
14928
14925
|
transition: 0.6s ease-in-out;
|
|
14929
14926
|
}
|
|
14930
|
-
.ho-comment-item {
|
|
14927
|
+
.ho-history-box .ho-comment-item {
|
|
14931
14928
|
position: relative;
|
|
14932
|
-
|
|
14933
|
-
border:
|
|
14934
|
-
margin:
|
|
14935
|
-
background: #
|
|
14929
|
+
border: 1px solid #ccc;
|
|
14930
|
+
border-radius: 5px;
|
|
14931
|
+
margin: 10px;
|
|
14932
|
+
background: #fff;
|
|
14936
14933
|
padding: 0 10px 10px 10px;
|
|
14934
|
+
-webkit-transform: translateY(0);
|
|
14935
|
+
transform: translateY(0);
|
|
14936
|
+
-webkit-transition: all 0.18s ease-in-out;
|
|
14937
|
+
transition: all 0.18s ease-in-out;
|
|
14937
14938
|
}
|
|
14938
|
-
.ho-comment-item header {
|
|
14939
|
+
.ho-history-box .ho-comment-item header {
|
|
14939
14940
|
padding: 8px 0 8px 8px;
|
|
14940
14941
|
font-size: 12px;
|
|
14941
14942
|
display: -webkit-box;
|
|
@@ -14949,75 +14950,19 @@ legend {
|
|
|
14949
14950
|
-ms-flex-pack: justify;
|
|
14950
14951
|
justify-content: space-between;
|
|
14951
14952
|
}
|
|
14952
|
-
.ho-comment-item .comment-content {
|
|
14953
|
-
|
|
14953
|
+
.ho-history-box .ho-comment-item .comment-content {
|
|
14954
|
+
margin: 8px;
|
|
14954
14955
|
background: #fff;
|
|
14955
14956
|
font-size: 12px;
|
|
14956
14957
|
text-align: left;
|
|
14957
14958
|
}
|
|
14958
|
-
.ho-comment-item .comment-
|
|
14959
|
-
display: -webkit-box;
|
|
14960
|
-
display: -ms-flexbox;
|
|
14961
|
-
display: flex;
|
|
14962
|
-
-webkit-box-orient: horizontal;
|
|
14963
|
-
-webkit-box-direction: normal;
|
|
14964
|
-
-ms-flex-direction: row;
|
|
14965
|
-
flex-direction: row;
|
|
14966
|
-
}
|
|
14967
|
-
.ho-comment-item .comment-btn p:hover {
|
|
14968
|
-
cursor: pointer;
|
|
14969
|
-
}
|
|
14970
|
-
.ho-comment-item .comment-status {
|
|
14971
|
-
position: relative;
|
|
14972
|
-
}
|
|
14973
|
-
.ho-comment-item .comment-status .ant-checkbox-disabled + span {
|
|
14974
|
-
color: #000;
|
|
14975
|
-
font-size: 12px;
|
|
14976
|
-
}
|
|
14977
|
-
.ho-comment-item .comment-status .ant-checkbox + span {
|
|
14978
|
-
padding-left: 0;
|
|
14979
|
-
}
|
|
14980
|
-
.ho-comment-item .comment-status .ant-checkbox-disabled .ant-checkbox-inner,
|
|
14981
|
-
.ho-comment-item .comment-status .ant-checkbox-checked .ant-checkbox-inner {
|
|
14982
|
-
background-color: #00c130;
|
|
14983
|
-
}
|
|
14984
|
-
.ho-comment-item .comment-status .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after,
|
|
14985
|
-
.ho-comment-item .comment-status .ant-checkbox-checked .ant-checkbox-inner::after {
|
|
14986
|
-
border-color: #fff;
|
|
14987
|
-
}
|
|
14988
|
-
.ho-comment-item .comment-status .ant-checkbox-inner::after {
|
|
14989
|
-
left: 21%;
|
|
14990
|
-
top: 48%;
|
|
14991
|
-
}
|
|
14992
|
-
.ho-comment-item .comment-status .ant-checkbox-wrapper {
|
|
14993
|
-
padding-top: 3px;
|
|
14994
|
-
}
|
|
14995
|
-
.ho-comment-item .comment-status .comment-handled {
|
|
14996
|
-
position: absolute;
|
|
14997
|
-
right: -11px;
|
|
14998
|
-
top: -10px;
|
|
14999
|
-
color: #00c130;
|
|
15000
|
-
font-size: 27px;
|
|
15001
|
-
-webkit-transform: rotate(225deg);
|
|
15002
|
-
transform: rotate(225deg);
|
|
15003
|
-
}
|
|
15004
|
-
.ho-comment-item .comment-status .ant-checkbox-wrapper {
|
|
15005
|
-
font-size: 12px;
|
|
15006
|
-
}
|
|
15007
|
-
.ho-comment-item.history-comment .comment-content {
|
|
15008
|
-
padding: 0;
|
|
15009
|
-
margin: 8px;
|
|
14959
|
+
.ho-history-box .ho-comment-item.history-comment .comment-content {
|
|
15010
14960
|
overflow: hidden;
|
|
15011
14961
|
text-overflow: ellipsis;
|
|
15012
14962
|
display: -webkit-box;
|
|
15013
14963
|
-webkit-line-clamp: 2;
|
|
15014
14964
|
-webkit-box-orient: vertical;
|
|
15015
14965
|
}
|
|
15016
|
-
.history-comment-tooltip {
|
|
15017
|
-
overflow: auto;
|
|
15018
|
-
max-height: 500px;
|
|
15019
|
-
max-width: 600px;
|
|
15020
|
-
}
|
|
15021
14966
|
|
|
15022
14967
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
15023
14968
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -15244,7 +15189,7 @@ legend {
|
|
|
15244
15189
|
color: #52c41a;
|
|
15245
15190
|
}
|
|
15246
15191
|
|
|
15247
|
-
.poper-title[data-v-
|
|
15192
|
+
.poper-title[data-v-115f256a] {
|
|
15248
15193
|
position: absolute;
|
|
15249
15194
|
z-index: 101;
|
|
15250
15195
|
display: inline-block;
|
|
@@ -15254,16 +15199,16 @@ legend {
|
|
|
15254
15199
|
line-height: 30px;
|
|
15255
15200
|
border-radius: 3px;
|
|
15256
15201
|
background-color: #ffffff;
|
|
15257
|
-
-webkit-box-shadow: rgba(158, 161, 165, 0.4)
|
|
15258
|
-
box-shadow: rgba(158, 161, 165, 0.4)
|
|
15202
|
+
-webkit-box-shadow: 0px 2px 12px 0px rgba(158, 161, 165, 0.4);
|
|
15203
|
+
box-shadow: 0px 2px 12px 0px rgba(158, 161, 165, 0.4);
|
|
15259
15204
|
}
|
|
15260
|
-
.fade-enter-active[data-v-
|
|
15261
|
-
.fade-leave-active[data-v-
|
|
15205
|
+
.fade-enter-active[data-v-115f256a],
|
|
15206
|
+
.fade-leave-active[data-v-115f256a] {
|
|
15262
15207
|
-webkit-transition: opacity 0.2s;
|
|
15263
15208
|
transition: opacity 0.2s;
|
|
15264
15209
|
}
|
|
15265
|
-
.fade-enter[data-v-
|
|
15266
|
-
.fade-leave-to[data-v-
|
|
15210
|
+
.fade-enter[data-v-115f256a],
|
|
15211
|
+
.fade-leave-to[data-v-115f256a] {
|
|
15267
15212
|
opacity: 0;
|
|
15268
15213
|
}
|
|
15269
15214
|
|