@lambo-design/shared 1.0.0-beta.205 → 1.0.0-beta.206

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 (52) hide show
  1. package/nstyles/common.less +197 -197
  2. package/nstyles/components/404.less +46 -46
  3. package/nstyles/components/button.less +34 -34
  4. package/nstyles/components/date-picker.less +37 -37
  5. package/nstyles/components/drawer.less +20 -20
  6. package/nstyles/components/dropdown.less +18 -18
  7. package/nstyles/components/excel-flow.less +72 -72
  8. package/nstyles/components/form.less +2 -2
  9. package/nstyles/components/index.less +8 -0
  10. package/nstyles/components/layout/collect.less +10 -10
  11. package/nstyles/components/layout/detail-view.less +107 -107
  12. package/nstyles/components/layout/full-screen.less +7 -7
  13. package/nstyles/components/layout/other-menu.less +142 -142
  14. package/nstyles/components/layout/page-view.less +101 -101
  15. package/nstyles/components/layout/sider-trigger.less +41 -41
  16. package/nstyles/components/layout/tags-nav.less +113 -113
  17. package/nstyles/components/modal.less +85 -85
  18. package/nstyles/components/n-button.less +131 -0
  19. package/nstyles/components/n-image-preview.less +131 -0
  20. package/nstyles/components/n-model/index.less +19 -0
  21. package/nstyles/components/n-model/report-index.less +43 -0
  22. package/nstyles/components/n-panel.less +41 -0
  23. package/nstyles/components/n-picker.less +37 -0
  24. package/nstyles/components/n-sign.less +17 -0
  25. package/nstyles/components/n-tooltip.less +10 -0
  26. package/nstyles/components/panel.less +31 -31
  27. package/nstyles/components/select.less +3 -3
  28. package/nstyles/components/sign.less +27 -27
  29. package/nstyles/components/tree.less +1 -1
  30. package/nstyles/components/upload.less +131 -131
  31. package/nstyles/index.less +5 -5
  32. package/nstyles/reset.less +65 -65
  33. package/nstyles/third/ag.less +3 -2
  34. package/nstyles/third/index.less +11 -11
  35. package/nstyles/third/view-design.less +356 -356
  36. package/nstyles/variables/base.less +143 -143
  37. package/nstyles/variables/index.less +4 -4
  38. package/nstyles/variables/theme/default/button.less +7 -7
  39. package/nstyles/variables/theme/default/common.less +57 -57
  40. package/nstyles/variables/theme/default/index.less +7 -7
  41. package/nstyles/variables/theme/default/layout.less +40 -40
  42. package/nstyles/variables/theme/default/table.less +37 -37
  43. package/nstyles/variables/theme/default/tag.less +3 -3
  44. package/nstyles/variables/theme/default/upload.less +3 -3
  45. package/nstyles/variables/theme/index.less +13 -13
  46. package/nstyles/variables/theme/small/button.less +7 -7
  47. package/nstyles/variables/theme/small/common.less +39 -39
  48. package/nstyles/variables/theme/small/index.less +5 -5
  49. package/nstyles/variables/theme/small/layout.less +21 -21
  50. package/nstyles/variables/theme/small/table.less +17 -17
  51. package/nstyles/variables/theme/small/tag.less +3 -3
  52. package/package.json +4 -1
