@lambo-design/shared 1.0.0-beta.2 → 1.0.0-beta.200

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.
Files changed (175) hide show
  1. package/config/config.js +26 -2
  2. package/config/index.js +7 -2
  3. package/config/themes/atrovirens/atrovirens.css +564 -0
  4. package/config/themes/atrovirens/atrovirens.css.map +1 -0
  5. package/config/themes/atrovirens/atrovirens.less +656 -0
  6. package/config/themes/atrovirens/var.less +662 -0
  7. package/config/themes/blue/blue.css +564 -0
  8. package/config/themes/blue/blue.css.map +1 -0
  9. package/config/themes/blue/blue.less +657 -0
  10. package/config/themes/blue/var.less +663 -0
  11. package/config/themes/blue-white/blue-white.css +564 -0
  12. package/config/themes/blue-white/blue-white.css.map +1 -0
  13. package/config/themes/blue-white/blue-white.less +656 -0
  14. package/config/themes/blue-white/var.less +663 -0
  15. package/config/themes/blue-white-tight/blue-white-tight.css +565 -0
  16. package/config/themes/blue-white-tight/blue-white-tight.css.map +1 -0
  17. package/config/themes/blue-white-tight/blue-white-tight.less +657 -0
  18. package/config/themes/blue-white-tight/var.less +663 -0
  19. package/config/themes/deep/deep.css +564 -0
  20. package/config/themes/deep/deep.css.map +1 -0
  21. package/config/themes/deep/deep.less +655 -0
  22. package/config/themes/deep/var.less +663 -0
  23. package/config/themes/default/default.css +380 -57
  24. package/config/themes/default/default.css.map +1 -0
  25. package/config/themes/default/default.less +425 -88
  26. package/config/themes/default/var.less +361 -12
  27. package/config/themes/eap/eap.css +564 -0
  28. package/config/themes/eap/eap.css.map +1 -0
  29. package/config/themes/eap/eap.less +656 -0
  30. package/config/themes/eap/var.less +663 -0
  31. package/config/themes/gold/gold.css +564 -0
  32. package/config/themes/gold/gold.css.map +1 -0
  33. package/config/themes/gold/gold.less +656 -0
  34. package/config/themes/gold/var.less +357 -7
  35. package/config/themes/index.js +17 -3
  36. package/config/themes/lime/lime.css +564 -0
  37. package/config/themes/lime/lime.css.map +1 -0
  38. package/config/themes/lime/lime.less +656 -0
  39. package/config/themes/lime/var.less +357 -7
  40. package/config/themes/orange/orange.css +564 -0
  41. package/config/themes/orange/orange.css.map +1 -0
  42. package/config/themes/orange/orange.less +656 -0
  43. package/config/themes/orange/var.less +664 -0
  44. package/config/themes/red/red.css +564 -0
  45. package/config/themes/red/red.css.map +1 -0
  46. package/config/themes/red/red.less +656 -0
  47. package/config/themes/red/var.less +663 -0
  48. package/config/themes/theme-atrovirens.js +546 -0
  49. package/config/themes/theme-blue.js +546 -0
  50. package/config/themes/theme-bw.js +546 -0
  51. package/config/themes/theme-bwt.js +547 -0
  52. package/config/themes/theme-deep.js +546 -0
  53. package/config/themes/theme-default.js +353 -59
  54. package/config/themes/theme-eap.js +546 -0
  55. package/config/themes/theme-gold.js +305 -11
  56. package/config/themes/theme-lime.js +305 -11
  57. package/config/themes/theme-orange.js +547 -0
  58. package/config/themes/theme-red.js +546 -0
  59. package/directives/index.js +23 -0
  60. package/directives/module/draggable.js +56 -0
  61. package/directives/module/permission.js +49 -0
  62. package/directives/module/print.js +1 -0
  63. package/directives/module/vue-print-nb/README.md +63 -0
  64. package/directives/module/vue-print-nb/print.js +94 -0
  65. package/directives/module/vue-print-nb/printarea.js +532 -0
  66. package/index.js +8 -1
  67. package/nstyles/common.less +197 -0
  68. package/nstyles/components/404.less +46 -0
  69. package/nstyles/components/button.less +34 -0
  70. package/nstyles/components/date-picker.less +37 -0
  71. package/nstyles/components/drawer.less +20 -0
  72. package/nstyles/components/dropdown.less +18 -0
  73. package/nstyles/components/excel-flow.less +72 -0
  74. package/nstyles/components/form.less +303 -0
  75. package/nstyles/components/index.less +15 -0
  76. package/nstyles/components/layout/collect.less +10 -0
  77. package/nstyles/components/layout/detail-view.less +107 -0
  78. package/nstyles/components/layout/full-screen.less +7 -0
  79. package/nstyles/components/layout/index.less +7 -0
  80. package/nstyles/components/layout/other-menu.less +142 -0
  81. package/nstyles/components/layout/page-view.less +101 -0
  82. package/nstyles/components/layout/sider-trigger.less +41 -0
  83. package/nstyles/components/layout/tags-nav.less +113 -0
  84. package/nstyles/components/modal.less +85 -0
  85. package/nstyles/components/panel.less +31 -0
  86. package/nstyles/components/select.less +3 -0
  87. package/nstyles/components/sign.less +27 -0
  88. package/nstyles/components/table.less +315 -0
  89. package/nstyles/components/tree.less +159 -0
  90. package/nstyles/components/upload.less +131 -0
  91. package/nstyles/index.less +5 -0
  92. package/nstyles/reset.less +65 -0
  93. package/nstyles/third/ag.less +173 -0
  94. package/nstyles/third/icons/sort-desc.svg +1 -0
  95. package/nstyles/third/icons/sort-up.svg +1 -0
  96. package/nstyles/third/icons/sorting.svg +1 -0
  97. package/nstyles/third/index.less +11 -0
  98. package/nstyles/third/view-design.less +356 -0
  99. package/nstyles/variables/base.less +143 -0
  100. package/nstyles/variables/index.less +4 -0
  101. package/nstyles/variables/theme/default/button.less +7 -0
  102. package/nstyles/variables/theme/default/common.less +57 -0
  103. package/nstyles/variables/theme/default/index.less +7 -0
  104. package/nstyles/variables/theme/default/layout.less +40 -0
  105. package/nstyles/variables/theme/default/table.less +37 -0
  106. package/nstyles/variables/theme/default/tag.less +3 -0
  107. package/nstyles/variables/theme/default/upload.less +3 -0
  108. package/nstyles/variables/theme/index.less +13 -0
  109. package/nstyles/variables/theme/small/button.less +7 -0
  110. package/nstyles/variables/theme/small/common.less +39 -0
  111. package/nstyles/variables/theme/small/index.less +5 -0
  112. package/nstyles/variables/theme/small/layout.less +21 -0
  113. package/nstyles/variables/theme/small/table.less +17 -0
  114. package/nstyles/variables/theme/small/tag.less +3 -0
  115. package/package.json +39 -20
  116. package/plugin/index.js +12 -0
  117. package/plugin/module/date-format.js +30 -0
  118. package/plugin/module/loading.js +26 -0
  119. package/plugin/module/warn-handler.js +11 -0
  120. package/styles/image/lan_navigator.png +0 -0
  121. package/styles/image/lv_navigator.png +0 -0
  122. package/utils/ajax/content-type.js +30 -0
  123. package/utils/ajax/interceptors.js +97 -90
  124. package/utils/assist.js +78 -10
  125. package/utils/base64.js +126 -0
  126. package/utils/blob.js +47 -0
  127. package/utils/crypto/index.js +10 -0
  128. package/utils/date.js +334 -305
  129. package/utils/dict/built-in-dict.js +20 -0
  130. package/utils/dict/index.js +75 -0
  131. package/utils/event.js +72 -0
  132. package/utils/excel.js +369 -237
  133. package/utils/file.js +19 -0
  134. package/utils/form/validate.js +29 -0
  135. package/utils/half-year.js +68 -0
  136. package/utils/index.js +37 -0
  137. package/utils/json.js +29 -0
  138. package/utils/lodop.js +5 -0
  139. package/utils/menu/before-close.js +17 -0
  140. package/utils/menu/index.js +381 -0
  141. package/utils/mime_type.js +67 -0
  142. package/utils/modelerUtil.js +4 -1
  143. package/utils/n/date.js +57 -0
  144. package/utils/n/index.js +10 -0
  145. package/utils/n/is-type.js +176 -0
  146. package/utils/n/number.js +144 -0
  147. package/utils/n/permission-cache.js +11 -0
  148. package/utils/n/reuqest/axiosN.js +15 -0
  149. package/utils/n/reuqest/content-type.js +19 -0
  150. package/utils/n/reuqest/interceptors.js +95 -0
  151. package/utils/n/reuqest/url-params.js +12 -0
  152. package/utils/n/storage.js +51 -0
  153. package/utils/n/token.js +51 -0
  154. package/utils/n/user-cache.js +11 -0
  155. package/utils/n/user.js +34 -0
  156. package/utils/n/uuid.js +16 -0
  157. package/utils/n-generator-routers.js +208 -0
  158. package/utils/n-router.js +205 -0
  159. package/utils/n-theme.js +30 -0
  160. package/utils/number.js +72 -15
  161. package/utils/oss.js +58 -0
  162. package/utils/platform.js +582 -26
  163. package/utils/quarter.js +58 -0
  164. package/utils/storage.js +198 -0
  165. package/utils/style.js +24 -0
  166. package/utils/theme.js +97 -4
  167. package/utils/transfer-queue.js +7 -0
  168. package/utils/type.js +102 -0
  169. package/utils/util.js +795 -0
  170. package/utils/validator.js +181 -0
  171. package/utils/vxetable/index.js +25 -0
  172. package/config/themes/gold/default.css +0 -241
  173. package/config/themes/gold/default.less +0 -319
  174. package/config/themes/lime/default.css +0 -241
  175. package/config/themes/lime/default.less +0 -319
