d2coreui 23.0.16 → 23.0.18
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/components/codemirror/SyntaxHighlighter.js.map +1 -1
- package/components/color/colorSwatch.js.map +1 -1
- package/components/date/dateRangeInput.js +1 -1
- package/components/date/dateRangeInput.js.map +1 -1
- package/components/date/dateTimeInput.js +2 -2
- package/components/date/dateTimeInput.js.map +1 -1
- package/components/date/durationInput.js +2 -2
- package/components/date/durationInput.js.map +1 -1
- package/components/grid/cell/cellEditorUtils.js.map +1 -1
- package/components/grid/columnUtils.js.map +1 -1
- package/components/grid/export/progressPopup.js.map +1 -1
- package/components/grid/export/worker/clipboardExport.js.map +1 -1
- package/components/grid/export/worker/csvExport.js.map +1 -1
- package/components/grid/export/worker/txtExport.js.map +1 -1
- package/components/icons/ant-design-double-right-outline.svg +5 -5
- package/components/icons/ant-design_close-outline.svg +5 -5
- package/components/icons/undoIcon.js.map +1 -1
- package/components/input/draftUtils.js.map +1 -1
- package/components/input/draftail.js.map +1 -1
- package/components/input/mask/inputMaskCore.js.map +1 -1
- package/components/input/mask/pattern.js.map +1 -1
- package/components/input/passwordInput.js.map +1 -1
- package/components/input/textarea/extractSpansOfClasses.js.map +1 -1
- package/components/input/textarea/getRanges.js.map +1 -1
- package/components/input/textarea/getType.js.map +1 -1
- package/components/input/textarea/highlighedContents.js.map +1 -1
- package/components/input/textarea/mentionsWithHighlighting.js.map +1 -1
- package/components/keyboard/keyboardUtils.js.map +1 -1
- package/components/platformSpecific.js.map +1 -1
- package/components/text/impl/innerSize.js.map +1 -1
- package/components/text/impl/series.js.map +1 -1
- package/components/text/impl/shallowEqual.js.map +1 -1
- package/components/text/impl/uniqueId.js.map +1 -1
- package/components/text/impl/whilst.js.map +1 -1
- package/i18n/componentsLocaleHolder.js +1 -1
- package/i18n/componentsLocaleHolder.js.map +1 -1
- package/package.json +1 -1
- package/style/ag-grid/_ag-theme-antd-vars.scss +194 -194
- package/style/ag-grid/ag-theme-antd.scss +87 -87
- package/style/ag-grid/aggrid-adaptations.css +42 -42
- package/style/ag-grid/aggrid.scss +11 -11
- package/style/flexLayout/flexLayout.scss +130 -130
- package/style/flexLayout/flexLayoutBase.scss +623 -623
- package/style/flexLayout/new/_base.scss +616 -616
- package/style/flexLayout/new/flexLayoutBase.scss +621 -621
- package/style/flexLayout/new/light.scss +107 -107
- package/style/flexLayout/old/_base.scss +551 -551
- package/style/flexLayout/old/light.scss +16 -16
- package/style/form/niceFormItem.css +38 -38
- package/style/loading.css +31 -31
- package/style/splitPane/splitPane.css +48 -48
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
@import "./ag-theme-material-vars";
|
|
2
|
-
@import "../../../../node_modules/ag-grid-community/src/styles/ag-theme-base/sass/ag-theme-base";
|
|
3
|
-
|
|
4
|
-
.ag-theme-material {
|
|
5
|
-
%selected-tab {
|
|
6
|
-
border-bottom: 2px solid $primary-color;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@include ag-grid-theme($params);
|
|
10
|
-
|
|
11
|
-
.ag-icon-checkbox-checked,
|
|
12
|
-
.ag-icon-checkbox-checked-readonly,
|
|
13
|
-
.ag-icon-checkbox-unchecked,
|
|
14
|
-
.ag-icon-checkbox-unchecked-readonly,
|
|
15
|
-
.ag-icon-checkbox-indeterminate,
|
|
16
|
-
.ag-icon-checkbox-indeterminate-readonly,
|
|
17
|
-
.ag-icon-radio-button-on,
|
|
18
|
-
.ag-icon-radio-button-off {
|
|
19
|
-
height: $icon-size + 6;
|
|
20
|
-
width: $icon-size + 6;
|
|
21
|
-
font-size: $icon-size + 6;
|
|
22
|
-
line-height: $icon-size + 6;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.ag-header-cell, .ag-header-group-cell {
|
|
26
|
-
transition: background-color 0.5s;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.ag-cell-highlight {
|
|
30
|
-
background-color: $range-selection-highlight-color !important;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ag-cell-highlight-animation {
|
|
34
|
-
transition: background-color 1s;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.ag-menu-option {
|
|
38
|
-
height: $grid-size * 5 - 2;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.ag-side-bar {
|
|
42
|
-
border-bottom: 0;
|
|
43
|
-
border-right: 0;
|
|
44
|
-
border-top: 0;
|
|
45
|
-
|
|
46
|
-
.ag-side-buttons button {
|
|
47
|
-
border: 0;
|
|
48
|
-
color: $secondary-foreground-color;
|
|
49
|
-
font-family: $secondary-font-family;
|
|
50
|
-
font-size: $secondary-font-size;
|
|
51
|
-
font-weight: $secondary-font-weight;
|
|
52
|
-
background: transparent;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.ag-side-buttons .ag-side-button button {
|
|
56
|
-
background-color: transparent;
|
|
57
|
-
border-width: 0;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.ag-side-buttons .ag-selected button {
|
|
61
|
-
border-left: 2px solid $primary-color;
|
|
62
|
-
background-color: $tool-panel-background-color;
|
|
63
|
-
margin-left: -2px;
|
|
64
|
-
padding-left: 1px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.ag-filter-toolpanel-body {
|
|
68
|
-
background-color: $background-color;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.ag-status-bar {
|
|
73
|
-
border-top-width: 1px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.ag-rtl .ag-side-bar {
|
|
77
|
-
.ag-side-buttons .ag-selected button {
|
|
78
|
-
border-left: 0;
|
|
79
|
-
margin-left: 0;
|
|
80
|
-
padding-left:0;
|
|
81
|
-
|
|
82
|
-
border-right: 2px solid $primary-color;
|
|
83
|
-
margin-right: -2px;
|
|
84
|
-
padding-right: 1px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
@import "./ag-theme-material-vars";
|
|
2
|
+
@import "../../../../node_modules/ag-grid-community/src/styles/ag-theme-base/sass/ag-theme-base";
|
|
3
|
+
|
|
4
|
+
.ag-theme-material {
|
|
5
|
+
%selected-tab {
|
|
6
|
+
border-bottom: 2px solid $primary-color;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@include ag-grid-theme($params);
|
|
10
|
+
|
|
11
|
+
.ag-icon-checkbox-checked,
|
|
12
|
+
.ag-icon-checkbox-checked-readonly,
|
|
13
|
+
.ag-icon-checkbox-unchecked,
|
|
14
|
+
.ag-icon-checkbox-unchecked-readonly,
|
|
15
|
+
.ag-icon-checkbox-indeterminate,
|
|
16
|
+
.ag-icon-checkbox-indeterminate-readonly,
|
|
17
|
+
.ag-icon-radio-button-on,
|
|
18
|
+
.ag-icon-radio-button-off {
|
|
19
|
+
height: $icon-size + 6;
|
|
20
|
+
width: $icon-size + 6;
|
|
21
|
+
font-size: $icon-size + 6;
|
|
22
|
+
line-height: $icon-size + 6;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ag-header-cell, .ag-header-group-cell {
|
|
26
|
+
transition: background-color 0.5s;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ag-cell-highlight {
|
|
30
|
+
background-color: $range-selection-highlight-color !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ag-cell-highlight-animation {
|
|
34
|
+
transition: background-color 1s;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ag-menu-option {
|
|
38
|
+
height: $grid-size * 5 - 2;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ag-side-bar {
|
|
42
|
+
border-bottom: 0;
|
|
43
|
+
border-right: 0;
|
|
44
|
+
border-top: 0;
|
|
45
|
+
|
|
46
|
+
.ag-side-buttons button {
|
|
47
|
+
border: 0;
|
|
48
|
+
color: $secondary-foreground-color;
|
|
49
|
+
font-family: $secondary-font-family;
|
|
50
|
+
font-size: $secondary-font-size;
|
|
51
|
+
font-weight: $secondary-font-weight;
|
|
52
|
+
background: transparent;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.ag-side-buttons .ag-side-button button {
|
|
56
|
+
background-color: transparent;
|
|
57
|
+
border-width: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ag-side-buttons .ag-selected button {
|
|
61
|
+
border-left: 2px solid $primary-color;
|
|
62
|
+
background-color: $tool-panel-background-color;
|
|
63
|
+
margin-left: -2px;
|
|
64
|
+
padding-left: 1px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.ag-filter-toolpanel-body {
|
|
68
|
+
background-color: $background-color;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ag-status-bar {
|
|
73
|
+
border-top-width: 1px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ag-rtl .ag-side-bar {
|
|
77
|
+
.ag-side-buttons .ag-selected button {
|
|
78
|
+
border-left: 0;
|
|
79
|
+
margin-left: 0;
|
|
80
|
+
padding-left:0;
|
|
81
|
+
|
|
82
|
+
border-right: 2px solid $primary-color;
|
|
83
|
+
margin-right: -2px;
|
|
84
|
+
padding-right: 1px;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
.ag-header-cell .ag-react-container {
|
|
2
|
-
display: -webkit-box;
|
|
3
|
-
display: -ms-flexbox;
|
|
4
|
-
display: flex;
|
|
5
|
-
-webkit-box-pack: justify;
|
|
6
|
-
-ms-flex-pack: justify;
|
|
7
|
-
justify-content: space-between;
|
|
8
|
-
-webkit-box-orient: horizontal;
|
|
9
|
-
-webkit-box-direction: reverse;
|
|
10
|
-
-ms-flex-direction: row-reverse;
|
|
11
|
-
flex-direction: row-reverse;
|
|
12
|
-
-webkit-box-align: center;
|
|
13
|
-
-ms-flex-align: center;
|
|
14
|
-
align-items: center;
|
|
15
|
-
width: 100%;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.ag-theme-balham .ag-row-selected {
|
|
19
|
-
background-color: #b7e4ff !important;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.ag-theme-balham .ag-cell {
|
|
23
|
-
line-height: inherit;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/*!* enable basic browser text selection in grid cells *!*/
|
|
27
|
-
/*div.ag-root .ag-cell-focus {*/
|
|
28
|
-
/* -webkit-user-select: text;*/
|
|
29
|
-
/* -moz-user-select: text;*/
|
|
30
|
-
/* -ms-user-select: text;*/
|
|
31
|
-
/* user-select: text;*/
|
|
32
|
-
/*}*/
|
|
33
|
-
|
|
34
|
-
.ag-theme-balham .ag-cell-archive-max {
|
|
35
|
-
background-color: rgba(146, 222, 100, 0.5) !important; }
|
|
36
|
-
.ag-theme-balham .ag-cell-archive-max-animation {
|
|
37
|
-
background-color: transparent;
|
|
38
|
-
transition: background-color 1s; }
|
|
39
|
-
.ag-theme-balham .ag-cell-archive-min {
|
|
40
|
-
background-color: rgba(255, 120, 117, 0.5) !important; }
|
|
41
|
-
.ag-theme-balham .ag-cell-archive-min-animation {
|
|
42
|
-
background-color: transparent;
|
|
1
|
+
.ag-header-cell .ag-react-container {
|
|
2
|
+
display: -webkit-box;
|
|
3
|
+
display: -ms-flexbox;
|
|
4
|
+
display: flex;
|
|
5
|
+
-webkit-box-pack: justify;
|
|
6
|
+
-ms-flex-pack: justify;
|
|
7
|
+
justify-content: space-between;
|
|
8
|
+
-webkit-box-orient: horizontal;
|
|
9
|
+
-webkit-box-direction: reverse;
|
|
10
|
+
-ms-flex-direction: row-reverse;
|
|
11
|
+
flex-direction: row-reverse;
|
|
12
|
+
-webkit-box-align: center;
|
|
13
|
+
-ms-flex-align: center;
|
|
14
|
+
align-items: center;
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ag-theme-balham .ag-row-selected {
|
|
19
|
+
background-color: #b7e4ff !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.ag-theme-balham .ag-cell {
|
|
23
|
+
line-height: inherit;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/*!* enable basic browser text selection in grid cells *!*/
|
|
27
|
+
/*div.ag-root .ag-cell-focus {*/
|
|
28
|
+
/* -webkit-user-select: text;*/
|
|
29
|
+
/* -moz-user-select: text;*/
|
|
30
|
+
/* -ms-user-select: text;*/
|
|
31
|
+
/* user-select: text;*/
|
|
32
|
+
/*}*/
|
|
33
|
+
|
|
34
|
+
.ag-theme-balham .ag-cell-archive-max {
|
|
35
|
+
background-color: rgba(146, 222, 100, 0.5) !important; }
|
|
36
|
+
.ag-theme-balham .ag-cell-archive-max-animation {
|
|
37
|
+
background-color: transparent;
|
|
38
|
+
transition: background-color 1s; }
|
|
39
|
+
.ag-theme-balham .ag-cell-archive-min {
|
|
40
|
+
background-color: rgba(255, 120, 117, 0.5) !important; }
|
|
41
|
+
.ag-theme-balham .ag-cell-archive-min-animation {
|
|
42
|
+
background-color: transparent;
|
|
43
43
|
transition: background-color 1s; }
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
$ag-icons-path: '~ag-grid-community/src/styles/icons/';
|
|
2
|
-
$ag-mat-icons-path: '~ag-grid-community/src/styles/materialicons/';
|
|
3
|
-
|
|
4
|
-
$grid-size: 4px; // 8 by default
|
|
5
|
-
$icon-size: 12px; // 18 by default
|
|
6
|
-
|
|
7
|
-
// Change the primary / accent colors
|
|
8
|
-
$ag-mat-primary: #1976d2;
|
|
9
|
-
$ag-mat-accent: #fbc02d;
|
|
10
|
-
|
|
11
|
-
@import '../../../../node_modules/ag-grid-community/src/styles/ag-grid';
|
|
1
|
+
$ag-icons-path: '~ag-grid-community/src/styles/icons/';
|
|
2
|
+
$ag-mat-icons-path: '~ag-grid-community/src/styles/materialicons/';
|
|
3
|
+
|
|
4
|
+
$grid-size: 4px; // 8 by default
|
|
5
|
+
$icon-size: 12px; // 18 by default
|
|
6
|
+
|
|
7
|
+
// Change the primary / accent colors
|
|
8
|
+
$ag-mat-primary: #1976d2;
|
|
9
|
+
$ag-mat-accent: #fbc02d;
|
|
10
|
+
|
|
11
|
+
@import '../../../../node_modules/ag-grid-community/src/styles/ag-grid';
|
|
12
12
|
@import '../../../../node_modules/ag-grid-community/src/styles/ag-theme-material/sass/ag-theme-material';
|
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-
$color_text: rgba(0, 0, 0, 0.85);
|
|
2
|
-
$color_selected: rgb(24, 144, 255);
|
|
3
|
-
$color_background: #F5F5F5;
|
|
4
|
-
$color_background_selected: white;
|
|
5
|
-
$color_background_unselected: #EFEFEF;
|
|
6
|
-
$color_content_background: white;
|
|
7
|
-
$color_background_border: #aaa;
|
|
8
|
-
$color_drag1_background: rgba(95, 134, 196, 0.1) !default;
|
|
9
|
-
$color_drag2_background: rgba(119, 166, 119, 0.075) !default;
|
|
10
|
-
|
|
11
|
-
$color_border: #eeeeee;
|
|
12
|
-
$color_border_line: #ddd;
|
|
13
|
-
|
|
14
|
-
$color_splitter: #F5F5F5;
|
|
15
|
-
$color_splitter_hover: #ccc;
|
|
16
|
-
$color_splitter_drag: #bbb;
|
|
17
|
-
|
|
18
|
-
$color_drag1: #1890ff;
|
|
19
|
-
$color_drag2: green;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
$color_base: #F5F5F5;
|
|
23
|
-
$color_1: #F5F5F5;
|
|
24
|
-
$color_2: #EFEFEF;
|
|
25
|
-
$color_3: #EFEFEF;
|
|
26
|
-
$color_4: #EFEFEF;
|
|
27
|
-
$color_5: #bbb;
|
|
28
|
-
$color_6: scale_color($color_5, $lightness: -3%) !default;
|
|
29
|
-
|
|
30
|
-
$font-size: 14px;
|
|
31
|
-
$font-family: null;
|
|
32
|
-
|
|
33
|
-
#mountNode > div > .flexlayout__layout {
|
|
34
|
-
border-top: 1px solid #ddd;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@mixin tabset_mixin {
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@mixin tabset_tabbar_mixin {
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@mixin tabset_header_mixin {
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
@mixin tabset_selected_mixin {
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@mixin tabset_maximized_mixin {
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@mixin tab_top_mixin {
|
|
53
|
-
border-top-left-radius: 0px;
|
|
54
|
-
border-top-right-radius: 0px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@mixin tab_bottom_mixin {
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@mixin tab_button_mixin {
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
@mixin tab_button_selected_mixin {
|
|
64
|
-
background-color: $color_background_selected;
|
|
65
|
-
color: $color_selected;
|
|
66
|
-
font-weight: 500;
|
|
67
|
-
border-bottom: 3px solid $color_content_background;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
@mixin tab_button_unselected_mixin {
|
|
71
|
-
color: gray;
|
|
72
|
-
background-color: $color_background_unselected;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
@mixin tab_button_hovered_mixin {
|
|
76
|
-
background-color: $color_background_selected;
|
|
77
|
-
color: $color_selected;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
@mixin close_button_hovered_mixin {
|
|
81
|
-
//background-color:var(--color-3);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
@mixin toolbar_button_hovered_mixin {
|
|
85
|
-
//background-color:var(--color-2);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
@mixin border_mixin {
|
|
89
|
-
background-color: $color_border;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
@mixin border_button_mixin {
|
|
93
|
-
background-color: var(--color-2);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
@mixin border_button_selected_mixin {
|
|
97
|
-
background-color: $color_border_line;
|
|
98
|
-
color: $color_text;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@mixin border_button_unselected_mixin {
|
|
102
|
-
color: gray;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@mixin border_button_hovered_mixin {
|
|
106
|
-
background-color: $color_border_line;
|
|
107
|
-
color: $color_text;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
@mixin splitter_mixin {
|
|
111
|
-
background-color: $color_splitter;
|
|
112
|
-
//OK
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
@mixin splitter_hover_mixin {
|
|
116
|
-
background-color: $color_splitter_hover;
|
|
117
|
-
//OK
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
@mixin splitter_drag_mixin {
|
|
121
|
-
border-radius: 5px;
|
|
122
|
-
background-color: $color_splitter_drag;
|
|
123
|
-
//OK
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
@mixin splitter_border_mixin {
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
@import "flexLayoutBase";
|
|
130
|
-
|
|
1
|
+
$color_text: rgba(0, 0, 0, 0.85);
|
|
2
|
+
$color_selected: rgb(24, 144, 255);
|
|
3
|
+
$color_background: #F5F5F5;
|
|
4
|
+
$color_background_selected: white;
|
|
5
|
+
$color_background_unselected: #EFEFEF;
|
|
6
|
+
$color_content_background: white;
|
|
7
|
+
$color_background_border: #aaa;
|
|
8
|
+
$color_drag1_background: rgba(95, 134, 196, 0.1) !default;
|
|
9
|
+
$color_drag2_background: rgba(119, 166, 119, 0.075) !default;
|
|
10
|
+
|
|
11
|
+
$color_border: #eeeeee;
|
|
12
|
+
$color_border_line: #ddd;
|
|
13
|
+
|
|
14
|
+
$color_splitter: #F5F5F5;
|
|
15
|
+
$color_splitter_hover: #ccc;
|
|
16
|
+
$color_splitter_drag: #bbb;
|
|
17
|
+
|
|
18
|
+
$color_drag1: #1890ff;
|
|
19
|
+
$color_drag2: green;
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
$color_base: #F5F5F5;
|
|
23
|
+
$color_1: #F5F5F5;
|
|
24
|
+
$color_2: #EFEFEF;
|
|
25
|
+
$color_3: #EFEFEF;
|
|
26
|
+
$color_4: #EFEFEF;
|
|
27
|
+
$color_5: #bbb;
|
|
28
|
+
$color_6: scale_color($color_5, $lightness: -3%) !default;
|
|
29
|
+
|
|
30
|
+
$font-size: 14px;
|
|
31
|
+
$font-family: null;
|
|
32
|
+
|
|
33
|
+
#mountNode > div > .flexlayout__layout {
|
|
34
|
+
border-top: 1px solid #ddd;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@mixin tabset_mixin {
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@mixin tabset_tabbar_mixin {
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@mixin tabset_header_mixin {
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@mixin tabset_selected_mixin {
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@mixin tabset_maximized_mixin {
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@mixin tab_top_mixin {
|
|
53
|
+
border-top-left-radius: 0px;
|
|
54
|
+
border-top-right-radius: 0px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@mixin tab_bottom_mixin {
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@mixin tab_button_mixin {
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
@mixin tab_button_selected_mixin {
|
|
64
|
+
background-color: $color_background_selected;
|
|
65
|
+
color: $color_selected;
|
|
66
|
+
font-weight: 500;
|
|
67
|
+
border-bottom: 3px solid $color_content_background;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@mixin tab_button_unselected_mixin {
|
|
71
|
+
color: gray;
|
|
72
|
+
background-color: $color_background_unselected;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@mixin tab_button_hovered_mixin {
|
|
76
|
+
background-color: $color_background_selected;
|
|
77
|
+
color: $color_selected;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@mixin close_button_hovered_mixin {
|
|
81
|
+
//background-color:var(--color-3);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@mixin toolbar_button_hovered_mixin {
|
|
85
|
+
//background-color:var(--color-2);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@mixin border_mixin {
|
|
89
|
+
background-color: $color_border;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@mixin border_button_mixin {
|
|
93
|
+
background-color: var(--color-2);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@mixin border_button_selected_mixin {
|
|
97
|
+
background-color: $color_border_line;
|
|
98
|
+
color: $color_text;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@mixin border_button_unselected_mixin {
|
|
102
|
+
color: gray;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@mixin border_button_hovered_mixin {
|
|
106
|
+
background-color: $color_border_line;
|
|
107
|
+
color: $color_text;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@mixin splitter_mixin {
|
|
111
|
+
background-color: $color_splitter;
|
|
112
|
+
//OK
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@mixin splitter_hover_mixin {
|
|
116
|
+
background-color: $color_splitter_hover;
|
|
117
|
+
//OK
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@mixin splitter_drag_mixin {
|
|
121
|
+
border-radius: 5px;
|
|
122
|
+
background-color: $color_splitter_drag;
|
|
123
|
+
//OK
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
@mixin splitter_border_mixin {
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@import "flexLayoutBase";
|
|
130
|
+
|