@@ -0,0 +1,43 @@
1
+ .report-index-model-panel .left-panel{
2
+ padding:var(--report-index-model-panel-padding);
3
+ border:1px solid var(--ind-border-color)
4
+ }
5
+ .report-index-model-panel .left-panel .report-index-dimension1-panel{
6
+ width:100px;
7
+ height:-webkit-fit-content;
8
+ height:-moz-fit-content;
9
+ height:fit-content;
10
+ border:1px solid var(--ind-border-color);
11
+ border-radius:4px
12
+ }
13
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1{
14
+ text-align:center;
15
+ line-height:30px;
16
+ border-bottom:1px solid var(--ind-border-color);
17
+ cursor:pointer
18
+ }
19
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1:last-child{
20
+ border-bottom:none
21
+ }
22
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1.selected{
23
+ background-color:var(--ind-blue);
24
+ color:var(--ind-white)
25
+ }
26
+ .report-index-model-panel .left-panel .report-index-index-panel{
27
+ border-left:1px solid var(--ind-border-color)
28
+ }
29
+ .report-index-model-panel .left-panel .report-index-options{
30
+ padding:0 var(--report-index-model-panel-padding);
31
+ padding-right:var(--report-index-options-padding-right)
32
+ }
33
+ .report-index-model-panel .opt-panel{
34
+ padding:0 20px;
35
+ height:600px;
36
+ -webkit-box-pack:center;
37
+ -ms-flex-pack:center;
38
+ justify-content:center
39
+ }
40
+ .report-index-model-panel .right-panel{
41
+ padding:var(--report-index-model-panel-padding);
42
+ border:1px solid var(--ind-border-color)
43
+ }
@@ -0,0 +1,41 @@
1
+ .ind-loading-panel{
2
+ position:relative;
3
+ height:auto
4
+ }
5
+ .ind-loading-panel .ind-loading-spin--dark{
6
+ background-color:#e1e1e1;
7
+ opacity:.9
8
+ }
9
+ .ind-loading-panel .ind-loading-spin-icon{
10
+ -webkit-animation:ani-loading-spin 1s linear infinite;
11
+ animation:ani-loading-spin 1s linear infinite
12
+ }
13
+ @-webkit-keyframes ani-loading-spin{
14
+ from{
15
+ -webkit-transform:rotate(0);transform:rotate(0)
16
+ }
17
+ 50%{
18
+ -webkit-transform:rotate(180deg);transform:rotate(180deg)
19
+ }
20
+ to{
21
+ -webkit-transform:rotate(360deg);transform:rotate(360deg)
22
+ }
23
+ }@keyframes ani-loading-spin{
24
+ from{
25
+ -webkit-transform:rotate(0);transform:rotate(0)
26
+ }
27
+ 50%{
28
+ -webkit-transform:rotate(180deg);
29
+ transform:rotate(180deg)
30
+ }
31
+ to{
32
+ -webkit-transform:rotate(360deg);
33
+ transform:rotate(360deg)
34
+ }
35
+ }
36
+
37
+ .ind-back-top-panel{
38
+ position:relative;
39
+ height:100%;
40
+ overflow-y:auto
41
+ }
@@ -0,0 +1,37 @@
1
+ .ind-date-picker {
2
+ .ivu-date-picker {
3
+ width: -webkit-fill-available;
4
+ }
5
+
6
+ .ind-range-date-picker {
7
+ display: flex;
8
+ align-items: center;
9
+
10
+ .range-sep {
11
+ margin: 0 var(--ind-padding-base);
12
+ }
13
+ }
14
+ }
15
+
16
+ .ind-picker-drop {
17
+ .ivu-date-picker-cells-month.quarter,
18
+ .ivu-date-picker-cells-month.half-year {
19
+ span {
20
+ margin-left: 0;
21
+ margin-right: 0;
22
+ width: 50%;
23
+ text-align: center;
24
+
25
+ em {
26
+ width: auto;
27
+ padding: 0 10px;
28
+ }
29
+ }
30
+ }
31
+ .ivu-date-picker-cells-month.half-year {
32
+ display: flex;
33
+ span {
34
+ flex: 50% 1 1;
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,17 @@
1
+ .ind-sign{
2
+ padding:var(--ind-sign-padding)
3
+ }
4
+ .ind-sign__content{
5
+ display:flex;
6
+ justify-content:center;
7
+ align-items:center;
8
+ height:var(--ind-sign-content-height);
9
+ background-color:var(--ind-sign-content-background);
10
+ border:var(--ind-sign-content-border);
11
+ border-radius:var(--ind-border-radius-md);
12
+ overflow:hidden
13
+ }
14
+ .ind-sign__content canvas{
15
+ width:100%;
16
+ height:100%
17
+ }
@@ -0,0 +1,10 @@
1
+ .ivu-tooltip-arrow{
2
+ border-bottom-color:#e8e9ea !important
3
+ }
4
+ .ivu-tooltip-inner{
5
+ background-color:#e8e9ea !important;
6
+ color:#333 !important
7
+ }
8
+ body>.ivu-tooltip-popper .ivu-tooltip-inner {
9
+ white-space:pre-wrap
10
+ }
@@ -1,31 +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
- }
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
+ }
@@ -1,3 +1,3 @@
1
- .ind-select-item.select-all {
2
- border-bottom: 2px solid var(--ind-border-color);
3
- }
1
+ .ind-select-item.select-all {
2
+ border-bottom: 2px solid var(--ind-border-color);
3
+ }
@@ -1,27 +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
- }
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
+ }
@@ -156,4 +156,4 @@
156
156
 
