ronds-metadata 1.1.13 → 1.1.16
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/es/comps/DynamicPorts/comps/ContextMenu.js +1 -1
- package/es/comps/DynamicPorts/comps/{ContextMenu.css → ContextMenu.less} +0 -0
- package/es/comps/DynamicPorts/comps/DragNode.js +1 -1
- package/es/comps/DynamicPorts/comps/GraphHandler/index.js +1 -1
- package/es/comps/DynamicPorts/comps/GraphHandler/{index.css → index.less} +17 -10
- package/es/comps/DynamicPorts/comps/NodeElement.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/EdgeContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/EdgeContextMenu/{index.css → index.less} +0 -0
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.less +40 -0
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.less +42 -0
- package/es/comps/DynamicPorts/comps/shape/edge.js +1 -1
- package/es/comps/DynamicPorts/comps/shape/edge.less +8 -0
- package/es/comps/DynamicPorts/index.js +1 -1
- package/es/comps/DynamicPorts/index.less +198 -0
- package/es/comps/Editable/comps/EditableAction.js +8 -4
- package/es/comps/Editable/comps/EditableCell.js +1 -1
- package/es/comps/Editable/comps/EditableHeardCell.js +1 -1
- package/es/comps/Editable/comps/EditableRow.js +12 -2
- package/es/comps/Editable/comps/Texty.js +1 -1
- package/es/comps/Editable/comps/{Texty.css → Texty.less} +4 -0
- package/es/comps/Editable/comps/{index.css → index.less} +5 -0
- package/es/comps/Editable/index.d.ts +4 -0
- package/es/comps/Editable/index.js +6 -1
- package/es/comps/Editable/index.less +97 -0
- package/es/comps/JsonEdit/index.js +1 -1
- package/es/comps/JsonEdit/{index.css → index.less} +6 -0
- package/es/comps/JsonView/index.js +1 -1
- package/es/comps/JsonView/{index.css → index.less} +41 -41
- package/es/comps/MdEdit/index.js +1 -1
- package/es/comps/MdEdit/{index.css → index.less} +0 -0
- package/es/comps/MetadataEdit/index.js +1 -1
- package/es/comps/MetadataEdit/index.less +10 -0
- package/es/comps/MetadataEditV2/index.js +1 -1
- package/es/comps/MetadataEditV2/index.less +11 -0
- package/es/comps/MetadataForm/HOC/index.js +1 -1
- package/es/comps/MetadataForm/HOC/index.less +25 -0
- package/es/comps/MetadataForm/index.js +1 -1
- package/es/comps/MetadataForm/index.less +11 -0
- package/es/framework/graph/index.js +1 -1
- package/es/framework/graph/{index.css → index.less} +2 -0
- package/es/framework/libs/iconfont/iconfont.css +19 -3
- package/es/framework/libs/iconfont/iconfont.ttf +0 -0
- package/es/framework/libs/iconfont/iconfont.woff +0 -0
- package/es/framework/libs/iconfont/iconfont.woff2 +0 -0
- package/es/index.js +1 -1
- package/es/theme.less +69 -0
- package/package.json +3 -2
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.css +0 -21
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.css +0 -23
- package/es/comps/DynamicPorts/comps/shape/edge.css +0 -4
- package/es/comps/DynamicPorts/index.css +0 -169
- package/es/comps/Editable/index.css +0 -75
- package/es/comps/MetadataEdit/index.css +0 -10
- package/es/comps/MetadataEditV2/index.css +0 -11
- package/es/comps/MetadataForm/HOC/index.css +0 -25
- package/es/comps/MetadataForm/index.css +0 -9
- package/es/theme.css +0 -56
@@ -0,0 +1,97 @@
|
|
1
|
+
.ronds-edit-table {
|
2
|
+
// table {
|
3
|
+
// border-collapse: collapse !important;
|
4
|
+
// }
|
5
|
+
width: 100%;
|
6
|
+
height: 100%;
|
7
|
+
|
8
|
+
.ant-table-body {
|
9
|
+
overflow: auto !important;
|
10
|
+
}
|
11
|
+
|
12
|
+
//解决固定列底部预留的空隙
|
13
|
+
.ant-table-fixed-left,
|
14
|
+
.ant-table-fixed-right {
|
15
|
+
.ant-table-body-outer {
|
16
|
+
margin-bottom: 0 !important;
|
17
|
+
}
|
18
|
+
.ant-table-cell-scrollbar {
|
19
|
+
margin: 0 !important;
|
20
|
+
padding: 0 !important;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
.ant-spin-nested-loading,
|
25
|
+
.ant-spin-container,
|
26
|
+
.ant-table,
|
27
|
+
.ant-table-container,
|
28
|
+
.ant-table-content {
|
29
|
+
width: 100%;
|
30
|
+
height: 100%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.ant-table-cell,
|
34
|
+
.ant-table-row {
|
35
|
+
height: 30px;
|
36
|
+
padding: 0px 8px !important;
|
37
|
+
}
|
38
|
+
|
39
|
+
.ant-table-body {
|
40
|
+
height: 100%;
|
41
|
+
overflow-y: auto !important;
|
42
|
+
}
|
43
|
+
|
44
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th {
|
45
|
+
padding: 8px !important;
|
46
|
+
background-color: #ebebeb;
|
47
|
+
border-right: 1px solid #f2f2f2;
|
48
|
+
}
|
49
|
+
|
50
|
+
.ant-table-fixed {
|
51
|
+
table-layout: fixed;
|
52
|
+
}
|
53
|
+
|
54
|
+
.ant-table-tbody > tr > td {
|
55
|
+
word-wrap: break-word;
|
56
|
+
word-break: break-all;
|
57
|
+
}
|
58
|
+
|
59
|
+
.ant-table.ant-table-bordered > .ant-table-container {
|
60
|
+
border-bottom: 1px solid #f0f0f0;
|
61
|
+
}
|
62
|
+
|
63
|
+
.ant-table .ant-table-expanded-row-fixed {
|
64
|
+
padding: 0% !important;
|
65
|
+
margin: 0% !important;
|
66
|
+
}
|
67
|
+
|
68
|
+
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed::after {
|
69
|
+
border-right: 0 !important;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
.ronds-metadata-normal {
|
74
|
+
.ant-table {
|
75
|
+
border-right: 1px solid #f0f0f0 !important;
|
76
|
+
|
77
|
+
.ant-table-row--odd {
|
78
|
+
background-color: #ebebeb !important;
|
79
|
+
.ant-table-cell {
|
80
|
+
background-color: #ebebeb !important;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
.ant-table-expanded-row-fixed::after {
|
85
|
+
border: 0 !important;
|
86
|
+
}
|
87
|
+
|
88
|
+
.ant-table-placeholder {
|
89
|
+
pointer-events: none;
|
90
|
+
background-color: #fff !important;
|
91
|
+
.ant-table-cell {
|
92
|
+
padding: 0 !important;
|
93
|
+
background-color: #fff !important;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
@@ -22,7 +22,7 @@ import 'codemirror/addon/fold/comment-fold';
|
|
22
22
|
import 'codemirror/addon/selection/active-line.js';
|
23
23
|
import 'codemirror/addon/edit/closebrackets.js';
|
24
24
|
import 'codemirror/addon/edit/matchbrackets.js';
|
25
|
-
import
|
25
|
+
import './index.less';
|
26
26
|
import { SQL_DICO } from './constant';
|
27
27
|
|
28
28
|
var SqlEdit = function SqlEdit(props) {
|
@@ -7,6 +7,7 @@
|
|
7
7
|
.sql {
|
8
8
|
color: blue;
|
9
9
|
}
|
10
|
+
|
10
11
|
.sql:after {
|
11
12
|
content: 'sql';
|
12
13
|
padding-left: 20px;
|
@@ -14,6 +15,7 @@
|
|
14
15
|
float: right;
|
15
16
|
color: gray;
|
16
17
|
}
|
18
|
+
|
17
19
|
.table {
|
18
20
|
color: blueviolet;
|
19
21
|
}
|
@@ -24,6 +26,7 @@
|
|
24
26
|
float: right;
|
25
27
|
color: gray;
|
26
28
|
}
|
29
|
+
|
27
30
|
.column {
|
28
31
|
color: brown;
|
29
32
|
}
|
@@ -34,6 +37,7 @@
|
|
34
37
|
float: right;
|
35
38
|
color: gray;
|
36
39
|
}
|
40
|
+
|
37
41
|
.pf {
|
38
42
|
color: cadetblue;
|
39
43
|
}
|
@@ -44,8 +48,10 @@
|
|
44
48
|
float: right;
|
45
49
|
color: gray;
|
46
50
|
}
|
51
|
+
|
47
52
|
.CodeMirror {
|
48
53
|
height: 100%;
|
54
|
+
// height: auto;
|
49
55
|
min-height: 28px;
|
50
56
|
font-size: 14px;
|
51
57
|
direction: ltr;
|
@@ -1,41 +1,41 @@
|
|
1
|
-
pre {
|
2
|
-
margin: 0;
|
3
|
-
font-weight: 900;
|
4
|
-
font-size: 14px;
|
5
|
-
}
|
6
|
-
.string {
|
7
|
-
color: #3ab54a;
|
8
|
-
}
|
9
|
-
.number {
|
10
|
-
color: #25aae2;
|
11
|
-
}
|
12
|
-
.boolean {
|
13
|
-
color: #f98280;
|
14
|
-
}
|
15
|
-
.null {
|
16
|
-
color: #f1592a;
|
17
|
-
}
|
18
|
-
.width-10 {
|
19
|
-
width: 10px;
|
20
|
-
}
|
21
|
-
.key {
|
22
|
-
color: #92278f;
|
23
|
-
}
|
24
|
-
.open {
|
25
|
-
display: inline-block;
|
26
|
-
width: 12px;
|
27
|
-
height: 12px;
|
28
|
-
background: url('./icon/close.png') no-repeat;
|
29
|
-
background-size: 100% 100%;
|
30
|
-
vertical-align: middle;
|
31
|
-
cursor: pointer;
|
32
|
-
}
|
33
|
-
.close {
|
34
|
-
display: inline-block;
|
35
|
-
width: 12px;
|
36
|
-
height: 12px;
|
37
|
-
background: url('./icon/open.png') no-repeat;
|
38
|
-
background-size: 100% 100%;
|
39
|
-
vertical-align: middle;
|
40
|
-
cursor: pointer;
|
41
|
-
}
|
1
|
+
pre {
|
2
|
+
margin: 0;
|
3
|
+
font-weight: 900;
|
4
|
+
font-size: 14px;
|
5
|
+
}
|
6
|
+
.string {
|
7
|
+
color: #3ab54a;
|
8
|
+
}
|
9
|
+
.number {
|
10
|
+
color: #25aae2;
|
11
|
+
}
|
12
|
+
.boolean {
|
13
|
+
color: #f98280;
|
14
|
+
}
|
15
|
+
.null {
|
16
|
+
color: #f1592a;
|
17
|
+
}
|
18
|
+
.width-10 {
|
19
|
+
width: 10px;
|
20
|
+
}
|
21
|
+
.key {
|
22
|
+
color: #92278f;
|
23
|
+
}
|
24
|
+
.open {
|
25
|
+
display: inline-block;
|
26
|
+
width: 12px;
|
27
|
+
height: 12px;
|
28
|
+
background: url('./icon/close.png') no-repeat;
|
29
|
+
background-size: 100% 100%;
|
30
|
+
vertical-align: middle;
|
31
|
+
cursor: pointer;
|
32
|
+
}
|
33
|
+
.close {
|
34
|
+
display: inline-block;
|
35
|
+
width: 12px;
|
36
|
+
height: 12px;
|
37
|
+
background: url('./icon/open.png') no-repeat;
|
38
|
+
background-size: 100% 100%;
|
39
|
+
vertical-align: middle;
|
40
|
+
cursor: pointer;
|
41
|
+
}
|
package/es/comps/MdEdit/index.js
CHANGED
@@ -8,7 +8,7 @@ import MdEditor from 'react-markdown-editor-lite';
|
|
8
8
|
import MarkdownIt from 'markdown-it';
|
9
9
|
import emoji from 'markdown-it-emoji';
|
10
10
|
import 'react-markdown-editor-lite/lib/index.css';
|
11
|
-
import
|
11
|
+
import './index.less';
|
12
12
|
var mdParser = new MarkdownIt({
|
13
13
|
html: true,
|
14
14
|
linkify: true,
|
File without changes
|
@@ -13,7 +13,7 @@ import "antd/es/form/style";
|
|
13
13
|
import _Form from "antd/es/form";
|
14
14
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
15
15
|
import React from 'react';
|
16
|
-
import
|
16
|
+
import './index.less';
|
17
17
|
import MetaFieldsEdit from './components/MetaFieldsEdit';
|
18
18
|
import MetaPropsEdit from './components/MetaPropsEdit';
|
19
19
|
import { OUTERMOST_TYPES_OPTIONS } from './constant';
|
@@ -13,7 +13,7 @@ import "antd/es/form/style";
|
|
13
13
|
import _Form from "antd/es/form";
|
14
14
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
15
15
|
import React from 'react';
|
16
|
-
import
|
16
|
+
import './index.less';
|
17
17
|
import MetaFieldsEdit from './components/MetaFieldsEdit';
|
18
18
|
import MetaPropsEdit from './components/MetaPropsEdit';
|
19
19
|
import { OUTERMOST_TYPES_OPTIONS } from './constant';
|
@@ -8,7 +8,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
8
8
|
*/
|
9
9
|
import React from 'react';
|
10
10
|
import { deepClone } from '../../../utils';
|
11
|
-
import
|
11
|
+
import './index.less';
|
12
12
|
export function withAddOnAfter(WrappedComponent) {
|
13
13
|
return function (props) {
|
14
14
|
var type = props.type,
|
@@ -0,0 +1,25 @@
|
|
1
|
+
.with-add-on-after {
|
2
|
+
--card-bg: #ffffff;
|
3
|
+
position: relative;
|
4
|
+
width: 100%;
|
5
|
+
& > .ant-form-item {
|
6
|
+
padding: 0 !important;
|
7
|
+
flex: 1;
|
8
|
+
}
|
9
|
+
&-extra {
|
10
|
+
position: absolute;
|
11
|
+
right: 20px;
|
12
|
+
top: 18px;
|
13
|
+
padding: 0 6px;
|
14
|
+
background-color: var(--card-bg);
|
15
|
+
z-index: 1000;
|
16
|
+
}
|
17
|
+
&-ref {
|
18
|
+
position: absolute;
|
19
|
+
right: 20px;
|
20
|
+
top: -10px;
|
21
|
+
padding: 0 6px;
|
22
|
+
background-color: var(--card-bg);
|
23
|
+
z-index: 1000;
|
24
|
+
}
|
25
|
+
}
|
@@ -5,7 +5,7 @@ import _Form from "antd/es/form";
|
|
5
5
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
6
6
|
import React from 'react';
|
7
7
|
import { renderForm } from './utils';
|
8
|
-
import
|
8
|
+
import './index.less';
|
9
9
|
import { MetadataFormContext } from './interface';
|
10
10
|
import { JsonMetadataProvider } from '../../framework/metadata';
|
11
11
|
import { MetadataService } from '../../framework/metadata/MetadataService';
|
@@ -11,7 +11,7 @@ var _excluded = ["wrapper", "container", "nodes", "edges"];
|
|
11
11
|
*/
|
12
12
|
import { Graph } from '@antv/x6';
|
13
13
|
import { debounceTime, fromEventPattern, map, merge, scan, tap } from 'rxjs';
|
14
|
-
import
|
14
|
+
import './index.less';
|
15
15
|
export var GraphCore = /*#__PURE__*/function () {
|
16
16
|
// 传入的 nodes 原始信息
|
17
17
|
// 传入的 edges 原始信息
|
@@ -1,8 +1,8 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: "fa"; /* Project id 2247093 */
|
3
|
-
src: url('iconfont.woff2?t=
|
4
|
-
url('iconfont.woff?t=
|
5
|
-
url('iconfont.ttf?t=
|
3
|
+
src: url('iconfont.woff2?t=1655104677804') format('woff2'),
|
4
|
+
url('iconfont.woff?t=1655104677804') format('woff'),
|
5
|
+
url('iconfont.ttf?t=1655104677804') format('truetype');
|
6
6
|
}
|
7
7
|
|
8
8
|
.fa {
|
@@ -13,6 +13,22 @@
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
14
14
|
}
|
15
15
|
|
16
|
+
.fa-info:before {
|
17
|
+
content: "\e7dc";
|
18
|
+
}
|
19
|
+
|
20
|
+
.fa-expert:before {
|
21
|
+
content: "\e60c";
|
22
|
+
}
|
23
|
+
|
24
|
+
.fa-ai1:before {
|
25
|
+
content: "\e60d";
|
26
|
+
}
|
27
|
+
|
28
|
+
.fa-ai2:before {
|
29
|
+
content: "\e893";
|
30
|
+
}
|
31
|
+
|
16
32
|
.fa-ai:before {
|
17
33
|
content: "\e887";
|
18
34
|
}
|
Binary file
|
Binary file
|
Binary file
|
package/es/index.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
* @Date: 2021-09-18 14:15:04
|
4
4
|
* @LastEditTime: 2022-05-28 11:18:17
|
5
5
|
*/
|
6
|
-
import
|
6
|
+
import './theme.less';
|
7
7
|
export { default as MetadataEdit } from './comps/MetadataEdit';
|
8
8
|
export { default as MetaPropsEdit } from './comps/MetadataEdit/components/MetaPropsEdit';
|
9
9
|
export { default as MetadataEditV2 } from './comps/MetadataEditV2';
|
package/es/theme.less
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
.ronds-metadata-dark {
|
2
|
+
--ronds-metadata-color-border-1: #314162;
|
3
|
+
--ronds-metadata-color-bg-2: #0d1f40;
|
4
|
+
--ronds-metadata-color-bg-4: #1c3771;
|
5
|
+
--ronds-metadata-color-text-1: #ffffff;
|
6
|
+
|
7
|
+
::-webkit-scrollbar {
|
8
|
+
width: 6px;
|
9
|
+
height: 6px;
|
10
|
+
overflow: auto;
|
11
|
+
}
|
12
|
+
::-webkit-scrollbar-corner {
|
13
|
+
background-color: transparent;
|
14
|
+
color: transparent;
|
15
|
+
}
|
16
|
+
|
17
|
+
::-webkit-scrollbar-thumb {
|
18
|
+
box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
19
|
+
background: var(--scrollbar-color);
|
20
|
+
min-height: 25px;
|
21
|
+
min-width: 25px;
|
22
|
+
border-radius: 3px;
|
23
|
+
|
24
|
+
&:hover {
|
25
|
+
border-radius: 2px;
|
26
|
+
// box-shadow: inset 0 0 5px var(--scrollbar-color-hover);
|
27
|
+
background: var(--scrollbar-color-hover);
|
28
|
+
}
|
29
|
+
|
30
|
+
&:active {
|
31
|
+
// box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
32
|
+
background: var(--scrollbar-color-hover);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.ronds-metadata-normal {
|
38
|
+
--ronds-metadata-color-border-1: #d9d9d9;
|
39
|
+
--ronds-metadata-color-bg-2: rgba(229, 238, 255, 0.85);
|
40
|
+
--ronds-metadata-color-bg-4: #ffffff;
|
41
|
+
--ronds-metadata-color-text-1: #1d2129;
|
42
|
+
|
43
|
+
::-webkit-scrollbar {
|
44
|
+
width: 6px;
|
45
|
+
height: 6px;
|
46
|
+
overflow: auto;
|
47
|
+
}
|
48
|
+
|
49
|
+
::-webkit-scrollbar-thumb {
|
50
|
+
background-color: var(--scrollbar-color);
|
51
|
+
min-height: 25px;
|
52
|
+
min-width: 25px;
|
53
|
+
border-radius: 3px;
|
54
|
+
|
55
|
+
&:hover {
|
56
|
+
background-color: #a8a8a8;
|
57
|
+
}
|
58
|
+
|
59
|
+
&:active {
|
60
|
+
background-color: #787878;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* border: 1px solid #e0e0e0; */
|
64
|
+
}
|
65
|
+
|
66
|
+
::-webkit-scrollbar-track {
|
67
|
+
background-color: #f7f7f7;
|
68
|
+
}
|
69
|
+
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"public": true,
|
3
3
|
"name": "ronds-metadata",
|
4
|
-
"version": "1.1.
|
4
|
+
"version": "1.1.16",
|
5
5
|
"scripts": {
|
6
6
|
"start": "dumi dev",
|
7
7
|
"docs:build": "dumi build",
|
@@ -11,7 +11,8 @@
|
|
11
11
|
"release": "npm run build && npm publish",
|
12
12
|
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
|
13
13
|
"test": "umi-test",
|
14
|
-
"test:coverage": "umi-test --coverage"
|
14
|
+
"test:coverage": "umi-test --coverage",
|
15
|
+
"prepublishOnly": "npm run build"
|
15
16
|
},
|
16
17
|
"main": "es",
|
17
18
|
"module": "es",
|
@@ -1,21 +0,0 @@
|
|
1
|
-
.graphContextMenu {
|
2
|
-
position: absolute;
|
3
|
-
z-index: 1;
|
4
|
-
background-color: #fff;
|
5
|
-
}
|
6
|
-
.loadExperimentModal :global .ant-modal-title {
|
7
|
-
font-size: 14px;
|
8
|
-
}
|
9
|
-
.loadExperimentModal :global .ant-btn {
|
10
|
-
font-size: 12px;
|
11
|
-
}
|
12
|
-
.loadExperimentModal .versionTable :global .ant-table.ant-table-small {
|
13
|
-
font-size: 12px;
|
14
|
-
}
|
15
|
-
.loadExperimentModal .versionTable .operations :global .ant-btn:first-of-type {
|
16
|
-
padding-left: 0;
|
17
|
-
border-left: 0;
|
18
|
-
}
|
19
|
-
.loadExperimentModal .versionTable .operations :global .ant-btn.ant-btn-sm {
|
20
|
-
font-size: 12px;
|
21
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
.graphContextMenu {
|
2
|
-
position: absolute;
|
3
|
-
z-index: 1;
|
4
|
-
width: 100px;
|
5
|
-
background-color: #fff;
|
6
|
-
box-shadow: 0 2px 10px rgb(0 0 0 1);
|
7
|
-
}
|
8
|
-
.loadExperimentModal :global .ant-modal-title {
|
9
|
-
font-size: 14px;
|
10
|
-
}
|
11
|
-
.loadExperimentModal :global .ant-btn {
|
12
|
-
font-size: 12px;
|
13
|
-
}
|
14
|
-
.loadExperimentModal .versionTable :global .ant-table.ant-table-small {
|
15
|
-
font-size: 12px;
|
16
|
-
}
|
17
|
-
.loadExperimentModal .versionTable .operations :global .ant-btn:first-of-type {
|
18
|
-
padding-left: 0;
|
19
|
-
border-left: 0;
|
20
|
-
}
|
21
|
-
.loadExperimentModal .versionTable .operations :global .ant-btn.ant-btn-sm {
|
22
|
-
font-size: 12px;
|
23
|
-
}
|