tntd 2.8.16 → 2.8.17

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 (73) hide show
  1. package/es/alert/alert.less +128 -0
  2. package/es/cascader/cascader.less +16 -0
  3. package/es/checkbox/check.png +0 -0
  4. package/es/checkbox/checkbox.less +69 -0
  5. package/es/date-picker/index.less +294 -0
  6. package/es/input-number/inputNumber.less +12 -0
  7. package/es/modal/index.less +36 -0
  8. package/es/popconfirm/index.less +32 -0
  9. package/es/popover/index.less +57 -0
  10. package/es/progress/progress.less +82 -0
  11. package/es/query-form-backup/Field/Composition/FieldPopover.less +35 -0
  12. package/es/query-form-backup/Field/Composition/index.less +114 -0
  13. package/es/query-form-backup/index.less +90 -0
  14. package/es/radio/radio.less +43 -0
  15. package/es/spin/spin.less +9 -0
  16. package/es/steps/assets/background_left.svg +12 -0
  17. package/es/steps/assets/background_right.svg +12 -0
  18. package/es/steps/assets/horizontal_line.svg +3 -0
  19. package/es/steps/assets/vertical_line.svg +3 -0
  20. package/es/steps/stepStyle/icon.less +51 -0
  21. package/es/steps/stepStyle/progress-dot.less +10 -0
  22. package/es/steps/stepStyle/variables.less +8 -0
  23. package/es/steps/stepStyle/vertical.less +41 -0
  24. package/es/switch/index.less +45 -0
  25. package/es/tabs/tabs.less +125 -0
  26. package/es/time-picker/index.less +38 -0
  27. package/es/tntd-action/index.less +59 -0
  28. package/es/tntd-select/index.less +7 -0
  29. package/es/tntd-virtual-tree/index.js +22 -3
  30. package/es/tntd-virtual-tree/index.js.map +1 -1
  31. package/es/tntd-virtual-tree/index.less +21 -2
  32. package/es/tntd-virtual-tree-select/index.js +6 -2
  33. package/es/tntd-virtual-tree-select/index.js.map +1 -1
  34. package/es/tntd-virtual-tree-select/index.less +4 -0
  35. package/lib/alert/alert.less +128 -0
  36. package/lib/cascader/cascader.less +16 -0
  37. package/lib/checkbox/check.png +0 -0
  38. package/lib/checkbox/checkbox.less +69 -0
  39. package/lib/date-picker/index.less +294 -0
  40. package/lib/input-number/inputNumber.less +12 -0
  41. package/lib/modal/index.less +36 -0
  42. package/lib/popconfirm/index.less +32 -0
  43. package/lib/popover/index.less +57 -0
  44. package/lib/progress/progress.less +82 -0
  45. package/lib/query-form-backup/Field/Composition/FieldPopover.less +35 -0
  46. package/lib/query-form-backup/Field/Composition/index.less +114 -0
  47. package/lib/query-form-backup/index.less +90 -0
  48. package/lib/radio/radio.less +43 -0
  49. package/lib/spin/spin.less +9 -0
  50. package/lib/steps/assets/background_left.svg +12 -0
  51. package/lib/steps/assets/background_right.svg +12 -0
  52. package/lib/steps/assets/horizontal_line.svg +3 -0
  53. package/lib/steps/assets/vertical_line.svg +3 -0
  54. package/lib/steps/stepStyle/icon.less +51 -0
  55. package/lib/steps/stepStyle/progress-dot.less +10 -0
  56. package/lib/steps/stepStyle/variables.less +8 -0
  57. package/lib/steps/stepStyle/vertical.less +41 -0
  58. package/lib/switch/index.less +45 -0
  59. package/lib/tabs/tabs.less +125 -0
  60. package/lib/time-picker/index.less +38 -0
  61. package/lib/tntd-action/index.less +59 -0
  62. package/lib/tntd-select/index.less +7 -0
  63. package/lib/tntd-virtual-tree/index.d.ts +2 -1
  64. package/lib/tntd-virtual-tree/index.d.ts.map +1 -1
  65. package/lib/tntd-virtual-tree/index.js +23 -4
  66. package/lib/tntd-virtual-tree/index.js.map +1 -1
  67. package/lib/tntd-virtual-tree/index.less +21 -2
  68. package/lib/tntd-virtual-tree-select/index.d.ts +3 -1
  69. package/lib/tntd-virtual-tree-select/index.d.ts.map +1 -1
  70. package/lib/tntd-virtual-tree-select/index.js +8 -3
  71. package/lib/tntd-virtual-tree-select/index.js.map +1 -1
  72. package/lib/tntd-virtual-tree-select/index.less +4 -0
  73. package/package.json +1 -1