157
157
  .ivu-tree ul li {
158
158
  margin: var(--ivu-tree-margin);
159
- }
159
+ }
@@ -1,131 +1,131 @@
1
- .upload-file {
2
- position: relative;
3
- min-height: 45px;
4
-
5
- .data-panel {
6
- padding: 5px 10px 0px 10px;
7
- border: 1px #dee1e8 solid;
8
- border-radius: 5px;
9
- }
10
-
11
- .content-item {
12
- display: flex;
13
- line-height: var(--file-line-height);
14
- box-sizing: border-box;
15
- border-bottom: 1px solid var(--ind-border-color);
16
- // padding-left: 20px;
17
- &:last-child {
18
- border-bottom: none;
19
- }
20
-
21
- .title {
22
- width: calc(100% - 240px);
23
- font-size: 14px;
24
- line-height: var(--file-line-height);
25
- white-space: nowrap;
26
- overflow: hidden;
27
- text-overflow: ellipsis;
28
- }
29
- .preview {
30
- width: 80px;
31
- text-align: center;
32
- color: var(--ind-primary-color);
33
- cursor: pointer;
34
- }
35
- .download,
36
- .delete {
37
- display: block;
38
- width: 80px;
39
- line-height: var(--file-line-height);
40
- cursor: pointer;
41
- i {
42
- font-size: 18px;
43
- vertical-align: middle !important;
44
- }
45
- text-align: center;
46
- color: var(--ind-primary-color);
47
- }
48
- }
49
- }
50
-
51
- .ivu-divider-horizontal {
52
- margin: 5px 0;
53
- }
54
-
55
- .upload-img {
56
- padding: 2px;
57
- min-height: 60px;
58
- line-height: 0px;
59
- border: 2px var(--ind-bg-color-dark) solid;
60
-
61
- .demo-upload-list {
62
- display: inline-block;
63
- width: 60px;
64
- height: 60px;
65
- text-align: center;
66
- line-height: 60px;
67
- border: 1px solid transparent;
68
- border-radius: 4px;
69
- overflow: hidden;
70
- background: #fff;
71
- position: relative;
72
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
73
- margin-right: 4px;
74
- }
75
- .demo-upload-list img {
76
- width: 100%;
77
- height: 100%;
78
- }
79
- .demo-upload-list-cover {
80
- display: none;
81
- position: absolute;
82
- top: 0;
83
- bottom: 0;
84
- left: 0;
85
- right: 0;
86
- background: rgba(0, 0, 0, 0.6);
87
- cursor: pointer;
88
- }
89
- .demo-upload-list:hover .demo-upload-list-cover {
90
- display: block;
91
- }
92
- .demo-upload-list-cover i {
93
- margin: 0 2px;
94
- color: var(--ind-white) !important;
95
- font-size: 20px;
96
- cursor: pointer;
97
-
98
- &.delete-icon {
99
- position: absolute;
100
- top: 0;
101
- right: 0;
102
- margin: 0;
103
- font-size: 16px;
104
- background: rgba(255, 255, 255, 0.3);
105
- border-radius: 0 0 0 50%;
106
- }
107
- }
108
- }
109
- .upload-img-no-border {
110
- padding: 2px;
111
- line-height: 0px;
112
- }
113
- .ivu-modal-fullscreen .ivu-modal-content {
114
- background-color: rgba(0, 0, 0, 0) !important;
115
- }
116
- .ivu-modal-close .ivu-icon-ios-close {
117
- color: white;
118
- }
119
- .ivu-carousel-item {
120
- text-align: center;
121
- }
122
- .carouse-img {
123
- max-width: 90vw !important;
124
- max-height: 95vh !important;
125
- min-block-size: -webkit-fill-available;
126
- }
127
- .carouse-content {
128
- width: 100%;
129
- height: 95vh;
130
- text-align: center;
131
- }
1
+ .upload-file {
2
+ position: relative;
3
+ min-height: 45px;
4
+
5
+ .data-panel {
6
+ padding: 5px 10px 0px 10px;
7
+ border: 1px #dee1e8 solid;
8
+ border-radius: 5px;
9
+ }
10
+
11
+ .content-item {
12
+ display: flex;
13
+ line-height: var(--file-line-height);
14
+ box-sizing: border-box;
15
+ border-bottom: 1px solid var(--ind-border-color);
16
+ // padding-left: 20px;
17
+ &:last-child {
18
+ border-bottom: none;
19
+ }
20
+
21
+ .title {
22
+ width: calc(100% - 240px);
23
+ font-size: 14px;
24
+ line-height: var(--file-line-height);
25
+ white-space: nowrap;
26
+ overflow: hidden;
27
+ text-overflow: ellipsis;
28
+ }
29
+ .preview {
30
+ width: 80px;
31
+ text-align: center;
32
+ color: var(--ind-primary-color);
33
+ cursor: pointer;
34
+ }
35
+ .download,
36
+ .delete {
37
+ display: block;
38
+ width: 80px;
39
+ line-height: var(--file-line-height);
40
+ cursor: pointer;
41
+ i {
42
+ font-size: 18px;
43
+ vertical-align: middle !important;
44
+ }
45
+ text-align: center;
46
+ color: var(--ind-primary-color);
47
+ }
48
+ }
49
+ }
50
+
51
+ .ivu-divider-horizontal {
52
+ margin: 5px 0;
53
+ }
54
+
55
+ .upload-img {
56
+ padding: 2px;
57
+ min-height: 60px;
58
+ line-height: 0px;
59
+ border: 2px var(--ind-bg-color-dark) solid;
60
+
61
+ .demo-upload-list {
62
+ display: inline-block;
63
+ width: 60px;
64
+ height: 60px;
65
+ text-align: center;
66
+ line-height: 60px;
67
+ border: 1px solid transparent;
68
+ border-radius: 4px;
69
+ overflow: hidden;
70
+ background: #fff;
71
+ position: relative;
72
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
73
+ margin-right: 4px;
74
+ }
75
+ .demo-upload-list img {
76
+ width: 100%;
77
+ height: 100%;
78
+ }
79
+ .demo-upload-list-cover {
80
+ display: none;
81
+ position: absolute;
82
+ top: 0;
83
+ bottom: 0;
84
+ left: 0;
85
+ right: 0;
86
+ background: rgba(0, 0, 0, 0.6);
87
+ cursor: pointer;
88
+ }
89
+ .demo-upload-list:hover .demo-upload-list-cover {
90
+ display: block;
91
+ }
92
+ .demo-upload-list-cover i {
93
+ margin: 0 2px;
94
+ color: var(--ind-white) !important;
95
+ font-size: 20px;
96
+ cursor: pointer;
97
+
98
+ &.delete-icon {
99
+ position: absolute;
100
+ top: 0;
101
+ right: 0;
102
+ margin: 0;
103
+ font-size: 16px;
104
+ background: rgba(255, 255, 255, 0.3);
105
+ border-radius: 0 0 0 50%;
106
+ }
107
+ }
108
+ }
109
+ .upload-img-no-border {
110
+ padding: 2px;
111
+ line-height: 0px;
112
+ }
113
+ .ivu-modal-fullscreen .ivu-modal-content {
114
+ background-color: rgba(0, 0, 0, 0) !important;
115
+ }
116
+ .ivu-modal-close .ivu-icon-ios-close {
117
+ color: white;
118
+ }
119
+ .ivu-carousel-item {
120
+ text-align: center;
121
+ }
122
+ .carouse-img {
123
+ max-width: 90vw !important;
124
+ max-height: 95vh !important;
125
+ min-block-size: -webkit-fill-available;
126
+ }
127
+ .carouse-content {
128
+ width: 100%;
129
+ height: 95vh;
130
+ text-align: center;
131
+ }
@@ -1,5 +1,5 @@
1
- @import './variables/index.less';
2
- @import './reset.less';
3
- @import './common.less';
4
- @import './components/index.less';
5
- @import './third/index.less';
1
+ @import './variables/index.less';
2
+ @import './reset.less';
3
+ @import './common.less';
4
+ @import './components/index.less';
5
+ @import './third/index.less';
@@ -1,65 +1,65 @@
1
- /* 重写浏览器默认样式 */
2
- html,
3
- body {
4
- margin: 0;
5
- padding: 0;
6
- width: 100%;
7
- height: 100%;
8
- color: var(--ind-text-color);
9
- font-size: var(--ind-font-size-md);
10
- font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
11
- 'Microsoft YaHei';
12
- }
13
-
14
- pre {
15
- white-space: pre-wrap;
16
- word-wrap: break-word;
17
- margin: 5px 0px;
18
- line-height: 20px;
19
- font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
20
- 'Microsoft YaHei';
21
- }
22
-
23
- input::-webkit-outer-spin-button,
24
- input::-webkit-inner-spin-button {
25
- -webkit-appearance: none;
26
- }
27
- input[type='number'] {
28
- -moz-appearance: textfield !important;
29
- appearance: textfield !important;
30
- }
31
-
32
- ::-webkit-scrollbar-thumb {
33
- height: 50px;
34
- border-radius: 4px;
35
- border: 2px solid #eee;
36
- }
37
- ::-webkit-scrollbar-thumb:hover {
38
- height: 50px;
39
- border-radius: 4px;
40
- }
41
- ::-webkit-scrollbar {
42
- width: 14px;
43
- height: 16px;
44
- }
45
- ::-webkit-scrollbar-track-piece {
46
- border-radius: 0;
47
- }
48
- ::-webkit-scrollbar-track {
49
- background-color: #eee;
50
- }
51
- ::-webkit-scrollbar-thumb {
52
- background-color: rgba(0, 0, 0, 0.2);
53
- }
54
- ::-webkit-scrollbar-corner {
55
- background-color: #bbb;
56
- }
57
-
58
- .ag-body-horizontal-scroll,
59
- .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport,
60
- .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport .ag-body-horizontal-scroll-container,
61
- .ag-body-horizontal-scroll .ag-horizontal-right-spacer .ag-scroller-corner {
62
- height: 16px !important;
63
- min-height: 16px !important;
64
- max-height: 16px !important;
65
- }
1
+ /* 重写浏览器默认样式 */
2
+ html,
3
+ body {
4
+ margin: 0;
5
+ padding: 0;
6
+ width: 100%;
7
+ height: 100%;
8
+ color: var(--ind-text-color);
9
+ font-size: var(--ind-font-size-md);
10
+ font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
11
+ 'Microsoft YaHei';
12
+ }
13
+
14
+ pre {
15
+ white-space: pre-wrap;
16
+ word-wrap: break-word;
17
+ margin: 5px 0px;
18
+ line-height: 20px;
19
+ font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
20
+ 'Microsoft YaHei';
21
+ }
22
+
23
+ input::-webkit-outer-spin-button,
24
+ input::-webkit-inner-spin-button {
25
+ -webkit-appearance: none;
26
+ }
27
+ input[type='number'] {
28
+ -moz-appearance: textfield !important;
29
+ appearance: textfield !important;
30
+ }
31
+
32
+ ::-webkit-scrollbar-thumb {
33
+ height: 50px;
34
+ border-radius: 4px;
35
+ border: 2px solid #eee;
36
+ }
37
+ ::-webkit-scrollbar-thumb:hover {
38
+ height: 50px;
39
+ border-radius: 4px;
40
+ }
41
+ ::-webkit-scrollbar {
42
+ width: 14px;
43
+ height: 16px;
44
+ }
45
+ ::-webkit-scrollbar-track-piece {
46
+ border-radius: 0;
47
+ }
48
+ ::-webkit-scrollbar-track {
49
+ background-color: #eee;
50
+ }
51
+ ::-webkit-scrollbar-thumb {
52
+ background-color: rgba(0, 0, 0, 0.2);
53
+ }
54
+ ::-webkit-scrollbar-corner {
55
+ background-color: #bbb;
56
+ }
57
+
58
+ .ag-body-horizontal-scroll,
59
+ .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport,
60
+ .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport .ag-body-horizontal-scroll-container,
61
+ .ag-body-horizontal-scroll .ag-horizontal-right-spacer .ag-scroller-corner {
62
+ height: 16px !important;
63
+ min-height: 16px !important;
64
+ max-height: 16px !important;
65
+ }