@@ -0,0 +1,41 @@
1
+ .ind-sider-trigger {
2
+ display: flex;
3
+ justify-content: space-between;
4
+ align-items: center;
5
+ padding: 6px;
6
+ width: 100%;
7
+ height: 50px;
8
+ color: var(--ind-text-color);
9
+ background: #fff;
10
+ overflow: hidden;
11
+ box-sizing: border-box;
12
+ cursor: pointer;
13
+
14
+ .title {
15
+ margin-left: 10px;
16
+ height: 32px;
17
+ line-height: 32px;
18
+ font-size: 16px;
19
+ width: 100%;
20
+ font-weight: bold;
21
+ overflow: hidden;
22
+ }
23
+
24
+ .trans {
25
+ transition: transform 0.2s ease;
26
+ }
27
+
28
+ i {
29
+ .trans;
30
+ }
31
+
32
+ &.collapsed {
33
+ justify-content: center;
34
+ transition: width 0.2s ease-in-out;
35
+
36
+ i {
37
+ transform: rotateZ(90deg);
38
+ .trans;
39
+ }
40
+ }
41
+ }
@@ -0,0 +1,113 @@
1
+ @nav-height: 44px;
2
+ @nav-padding: 6px 0;
3
+ @nav-margin: 0 10px;
4
+
5
+ .ind-tags-nav {
6
+ position: relative;
7
+ padding: @nav-padding;
8
+ margin: @nav-margin;
9
+ height: 44px;
10
+ width: calc(100% - 20px);
11
+ border-top: 1px solid var(--ind-border-color);
12
+ border-bottom: 1px solid var(--ind-border-color);
13
+ box-sizing: border-box;
14
+ user-select: none;
15
+
16
+ .ind-tags-nav-content {
17
+ display: flex;
18
+ justify-content: space-between;
19
+ align-items: center;
20
+ height: 100%;
21
+
22
+ .btn-con {
23
+ height: 100%;
24
+ flex-shrink: 0;
25
+ box-sizing: border-box;
26
+ z-index: 10;
27
+
28
+ button {
29
+ height: 100%;
30
+ padding: 2px 4px;
31
+ line-height: 1;
32
+ text-align: center;
33
+ background: #fff;
34
+ box-sizing: border-box;
35
+ }
36
+ }
37
+ }
38
+
39
+ .ivu-tag {
40
+ height: 30px;
41
+ line-height: 30px;
42
+ background: white;
43
+ margin: 0 5px 0 0;
44
+ border: none;
45
+ cursor: pointer;
46
+
47
+ &.ivu-tag-primary {
48
+ color: var(--ind-primary-color) !important;
49
+ .ivu-tag-color-white {
50
+ color: var(--ind-primary-color) !important;
51
+ font-weight: var(--ind-font-weight-bold);
52
+ }
53
+ }
54
+
55
+ .ivu-tag-text {
56
+ font-size: var(--ind-font-size-md);
57
+ color: var(--ind-text-color);
58
+ }
59
+
60
+ .ivu-icon-ios-close {
61
+ color: #666 !important;
62
+ }
63
+ }
64
+ .ivu-btn-text:hover {
65
+ background: none;
66
+ color: var(--ind-text-color);
67
+ }
68
+ .ivu-btn-text {
69
+ color: var(--ind-text-color);
70
+ }
71
+
72
+ .scroll-outer {
73
+ position: relative;
74
+ width: 100%;
75
+ height: 100%;
76
+ overflow: hidden;
77
+
78
+ .scroll-body {
79
+ position: absolute;
80
+ display: inline-block;
81
+ padding: 1px 4px 0;
82
+ height: ~'calc(100% - 1px)';
83
+ overflow: visible;
84
+ white-space: nowrap;
85
+ transition: left 0.3s ease;
86
+ }
87
+ }
88
+
89
+ .contextmenu {
90
+ position: absolute;
91
+ margin: 0;
92
+ padding: 5px 0;
93
+ background: #fff;
94
+ z-index: 1000;
95
+ list-style-type: none;
96
+ border-radius: 4px;
97
+ box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.1);
98
+ li {
99
+ margin: 0;
100
+ padding: 5px 15px;
101
+ cursor: pointer;
102
+ &:hover {
103
+ background: #eee;
104
+ }
105
+ }
106
+ }
107
+
108
+ .ivu-tag-primary.ivu-tag-dot {
109
+ .ivu-tag-dot-inner {
110
+ background-color: var(--ind-primary-color);
111
+ }
112
+ }
113
+ }
@@ -0,0 +1,85 @@
1
+ :root {
2
+ --modal-top-height: 100px;
3
+ --modal-header-height: 52px;
4
+ --modal-footer-height: 57px;
5
+
6
+ --modal-other-height: calc(
7
+ var(--modal-top-height) + var(--modal-header-height) + var(--modal-footer-height)
8
+ );
9
+ }
10
+
11
+ .ibp-mode {
12
+ --modal-top-height: 10px;
13
+ // 改了css变量,用到它的需要重新定义。。。
14
+ --modal-other-height: calc(
15
+ var(--modal-top-height) + var(--modal-header-height) + var(--modal-footer-height)
16
+ );
17
+ }
18
+
19
+ .ind-modal {
20
+ .ivu-modal {
21
+ top: var(--modal-top-height);
22
+ }
23
+ .ivu-modal-fullscreen {
24
+ top: 0;
25
+ }
26
+ .ivu-modal:not(.ivu-modal-fullscreen) {
27
+ .ivu-modal-body {
28
+ max-height: calc(100vh - var(--modal-other-height));
29
+ overflow: auto;
30
+ }
31
+
32
+ .ivu-modal-footer {
33
+ button + button {
34
+ margin-left: 0;
35
+ }
36
+ }
37
+ }
38
+ .ivu-modal.ivu-modal-fullscreen {
39
+ .ivu-modal-close .ivu-icon-ios-close {
40
+ color: white;
41
+ }
42
+ }
43
+ }
44
+
45
+ .report-index-model-panel {
46
+ .left-panel {
47
+ padding: var(--report-index-model-panel-padding);
48
+ border: 1px solid var(--ind-border-color);
49
+ .report-index-dimension1-panel {
50
+ width: 100px;
51
+ height: fit-content;
52
+ border: 1px solid var(--ind-border-color);
53
+ border-radius: 4px;
54
+ .report-index-dimension1 {
55
+ text-align: center;
56
+ line-height: 30px;
57
+ border-bottom: 1px solid var(--ind-border-color);
58
+ cursor: pointer;
59
+ &:last-child {
60
+ border-bottom: none;
61
+ }
62
+ &.selected {
63
+ background-color: var(--ind-blue);
64
+ color: var(--ind-white);
65
+ }
66
+ }
67
+ }
68
+ .report-index-index-panel {
69
+ border-left: 1px solid var(--ind-border-color);
70
+ }
71
+ .report-index-options {
72
+ padding: 0 var(--report-index-model-panel-padding);
73
+ padding-right: var(--report-index-options-padding-right);
74
+ }
75
+ }
76
+ .opt-panel {
77
+ padding: 0 20px;
78
+ height: 600px;
79
+ justify-content: center;
80
+ }
81
+ .right-panel {
82
+ padding: var(--report-index-model-panel-padding);
83
+ border: 1px solid var(--ind-border-color);
84
+ }
85
+ }
@@ -0,0 +1,31 @@
1
+ .ind-back-top-panel {
2
+ position: relative;
3
+ height: 100%;
4
+ overflow-y: auto;
5
+ }
6
+
7
+ .ind-loading-panel {
8
+ position: relative;
9
+ height: auto;
10
+
11
+ .ind-loading-spin--dark {
12
+ background-color: #e1e1e1;
13
+ opacity: 0.9;
14
+ }
15
+
16
+ .ind-loading-spin-icon {
17
+ animation: ani-loading-spin 1s linear infinite;
18
+ }
19
+
20
+ @keyframes ani-loading-spin {
21
+ from {
22
+ transform: rotate(0deg);
23
+ }
24
+ 50% {
25
+ transform: rotate(180deg);
26
+ }
27
+ to {
28
+ transform: rotate(360deg);
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,3 @@
1
+ .ind-select-item.select-all {
2
+ border-bottom: 2px solid var(--ind-border-color);
3
+ }
@@ -0,0 +1,27 @@
1
+ :root,
2
+ :host {
3
+ --ind-sign-padding: var(--ind-padding-xs);
4
+ --ind-sign-content-height: 200px;
5
+ --ind-sign-content-background: var(--ind-white);
6
+ --ind-sign-content-border: 1px solid var(--ind-border-color);
7
+ }
8
+
9
+ .ind-sign {
10
+ padding: var(--ind-sign-padding);
11
+
12
+ &__content {
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ height: var(--ind-sign-content-height);
17
+ background-color: var(--ind-sign-content-background);
18
+ border: var(--ind-sign-content-border);
19
+ border-radius: var(--ind-border-radius-md);
20
+ overflow: hidden;
21
+
22
+ canvas {
23
+ width: 100%;
24
+ height: 100%;
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,315 @@
1
+ .lambo-grid-table {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: flex-start;
5
+ height: 100%;
6
+ border-radius: 4px;
7
+ background: #ffffff;
8
+
9
+ &.fullscreen-fixed {
10
+ padding: var(--ind-table-padding);
11
+ }
12
+
13
+ .ind-loading-panel {
14
+ height: 100% !important;
15
+ }
16
+
17
+ .other-button {
18
+ margin-top: var(--ind-other-button-top); // var(--ind-unit-switch-bottom); // 10px;
19
+ .ivu-btn-small {
20
+ height: var(--ind-button-height-md);
21
+ }
22
+ }
23
+
24
+ .ind-button-group--mb > * {
25
+ margin-bottom: var(--ind-table-button-padding);
26
+ }
27
+
28
+ .ag-cell {
29
+ user-select: text;
30
+ overflow: unset;
31
+ }
32
+
33
+ // .ag-cell-value:has('.ivu-select') {
34
+ // overflow: unset;
35
+ // }
36
+ .ag-cell.ag-wrap-cell {
37
+ overflow: visible;
38
+ }
39
+
40
+ .ag-theme-balham .ag-ltr .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
41
+ .ag-theme-balham .ag-ltr .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
42
+ .ag-theme-balham
43
+ .ag-ltr
44
+ .ag-has-focus
45
+ .ag-full-width-row.ag-row-focus
46
+ .ag-cell-wrapper.ag-row-group,
47
+ .ag-theme-balham .ag-ltr .ag-cell-range-single-cell,
48
+ .ag-theme-balham .ag-ltr .ag-cell-range-single-cell.ag-cell-range-handle,
49
+ .ag-theme-balham .ag-rtl .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
50
+ .ag-theme-balham .ag-rtl .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
51
+ .ag-theme-balham
52
+ .ag-rtl
53
+ .ag-has-focus
54
+ .ag-full-width-row.ag-row-focus
55
+ .ag-cell-wrapper.ag-row-group,
56
+ .ag-theme-balham .ag-rtl .ag-cell-range-single-cell,
57
+ .ag-theme-balham .ag-rtl .ag-cell-range-single-cell.ag-cell-range-handle {
58
+ border-right: 1px solid
59
+ var(--ag-range-selection-border-color, var(--ag-balham-active-color, #0091ea)) !important;
60
+ }
61
+
62
+ .ag-theme-balham .ag-ltr .ag-cell {
63
+ border-right-color: var(--ag-row-border-color, #d9dcde) !important;
64
+ }
65
+
66
+ .ag-theme-balham .ag-header-cell::after,
67
+ .ag-theme-balham .ag-header-group-cell::after {
68
+ height: 100% !important;
69
+ top: 0 !important;
70
+ }
71
+
72
+ .ag-header-group-cell-label,
73
+ .ag-header-cell-label {
74
+ justify-content: center !important;
75
+ }
76
+
77
+ .buttons {
78
+ /deep/ .ivu-btn {
79
+ margin-right: 5px;
80
+ }
81
+ }
82
+
83
+ /deep/ .ivu-checkbox-inner {
84
+ border: 1px solid var(--check-border);
85
+ }
86
+
87
+ /deep/ .ivu-form-item {
88
+ margin-bottom: 0;
89
+ }
90
+ .i-crud-toolbar-btn,
91
+ .i-crud-toolbar-btn:hover,
92
+ .i-crud-toolbar-btn:focus {
93
+ border-color: transparent !important;
94
+ box-shadow: unset !important;
95
+ }
96
+ .ag-button {
97
+ .ivu-btn-small {
98
+ line-height: var(--input-height-table) !important;
99
+ height: var(--input-height-table) !important;
100
+ }
101
+ }
102
+ .ag-date {
103
+ input,
104
+ .ivu-input-suffix,
105
+ .ivu-input-prefix i,
106
+ .ivu-input-suffix i {
107
+ height: calc(var(--input-height-table) - 1px) !important;
108
+ line-height: calc(var(--input-height-table) - 1px) !important;
109
+ // top: -2px !important;
110
+ }
111
+ }
112
+ .ag-right-aligned-cell {
113
+ .ag-input {
114
+ input {
115
+ text-align: right;
116
+ }
117
+ }
118
+ }
119
+ .ag-input {
120
+ input {
121
+ // text-align: right;
122
+ height: calc(var(--input-height-table) - 1px) !important;
123
+ line-height: calc(var(--input-height-table) - 1px) !important;
124
+ background-color: #dae8ff;
125
+ // top: -2px !important;
126
+ }
127
+ }
128
+ .ag-ind-select {
129
+ width: 100%;
130
+ .ivu-select-single,
131
+ .ivu-select-input,
132
+ .ivu-select-selection,
133
+ .ivu-select-selected-value,
134
+ .ivu-select-placeholder,
135
+ .ivu-select-default.ivu-select-multiple .ivu-select-selection {
136
+ width: 100%;
137
+ height: calc(var(--input-height-table) - 1px) !important;
138
+ min-height: calc(var(--input-height-table) - 1px) !important;
139
+ line-height: calc(var(--input-height-table) - 1px) !important;
140
+ // top: -2px !important;
141
+ }
142
+ .ivu-tag {
143
+ height: calc(var(--input-height-table) - 4px) !important;
144
+ line-height: calc(var(--input-height-table) - 4px) !important;
145
+ }
146
+ .ivu-select-selection > div .ivu-tag {
147
+ margin-top: 0 !important;
148
+ }
149
+ }
150
+ .ag-tree-select {
151
+ width: 100%;
152
+ .ivu-input-wrapper {
153
+ // top: -2px;
154
+ }
155
+ input {
156
+ width: 100%;
157
+ }
158
+ input,
159
+ .ivu-input-icon {
160
+ height: calc(var(--input-height-table) - 1px) !important;
161
+ min-height: calc(var(--input-height-table) - 1px) !important;
162
+ line-height: calc(var(--input-height-table) - 1px) !important;
163
+ // top: -2px !important;
164
+ }
165
+ }
166
+ }
167
+
168
+ .cell-span {
169
+ background-color: var(--ind-white);
170
+ border-bottom: 1px solid var(--ag-row-border-color, #d9dcde) !important;
171
+ &:focus-within {
172
+ border-bottom: var(--ag-range-selection-border-style);
173
+ }
174
+ }
175
+
176
+ .fullscreen-fixed {
177
+ position: fixed;
178
+ z-index: 999;
179
+ width: 100vw;
180
+ height: 100vh;
181
+ top: 0;
182
+ left: 0;
183
+ background-color: var(--ind-white);
184
+ }
185
+
186
+ .ag-header-select-all {
187
+ width: 100%;
188
+ flex-shrink: 0;
189
+ justify-content: center;
190
+ }
191
+
192
+ .tip {
193
+ flex-shrink: 0;
194
+ margin-top: 5px;
195
+ width: -webkit-fill-available;
196
+ min-height: 24px;
197
+ line-height: 24px;
198
+ background-color: var(--ind-bg-color-dark);
199
+ }
200
+ //全局样式,重要消息提醒区-2022年11月11日
201
+ .important-tip {
202
+ flex-shrink: 0;
203
+ margin-top: 5px;
204
+ width: -webkit-fill-available;
205
+ height: 24px;
206
+ line-height: 24px;
207
+ background-color: var(--ind-bg-color-dark);
208
+ .ivu-icon-md-information-circle {
209
+ float: left;
210
+ margin-right: 5px;
211
+ margin-left: 5px;
212
+ line-height: 24px;
213
+ transform: scale(1.5);
214
+ color: #ff9900;
215
+ }
216
+ }
217
+
218
+ .index-manager-drag-title,
219
+ .index-manager-drag-item {
220
+ .manage-col1 {
221
+ flex-shrink: 0;
222
+ width: 80px;
223
+ cursor: pointer;
224
+ }
225
+ .manage-col2 {
226
+ width: 100%;
227
+ }
228
+ .manage-col3 {
229
+ flex-shrink: 0;
230
+ width: 80px;
231
+ }
232
+ .manage-col4 {
233
+ flex-shrink: 0;
234
+ width: 80px;
235
+ }
236
+ .manage-col5 {
237
+ flex-shrink: 0;
238
+ width: 100px;
239
+ }
240
+ .manage-col6 {
241
+ flex-shrink: 0;
242
+ width: 80px;
243
+ cursor: pointer;
244
+ }
245
+ }
246
+
247
+ .index-manager-drag-title {
248
+ text-align: left;
249
+ padding: 10px 0;
250
+ }
251
+
252
+ .index-manager-drag-item {
253
+ margin-bottom: 5px;
254
+ .manage-col1,
255
+ .manage-col2,
256
+ .manage-col3,
257
+ .manage-col4,
258
+ .manage-col6 {
259
+ padding-top: 6px;
260
+ }
261
+ .manage-col6 {
262
+ text-align: right;
263
+ }
264
+ }
265
+
266
+ .index-manager-height100-card {
267
+ .ivu-card-body {
268
+ height: calc(100% - 49px);
269
+ }
270
+ }
271
+
272
+ .detail-view-table() {
273
+ .lambo-grid-table {
274
+ & > .ivu-row {
275
+ margin-top: 0 !important;
276
+ }
277
+ // .other-button {
278
+ // margin-top: 0;
279
+ // }
280
+ }
281
+ }
282
+
283
+ .ind-detail-view {
284
+ .content {
285
+ .detail-view-table;
286
+ }
287
+ }
288
+
289
+ .ivu-drawer {
290
+ .ivu-drawer-content {
291
+ .detail-view-table;
292
+ }
293
+ }
294
+
295
+ .ag-layout-auto-height .ag-center-cols-viewport,
296
+ .ag-layout-auto-height .ag-center-cols-container,
297
+ .ag-layout-print .ag-center-cols-viewport,
298
+ .ag-layout-print .ag-center-cols-container {
299
+ min-height: unset !important;
300
+ }
301
+
302
+ .ag-ltr .ag-header-cell:after,
303
+ .ag-ltr .ag-header-group-cell:after {
304
+ width: 0 !important;
305
+ border-right: 1px solid var(--ag-header-column-separator-color) !important;
306
+ }
307
+
308
+ .ag-tooltip {
309
+ background-color: rgb(232, 233, 234) !important;
310
+ color: #333 !important;
311
+ border: var(--ag-borders) var(--ag-border-color) !important;
312
+ border-radius: 4px;
313
+ padding: 4px 8px;
314
+ white-space: pre-wrap;
315
+ }