@@ -0,0 +1,82 @@
1
+ @import '../style/themes/index.less';
2
+ @import '../style/mixins/index';
3
+ @progress-prefix-cls: ~'@{ant-prefix}-progress';
4
+ .tnt-progress.@{progress-prefix-cls} {
5
+ .ant-progress-text{
6
+ // font-family: PingFang SC;
7
+ font-weight: 500;
8
+ }
9
+ .ant-progress-cus-format-label{
10
+ .ant-progress-cus-format-label{
11
+ padding-bottom: 4px;
12
+ }
13
+ }
14
+ &-percent-bottom{
15
+ .ant-progress-outer{
16
+ padding-right: 0;
17
+ }
18
+ .ant-progress-text{
19
+ width: 100%;
20
+ display: block;
21
+ text-align: right;
22
+ margin-left: 0;
23
+ }
24
+ }
25
+ &-circle-progress{
26
+ .@{progress-prefix-cls}-cus-format{
27
+ height: 100%;
28
+ display: flex;
29
+ flex-direction: column;
30
+ justify-content: center;
31
+ align-items: center;
32
+ }
33
+ }
34
+ &-small-circle{
35
+ .ant-progress-text{
36
+ height: 100%;
37
+ }
38
+ .ant-progress-inner{
39
+ overflow:visible;
40
+ }
41
+ .tntd-ellipsis{
42
+ position: absolute;
43
+ bottom: -1.8em;
44
+ font-size: 0.75em;
45
+ // margin-bottom: 2px;
46
+ // color: #8B919E;
47
+ color:tint(@text-color, 50%);
48
+ font-family: Inter;
49
+ font-weight: 500;
50
+ text-align: center;
51
+ }
52
+ }
53
+ &-large-circle{
54
+ .ant-progress-text{
55
+ height: 100%;
56
+ }
57
+ .tntd-ellipsis{
58
+ font-size: 0.55em;
59
+ // margin-bottom: 2px;
60
+ color:tint(@text-color, 50%);
61
+ font-family: Inter;
62
+ font-weight: 500;
63
+ text-align: center;
64
+ }
65
+ }
66
+ &-small-half-circle{
67
+ .ant-progress-text{
68
+ height: 40%;
69
+ }
70
+ .tntd-ellipsis{
71
+ bottom: -1.5em;
72
+ }
73
+ }
74
+ &-large-half-circle{
75
+ .ant-progress-inner{
76
+ .ant-progress-text{
77
+ top: 42%
78
+ }
79
+ }
80
+ }
81
+ }
82
+
@@ -0,0 +1,35 @@
1
+ .tnt-queryform-field-popover {
2
+ min-width: 280px;
3
+ .ant-popover-inner-content {
4
+ padding: @padding-sm 0;
5
+ }
6
+ .ant-calendar-picker {
7
+ margin: @margin-xxs 0;
8
+ }
9
+ label {
10
+ color: tint(@text-color, 50%);
11
+ margin-bottom: @margin-xs;
12
+ display: block;
13
+ padding: 0 @padding-sm;
14
+ }
15
+ .ant-select-dropdown-menu {
16
+ &-item {
17
+ padding: @padding-xxs @padding-sm;
18
+ &:hover {
19
+ background-color: @bg-color-quaternary;
20
+ }
21
+ }
22
+ }
23
+ &-content {
24
+ padding: @padding-xxs @padding-sm;
25
+ }
26
+ .ant-select-selected-icon {
27
+ position: absolute;
28
+ right: @margin-base;
29
+ top: @margin-xs;
30
+ color: @blue-6;
31
+ }
32
+ .tnt-highlight {
33
+ color: @blue-6;
34
+ }
35
+ }
@@ -0,0 +1,114 @@
1
+ @import '../../../style/themes/index';
2
+ @import '../../../style/mixins/index';
3
+ @import '../../../input/style/mixin';
4
+
5
+ .tnt-queryform-composition-input {
6
+ // width: 100%;
7
+ max-height: 162px;
8
+ overflow-x: hidden;
9
+ cursor: text;
10
+ padding: 2px @padding-xl;
11
+ position: relative;
12
+ box-sizing: border-box;
13
+ background-color: @select-background;
14
+ border: @border-width-base @border-style-base @select-border-color;
15
+ border-top-width: calc(@border-width-base + 0.02px);
16
+ border-radius: @border-radius-base;
17
+ outline: none;
18
+ transition: all 0.3s @ease-in-out;
19
+ user-select: none;
20
+ margin-bottom: @margin-sm;
21
+
22
+ &-prefix {
23
+ position: absolute;
24
+ left: @padding-sm;
25
+ top: 50%;
26
+ transform: translateY(-50%);
27
+ i.anticon {
28
+ color: tint(@bg-color-spotilight, 50%);
29
+ }
30
+ }
31
+
32
+ &-width {
33
+ height: 0;
34
+ opacity: 0;
35
+ width: auto;
36
+ position: absolute;
37
+ max-width: 100%;
38
+ }
39
+
40
+ &-items {
41
+ float: left;
42
+ padding: 0;
43
+ list-style: none;
44
+ margin: 0;
45
+ width: 100%;
46
+ &-item {
47
+ padding: 3px 0;
48
+ }
49
+ li {
50
+ float: left;
51
+ line-height: 1;
52
+ }
53
+ &-input {
54
+ .inputClass {
55
+ background: none;
56
+ border: none !important;
57
+ outline: none;
58
+ box-shadow: none !important;
59
+ width: 150px !important;
60
+ height: 26px;
61
+ line-height: 26px;
62
+ padding: 0;
63
+ input {
64
+ border: none !important;
65
+ outline: none !important;
66
+ box-shadow: none !important;
67
+ height: 26px;
68
+ line-height: 26px;
69
+ padding: 0;
70
+ }
71
+ textarea {
72
+ padding: 0;
73
+ }
74
+ }
75
+ .inputClass-with-placeholder {
76
+ min-width: 398px !important;
77
+ }
78
+ }
79
+ }
80
+ &-clear {
81
+ position: absolute;
82
+ right: @margin-sm;
83
+ top: 50%;
84
+ transform: translateY(-50%);
85
+ display: none;
86
+ i.anticon {
87
+ color: tint(@bg-color-spotilight, 50%);
88
+ }
89
+ &:hover {
90
+ .anticon {
91
+ color: @text-color-secondary !important;
92
+ }
93
+ }
94
+ }
95
+ &:hover {
96
+ border-color: @blue-6;
97
+ outline: 0;
98
+ .tnt-queryform-composition-input-clear {
99
+ display: block;
100
+ }
101
+ // box-shadow: 0 0 0 2px rgb(18 107 251 / 20%);
102
+ }
103
+ &:focus,
104
+ &:active {
105
+ border-color: @blue-5;
106
+ outline: 0;
107
+ // box-shadow: 0 0 0 2px rgb(18 107 251 / 20%);
108
+ }
109
+ .ant-tag {
110
+ padding: 0 @padding-xs;
111
+ border: none;
112
+ background: @fill-color-tertiary;
113
+ }
114
+ }
@@ -0,0 +1,90 @@
1
+ .tnt-queryform {
2
+ &-top {
3
+ display: flex;
4
+ &-body {
5
+ flex: 1;
6
+ .ant-btn {
7
+ margin-right: 10px;
8
+ }
9
+ }
10
+ }
11
+
12
+ &-extra {
13
+ & > * {
14
+ margin-left: 10px;
15
+ }
16
+ }
17
+
18
+ .ant-form {
19
+ // margin-bottom: @margin-sm;
20
+ &.ant-form-inline {
21
+ flex-wrap: unset;
22
+ position: relative;
23
+ }
24
+
25
+ &.ant-form-inline .ant-form-item {
26
+ margin-right: 10px;
27
+ margin-bottom: @margin-sm;
28
+ display: inline-block;
29
+ }
30
+
31
+ .ant-form-item-control {
32
+ // min-width: 160px;
33
+ line-height: unset;
34
+ .ant-calendar-picker-input {
35
+ padding: 0 @padding-sm;
36
+ }
37
+ .ant-form-item-children {
38
+ & > .ant-input,
39
+ & > .ant-input-affix-wrapper {
40
+ width: 160px;
41
+ // width: 200px;
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ &-drawer {
48
+ margin-top: @margin-xxl;
49
+ &.large-size {
50
+ margin-top: 60px;
51
+ }
52
+
53
+ &.ant-drawer.ant-drawer-open {
54
+ .ant-drawer-mask {
55
+ opacity: 0;
56
+ background: unset;
57
+ }
58
+ }
59
+ .ant-drawer-body {
60
+ .ant-form-item {
61
+ display: block;
62
+ margin-right: 0;
63
+ margin-bottom: @margin-md;
64
+ width: 100%;
65
+ }
66
+ .ant-form-item-label {
67
+ display: block;
68
+ text-align: left;
69
+ line-height: 22px;
70
+ margin-bottom: 10px;
71
+ }
72
+ .ant-form-item-control-wrapper,
73
+ .ant-form-item-control,
74
+ .ant-calendar-picker,
75
+ .ant-input {
76
+ min-width: 100%;
77
+ width: 100%;
78
+ }
79
+
80
+ & > .ant-btn {
81
+ display: block;
82
+ width: 100%;
83
+ margin-bottom: 10px;
84
+ &.ant-btn-primary {
85
+ margin-top: @margin-md;
86
+ }
87
+ }
88
+ }
89
+ }
90
+ }
@@ -0,0 +1,43 @@
1
+ @radio-prefix-cls: ~'@{ant-prefix}-radio';
2
+ @radio-inner-prefix-cls: ~'@{radio-prefix-cls}-inner';
3
+
4
+ // 选中状态
5
+ .tnt-radio,
6
+ .tnt-radio-group {
7
+ .@{radio-prefix-cls}-checked {
8
+ .@{radio-inner-prefix-cls} {
9
+ border-color: @radio-dot-color;
10
+ background-color: @radio-dot-color;
11
+ &::after {
12
+ @radio-dot-size: calc(@radio-size - 12px);
13
+
14
+ width: @radio-dot-size;
15
+ height: @radio-dot-size;
16
+ top: calc((@radio-size - @radio-dot-size) / 2 - 1px);
17
+ left: calc((@radio-size - @radio-dot-size) / 2 - 1px);
18
+ background-color: @radio-button-bg;
19
+ }
20
+ }
21
+
22
+ &.@{radio-prefix-cls}-disabled {
23
+ .@{radio-inner-prefix-cls} {
24
+ border-color: @checkbox-check-disabled-color !important;
25
+ background-color: @checkbox-check-disabled-color;
26
+ }
27
+ }
28
+ }
29
+ }
30
+
31
+ .tnt-radio {
32
+ & > span:nth-of-type(2) {
33
+ display: inline-block;
34
+ }
35
+ &-children {
36
+ display: flex;
37
+ flex-direction: column;
38
+ }
39
+ &-desc {
40
+ font-size: @font-size-sm;
41
+ color: @bg-color-spotilight-tint-50;
42
+ }
43
+ }
@@ -0,0 +1,9 @@
1
+ @spin-prefix-cls: ~'@{ant-prefix}-spin';
2
+ .tnt-spin-nested{
3
+ .@{spin-prefix-cls}-container {
4
+ &::after{
5
+ content:'';
6
+ background-color: transparent;
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,12 @@
1
+ <svg width="162" height="77" viewBox="0 0 162 77" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Ellipse 27" filter="url(#filter0_f_5274_1997)">
3
+ <ellipse class="test" cx="36.5" cy="-21.5" rx="78.5" ry="51.5" fill="#126BFB" fill-opacity="0.15"/>
4
+ </g>
5
+ <defs>
6
+ <filter id="filter0_f_5274_1997" x="-89" y="-120" width="251" height="197" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9
+ <feGaussianBlur stdDeviation="23.5" result="effect1_foregroundBlur_5274_1997"/>
10
+ </filter>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="131" height="80" viewBox="0 0 131 80" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Ellipse 28" filter="url(#filter0_f_5274_1888)">
3
+ <circle cx="118" cy="100" r="71" fill="#126BFB" fill-opacity="0.08"/>
4
+ </g>
5
+ <defs>
6
+ <filter id="filter0_f_5274_1888" x="0" y="-18" width="236" height="236" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9
+ <feGaussianBlur stdDeviation="23.5" result="effect1_foregroundBlur_5274_1888"/>
10
+ </filter>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="2" viewBox="0 0 6 2" fill="none">
2
+ <path class="t1" d="M1.5 1H206" stroke="#C9D2DD" stroke-width="2" stroke-linecap="round" stroke-dasharray="2 7"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2" height="10" viewBox="0 0 2 6" fill="none">
2
+ <path d="M1 1L0.999999 25" stroke="#C9D2DD" stroke-width="2" stroke-linecap="round" stroke-dasharray="4 6"/>
3
+ </svg>
@@ -0,0 +1,51 @@
1
+ .@{tnt-steps-cls}:not(.@{steps-prefix-cls}-dot).@{steps-prefix-cls}{
2
+ .@{steps-prefix-cls}-item{
3
+ &-icon{
4
+ border: none;
5
+ font-weight: 500;
6
+ margin: 2px 12px 2px 0;
7
+ width: @td-steps-icon-size;
8
+ height: @td-steps-icon-size;
9
+ line-height: @td-steps-icon-size;
10
+ border-radius:@td-steps-icon-size;
11
+ >.@{steps-prefix-cls}-icon{
12
+ top:0;
13
+ i{
14
+ font-size: @td-steps-icon-size;
15
+ font-weight: normal;
16
+ }
17
+ }
18
+ }
19
+ &-finish.@{step-prefix-cls}-default-icon,
20
+ &-error.@{step-prefix-cls}-default-icon {
21
+ .@{steps-prefix-cls}-item-icon {
22
+ background-color: transparent;
23
+ }
24
+ }
25
+
26
+ &-wait.@{step-prefix-cls}-default-icon {
27
+ .@{steps-prefix-cls}-item-icon {
28
+ background-color: @fill-color-tertiary;
29
+ }
30
+ }
31
+ }
32
+
33
+
34
+
35
+ &-small {
36
+ .@{steps-prefix-cls}-item{
37
+ &-icon{
38
+ width: @td-steps-small-icon-size;
39
+ height: @td-steps-small-icon-size;
40
+ line-height: @td-steps-small-icon-size;
41
+ border-radius:@td-steps-small-icon-size;
42
+ >.@{steps-prefix-cls}-icon{
43
+ i{
44
+ font-size: @td-steps-small-icon-size;
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+
@@ -0,0 +1,10 @@
1
+ .@{tnt-steps-cls}.@{steps-prefix-cls}-dot,
2
+ .@{tnt-steps-cls}.@{steps-prefix-cls}-dot.@{steps-prefix-cls}-small {
3
+ .@{steps-prefix-cls}-item {
4
+ &-tail {
5
+ &::after {
6
+ height: 2px;
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ @td-steps-icon-size: 40px;
2
+ @td-steps-small-icon-size: 24px;
3
+ @td-steps-title-height: 24px;
4
+ @td-steps-desc-height: 20px;
5
+ @nav-min-height: 44px;
6
+ @nav-small-min-height: 28px;
7
+ @finish-border-color: @primary-color;
8
+
@@ -0,0 +1,41 @@
1
+ .@{tnt-steps-cls}.@{steps-prefix-cls}-vertical:not(.@{steps-prefix-cls}-dot):not(.@{steps-prefix-cls}-navigation):not(.@{steps-prefix-cls}-small).@{steps-prefix-cls}{
2
+ .@{steps-prefix-cls}-item{
3
+ &-icon >.@{steps-prefix-cls}-icon{
4
+ i{
5
+ vertical-align: middle;
6
+ }
7
+ }
8
+
9
+ &-content {
10
+ min-height: 94px;
11
+ }
12
+
13
+ > .@{steps-prefix-cls}-item-container > .@{steps-prefix-cls}-item-tail{
14
+ padding: calc(@td-steps-icon-size + 15px) 0 15px;
15
+ left: 18px;
16
+ &::after{
17
+ width:0;
18
+ border-radius: 2px;
19
+ background-color: transparent;
20
+ }
21
+ }
22
+
23
+ &-finish > .@{steps-prefix-cls}-item-container > .@{steps-prefix-cls}-item-tail {
24
+ &::after {
25
+ border-left: 2px solid @finish-border-color;
26
+ }
27
+ }
28
+
29
+ &-wait, &-error, &-process {
30
+ > .@{steps-prefix-cls}-item-container > .@{steps-prefix-cls}-item-tail {
31
+ &::after {
32
+ border-left: 2px solid transparent;
33
+ background-color: @border-color;
34
+ mask: url(../assets/vertical_line.svg) repeat-y 0 0;
35
+ -webkit-mask:url(../assets/vertical_line.svg) repeat-y 0 0;
36
+ }
37
+ }
38
+ }
39
+ }
40
+ }
41
+
@@ -0,0 +1,45 @@
1
+ @switch-prefix-cls: ~'@{ant-prefix}-switch';
2
+
3
+ .@{switch-prefix-cls} {
4
+ &-small {
5
+ min-width: 36px;
6
+ }
7
+
8
+ &-checked {
9
+ &:hover {
10
+ background-color: @blue-5;
11
+ }
12
+ }
13
+
14
+ // &-disabled {
15
+ // background-color: @blue-5;
16
+ // }
17
+
18
+ &-wrap {
19
+ display: flex;
20
+ }
21
+
22
+ &-text-wrap {
23
+ margin-left: @margin-xs;
24
+ font-weight: 400;
25
+ }
26
+
27
+ &-text {
28
+ font-size: 14px;
29
+ color: @text-color;
30
+ }
31
+
32
+ &-text-disabled {
33
+ color: @text-color-tertiary;
34
+ }
35
+
36
+ &-subtext {
37
+ font-size: 12px;
38
+ color: tint(@text-color, 50%);
39
+ line-height: 20px;
40
+ }
41
+
42
+ &-subtext-disabled {
43
+ color: @text-color-tertiary;
44
+ }
45
+ }
@@ -0,0 +1,125 @@
1
+ // Tabs 自定义梯形页签样式
2
+ @tab-prefix-cls: ~'@{ant-prefix}-tabs';
3
+
4
+ .tnt-tabs.@{tab-prefix-cls}.@{tab-prefix-cls}-ladder-card.@{tab-prefix-cls}-top {
5
+ padding: 0 12px;
6
+ position: relative;
7
+ left: -12px;
8
+ padding-bottom: 20px;
9
+
10
+ > .@{tab-prefix-cls}-top-bar {
11
+ border-bottom: none;
12
+ margin-bottom: 0;
13
+ .@{tab-prefix-cls}-tab {
14
+ // display: inline-block;
15
+ vertical-align: bottom;
16
+ // position: relative;
17
+ min-width: 106px;
18
+ height: 40px;
19
+ line-height: 40px;
20
+ border-top-left-radius: @border-radius-lg;
21
+ filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
22
+ box-shadow: 0px 0px 2px -5px rgba(0, 0, 0, 0.05);
23
+ border: none;
24
+ margin: 0px 30px 0px 0px;
25
+ padding: 0px 12px 0 48px;
26
+ // background: @fill-color-quaternary;
27
+ text-align: right;
28
+ // color: @text-color-secondary;
29
+
30
+ &::after {
31
+ content: '';
32
+ position: absolute;
33
+ top: 0;
34
+ right: -52px;
35
+ height: 100%;
36
+ width: 64px;
37
+ z-index: 1;
38
+ background: inherit;
39
+ clip-path: path('M0 0H22.3875C28.4632 0 34.2094 2.76179 38.0049 7.5061L64 40H0V0Z');
40
+ }
41
+
42
+ // 兼容clip-path 属性
43
+ @supports not (clip-path: path('M0 0H22.3875C28.4632 0 34.2094 2.76179 38.0049 7.5061L64 40H0V0Z')) {
44
+ & {
45
+ padding: 0px 22px 0 48px !important;
46
+ margin-right: 12px;
47
+ }
48
+ &::after {
49
+ top: 17px !important;
50
+ right: -54px !important;
51
+ width: 93px !important;
52
+ z-index: -1 !important;
53
+ height: 45px !important;
54
+ border-top-right-radius: 24px !important;
55
+ border-top-left-radius: 26px !important;
56
+ transform: rotate(50deg) !important;
57
+ }
58
+ }
59
+ @supports (clip-path: path('M0 0H22.3875C28.4632 0 34.2094 2.76179 38.0049 7.5061L64 40H0V0Z')) {
60
+ &::after {
61
+ clip-path: path('M0 0H22.3875C28.4632 0 34.2094 2.76179 38.0049 7.5061L64 40H0V0Z');
62
+ }
63
+ }
64
+ }
65
+ .@{tab-prefix-cls}-nav {
66
+ margin-top: 12px;
67
+ padding-left: 12px;
68
+ }
69
+ .@{tab-prefix-cls}-nav-container {
70
+ height: auto;
71
+ position: relative;
72
+ left: -12px;
73
+ }
74
+ // 鼠标选中时,active状态在上层
75
+ .@{tab-prefix-cls}-tab-active {
76
+ z-index: 99 !important;
77
+ background: @tabs-active-background;
78
+ }
79
+ }
80
+
81
+ & > .@{tab-prefix-cls}-content {
82
+ & > .@{tab-prefix-cls}-tabpane {
83
+ background: @white;
84
+ box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
85
+ padding: 20px 12px 12px;
86
+ border-bottom-right-radius: @border-radius-lg;
87
+ border-bottom-left-radius: @border-radius-lg;
88
+ border-top-right-radius: @border-radius-lg;
89
+ }
90
+ }
91
+ }
92
+
93
+ // // Tabs top类型 全局样式修改
94
+ .tnt-tabs.@{tab-prefix-cls}.@{tab-prefix-cls}-top.@{tab-prefix-cls}-line {
95
+ .@{tab-prefix-cls}-nav-container {
96
+ margin-bottom: none;
97
+ }
98
+
99
+ .@{tab-prefix-cls}-tab {
100
+ border-bottom: 1px solid transparent;
101
+ margin-bottom: 1px;
102
+ height: 40px;
103
+ line-height: 37px;
104
+ padding: 2px 12px 0;
105
+ }
106
+ }
107
+
108
+ .tnt-tabs.@{tab-prefix-cls} {
109
+ .@{tab-prefix-cls}-nav {
110
+ .@{tab-prefix-cls}-tab {
111
+ color: @tabs-tab-color;
112
+ // 自定义图标默认都是 16px
113
+ i.anticon {
114
+ font-size: @font-size-lg;
115
+ margin-right: 4px;
116
+ }
117
+ }
118
+ .@{tab-prefix-cls}-tab.@{tab-prefix-cls}-tab-active {
119
+ color: @tabs-active-color;
120
+ }
121
+ .@{tab-prefix-cls}-tab.@{tab-prefix-cls}-tab:hover {
122
+ color: @tabs-hover-color;
123
+ }
124
+ }
125
+ }