cc-core-cli 1.0.143 → 1.0.144
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/package.json +1 -1
- package/template/admin/pages/setting/entities/index.js +1 -1
- package/template/admin/public/static/styles/custom-antd.css +50 -1
- package/template/admin/public/static/styles/detail.css +27 -0
- package/template/admin/public/static/styles/entities.css +8 -0
- package/template/admin/public/static/styles/import_export.css +7 -3
- package/template/admin/public/static/styles/input.css +4 -1
- package/template/admin/public/static/styles/layout.css +29 -5
package/package.json
CHANGED
|
@@ -96,6 +96,9 @@
|
|
|
96
96
|
/* Radio Button Colors */
|
|
97
97
|
--radio-button-hover-color: #1890ff;
|
|
98
98
|
--radio-button-bg: #e6f7ff;
|
|
99
|
+
|
|
100
|
+
/* Select Dropdown Colors */
|
|
101
|
+
--select-option-selected-bg: rgba(0, 160, 233, 0.1);
|
|
99
102
|
}
|
|
100
103
|
|
|
101
104
|
/* AntD Picker Styles */
|
|
@@ -136,10 +139,56 @@
|
|
|
136
139
|
border-bottom-color: white !important;
|
|
137
140
|
}
|
|
138
141
|
|
|
142
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected a,
|
|
143
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item a:hover {
|
|
144
|
+
color: var(--submenu-bg-active-color) !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
139
147
|
.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
|
|
140
148
|
margin-left: 0px;
|
|
141
149
|
}
|
|
142
150
|
|
|
143
|
-
.ant-empty-img-simple-path {
|
|
151
|
+
/* .ant-empty-img-simple-path {
|
|
152
|
+
fill: #fafafa !important;
|
|
153
|
+
} */
|
|
154
|
+
|
|
155
|
+
.ant-empty-image g g path:nth-child(2) {
|
|
144
156
|
fill: #fafafa !important;
|
|
157
|
+
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.ant-empty-image g ellipse {
|
|
161
|
+
fill: #f5f5f5 !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* Select Dropdown Styles */
|
|
165
|
+
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
|
|
166
|
+
color: #333333 !important;
|
|
167
|
+
background-color: var(--select-option-selected-bg) !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.ant-select-item-option-selected.ant-select-item-option-active:not(.ant-select-item-option-disabled),
|
|
171
|
+
.ant-select-item-option-selected:hover:not(.ant-select-item-option-disabled) {
|
|
172
|
+
color: #333333 !important;
|
|
173
|
+
background-color: var(--select-option-selected-bg) !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ant-select-item-option-active:not(.ant-select-item-option-selected):not(.ant-select-item-option-disabled) {
|
|
177
|
+
background-color: var(--hover-color) !important;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.ant-select-open:not(.ant-select-disabled) .ant-select-selector .ant-select-selection-item,
|
|
181
|
+
.ant-select-open:not(.ant-select-disabled) .ant-select-selector .ant-select-selection-selected-value {
|
|
182
|
+
color: rgba(0, 0, 0, 0.45) !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.ant-select-focused .ant-select-selector {
|
|
186
|
+
border-color: var(--primary-color) !important;
|
|
187
|
+
box-shadow: 0 0 0 2px rgba(4, 172, 228, 0.2) !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
191
|
+
border-color: var(--primary-color) !important;
|
|
192
|
+
box-shadow: 0 0 0 2px rgba(4, 172, 228, 0.2) !important;
|
|
193
|
+
outline: 0 !important;
|
|
145
194
|
}
|
|
@@ -339,6 +339,19 @@
|
|
|
339
339
|
box-shadow: unset;
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
+
.page-entities .ant-btn.ant-btn-primary.add-field-button {
|
|
343
|
+
color: var(--secondary-color) !important;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.page-entities .ant-btn.ant-btn-primary.add-field-button:hover,
|
|
347
|
+
.page-entities .ant-btn.ant-btn-primary.add-field-button:focus,
|
|
348
|
+
.page-entities .ant-btn.ant-btn-primary.add-field-button:active {
|
|
349
|
+
background: transparent !important;
|
|
350
|
+
border-color: var(--secondary-color) !important;
|
|
351
|
+
color: var(--secondary-color) !important;
|
|
352
|
+
opacity: 0.7;
|
|
353
|
+
}
|
|
354
|
+
|
|
342
355
|
.ant-btn.ant-btn-primary:hover,
|
|
343
356
|
.ant-btn.ant-btn-primary:focus,
|
|
344
357
|
.ant-btn.ant-btn-primary:active {
|
|
@@ -2577,6 +2590,11 @@
|
|
|
2577
2590
|
border-radius: 1px !important;
|
|
2578
2591
|
}
|
|
2579
2592
|
|
|
2593
|
+
/* Purple ink-bar for detail page tabs only */
|
|
2594
|
+
.render-tabs-component .ant-tabs .ant-tabs-ink-bar {
|
|
2595
|
+
background: var(--submenu-bg-active-color) !important;
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2580
2598
|
.ant-tabs .ant-tabs-tab::after {
|
|
2581
2599
|
display: none !important;
|
|
2582
2600
|
}
|
|
@@ -2585,6 +2603,15 @@
|
|
|
2585
2603
|
display: none !important;
|
|
2586
2604
|
}
|
|
2587
2605
|
|
|
2606
|
+
/* Purple color for detail page tabs only, not entities page or hook-tabs */
|
|
2607
|
+
.render-tabs-component .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
2608
|
+
color: var(--submenu-bg-active-color) !important;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2611
|
+
.render-tabs-component .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn .ant-badge {
|
|
2612
|
+
color: var(--submenu-bg-active-color) !important;
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2588
2615
|
.ant-drawer-content.import-export .ant-drawer-body .progress {
|
|
2589
2616
|
padding: 0 24px;
|
|
2590
2617
|
margin-bottom: 15px;
|
|
@@ -340,6 +340,14 @@
|
|
|
340
340
|
overflow-y: auto;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
+
.page-entities .input-search {
|
|
344
|
+
margin-bottom: 10px;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.page-entities .ant-affix {
|
|
348
|
+
z-index: 1 !important;
|
|
349
|
+
}
|
|
350
|
+
|
|
343
351
|
.page-entities .widget-container .widget-container-body {
|
|
344
352
|
max-height: 50vh;
|
|
345
353
|
overflow-y: auto;
|
|
@@ -6,8 +6,12 @@
|
|
|
6
6
|
margin-right: 6px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body {
|
|
10
|
-
padding: 24px 0px;
|
|
9
|
+
/* .ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body {
|
|
10
|
+
padding: 24px 0px !important ;
|
|
11
|
+
} */
|
|
12
|
+
|
|
13
|
+
.ant-drawer-content.import-export .ant-drawer-body {
|
|
14
|
+
padding: 24px 24px 0px 24px !important;
|
|
11
15
|
}
|
|
12
16
|
|
|
13
17
|
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .title-type {
|
|
@@ -45,4 +49,4 @@
|
|
|
45
49
|
.ant-drawer.import-export .ant-drawer-content-wrapper {
|
|
46
50
|
width: 85% !important;
|
|
47
51
|
}
|
|
48
|
-
}
|
|
52
|
+
}
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
.input-icon {
|
|
75
75
|
text-align: center;
|
|
76
76
|
margin-top: 10px;
|
|
77
|
+
overflow-y: auto;
|
|
78
|
+
overflow-x: hidden;
|
|
79
|
+
max-height: 100%;
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
.detail-related-one2one-input {
|
|
@@ -94,4 +97,4 @@
|
|
|
94
97
|
|
|
95
98
|
.detail-related-one2one-input:hover .tag {
|
|
96
99
|
display: inline-block;
|
|
97
|
-
}
|
|
100
|
+
}
|
|
@@ -659,7 +659,7 @@ html body.ant-scrolling-effect {
|
|
|
659
659
|
padding: 10px !important;
|
|
660
660
|
margin-bottom: 5px;
|
|
661
661
|
margin-top: 0;
|
|
662
|
-
line-height:
|
|
662
|
+
line-height: 20px;
|
|
663
663
|
}
|
|
664
664
|
|
|
665
665
|
.layouts-sider .main-sider .ant-menu.ant-menu-inline .ant-menu-item .anticon {
|
|
@@ -1330,11 +1330,11 @@ html body.ant-scrolling-effect {
|
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
1332
1332
|
.layouts-sub-sider-horizontal .ant-menu-item a:hover {
|
|
1333
|
-
color: var(--
|
|
1333
|
+
color: var(--submenu-bg-active-color) !important;
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
1336
|
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected a {
|
|
1337
|
-
color: var(--
|
|
1337
|
+
color: var(--submenu-bg-active-color) !important;
|
|
1338
1338
|
}
|
|
1339
1339
|
|
|
1340
1340
|
.layouts-sub-sider-horizontal .ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item:hover,
|
|
@@ -1345,8 +1345,28 @@ html body.ant-scrolling-effect {
|
|
|
1345
1345
|
.layouts-sub-sider-horizontal .ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-open,
|
|
1346
1346
|
.layouts-sub-sider-horizontal .ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-selected,
|
|
1347
1347
|
.layouts-sub-sider-horizontal .ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-selected {
|
|
1348
|
-
color: var(--
|
|
1349
|
-
border-bottom: 2px solid var(--
|
|
1348
|
+
color: var(--submenu-bg-active-color) !important;
|
|
1349
|
+
border-bottom: 2px solid var(--submenu-bg-active-color) !important;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
/* Override for ant-menu-title-content and menu-label */
|
|
1353
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected .ant-menu-title-content,
|
|
1354
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected .ant-menu-title-content a,
|
|
1355
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected .ant-menu-title-content .menu-label,
|
|
1356
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item-selected a .menu-label {
|
|
1357
|
+
color: var(--submenu-bg-active-color) !important;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
/* Hover state for ant-menu-title-content and menu-label */
|
|
1361
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item:hover .ant-menu-title-content,
|
|
1362
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item:hover .ant-menu-title-content a,
|
|
1363
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item:hover .ant-menu-title-content .menu-label,
|
|
1364
|
+
.layouts-sub-sider-horizontal .ant-menu-horizontal>.ant-menu-item:hover a .menu-label,
|
|
1365
|
+
.layouts-sub-sider-horizontal .ant-menu-item:hover .ant-menu-title-content,
|
|
1366
|
+
.layouts-sub-sider-horizontal .ant-menu-item:hover .ant-menu-title-content a,
|
|
1367
|
+
.layouts-sub-sider-horizontal .ant-menu-item:hover .ant-menu-title-content .menu-label,
|
|
1368
|
+
.layouts-sub-sider-horizontal .ant-menu-item:hover a .menu-label {
|
|
1369
|
+
color: var(--submenu-bg-active-color) !important;
|
|
1350
1370
|
}
|
|
1351
1371
|
|
|
1352
1372
|
.layouts-sub-sider-horizontal .ant-menu-item:hover,
|
|
@@ -1466,4 +1486,8 @@ html body.ant-scrolling-effect {
|
|
|
1466
1486
|
|
|
1467
1487
|
.ant-breadcrumb .ant-typography.ant-typography-secondary {
|
|
1468
1488
|
color: var(--text-color-secondary) !important;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.ant-collapse-content-box {
|
|
1492
|
+
background-color: var(--white-color) !important;
|
|
1469
1493
|
}
|