tntd 2.8.16 → 2.8.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/es/alert/alert.less +128 -0
- package/es/cascader/cascader.less +16 -0
- package/es/checkbox/check.png +0 -0
- package/es/checkbox/checkbox.less +69 -0
- package/es/date-picker/index.less +294 -0
- package/es/input-number/inputNumber.less +12 -0
- package/es/modal/index.less +36 -0
- package/es/popconfirm/index.less +32 -0
- package/es/popover/index.less +57 -0
- package/es/progress/progress.less +82 -0
- package/es/query-form-backup/Field/Composition/FieldPopover.less +35 -0
- package/es/query-form-backup/Field/Composition/index.less +114 -0
- package/es/query-form-backup/index.less +90 -0
- package/es/radio/radio.less +43 -0
- package/es/spin/spin.less +9 -0
- package/es/steps/assets/background_left.svg +12 -0
- package/es/steps/assets/background_right.svg +12 -0
- package/es/steps/assets/horizontal_line.svg +3 -0
- package/es/steps/assets/vertical_line.svg +3 -0
- package/es/steps/stepStyle/icon.less +51 -0
- package/es/steps/stepStyle/progress-dot.less +10 -0
- package/es/steps/stepStyle/variables.less +8 -0
- package/es/steps/stepStyle/vertical.less +41 -0
- package/es/switch/index.less +45 -0
- package/es/tabs/tabs.less +125 -0
- package/es/time-picker/index.less +38 -0
- package/es/tntd-action/index.less +59 -0
- package/es/tntd-select/index.less +7 -0
- package/es/tntd-virtual-tree/index.js +36 -3
- package/es/tntd-virtual-tree/index.js.map +1 -1
- package/es/tntd-virtual-tree/index.less +22 -4
- package/es/tntd-virtual-tree-select/index.js +8 -2
- package/es/tntd-virtual-tree-select/index.js.map +1 -1
- package/es/tntd-virtual-tree-select/index.less +4 -0
- package/lib/alert/alert.less +128 -0
- package/lib/cascader/cascader.less +16 -0
- package/lib/checkbox/check.png +0 -0
- package/lib/checkbox/checkbox.less +69 -0
- package/lib/date-picker/index.less +294 -0
- package/lib/input-number/inputNumber.less +12 -0
- package/lib/modal/index.less +36 -0
- package/lib/popconfirm/index.less +32 -0
- package/lib/popover/index.less +57 -0
- package/lib/progress/progress.less +82 -0
- package/lib/query-form-backup/Field/Composition/FieldPopover.less +35 -0
- package/lib/query-form-backup/Field/Composition/index.less +114 -0
- package/lib/query-form-backup/index.less +90 -0
- package/lib/radio/radio.less +43 -0
- package/lib/spin/spin.less +9 -0
- package/lib/steps/assets/background_left.svg +12 -0
- package/lib/steps/assets/background_right.svg +12 -0
- package/lib/steps/assets/horizontal_line.svg +3 -0
- package/lib/steps/assets/vertical_line.svg +3 -0
- package/lib/steps/stepStyle/icon.less +51 -0
- package/lib/steps/stepStyle/progress-dot.less +10 -0
- package/lib/steps/stepStyle/variables.less +8 -0
- package/lib/steps/stepStyle/vertical.less +41 -0
- package/lib/switch/index.less +45 -0
- package/lib/tabs/tabs.less +125 -0
- package/lib/time-picker/index.less +38 -0
- package/lib/tntd-action/index.less +59 -0
- package/lib/tntd-select/index.less +7 -0
- package/lib/tntd-virtual-tree/index.d.ts +3 -1
- package/lib/tntd-virtual-tree/index.d.ts.map +1 -1
- package/lib/tntd-virtual-tree/index.js +37 -4
- package/lib/tntd-virtual-tree/index.js.map +1 -1
- package/lib/tntd-virtual-tree/index.less +22 -4
- package/lib/tntd-virtual-tree-select/index.d.ts +4 -1
- package/lib/tntd-virtual-tree-select/index.d.ts.map +1 -1
- package/lib/tntd-virtual-tree-select/index.js +11 -3
- package/lib/tntd-virtual-tree-select/index.js.map +1 -1
- package/lib/tntd-virtual-tree-select/index.less +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
@alert-prefix-cls: ~'@{ant-prefix}-alert';
|
|
2
|
+
@alert-description-color: @text-color-secondary;
|
|
3
|
+
@tnt-alert-prefix-cls: ~'tnt-alert';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.@{tnt-alert-prefix-cls} {
|
|
7
|
+
|
|
8
|
+
&.@{alert-prefix-cls}.@{alert-prefix-cls}-no-icon.@{alert-prefix-cls}-closable {
|
|
9
|
+
padding-right: 30px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.@{tnt-alert-prefix-cls}-with-action {
|
|
13
|
+
.@{alert-prefix-cls}-message {
|
|
14
|
+
display: flex;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
> .action-btn {
|
|
17
|
+
flex: none;
|
|
18
|
+
margin-left: 36px;
|
|
19
|
+
margin-right: 12px;
|
|
20
|
+
font-size: @font-size-base;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.@{alert-prefix-cls} {
|
|
26
|
+
border-radius: @border-radius-lg;
|
|
27
|
+
padding: 8px 15px 8px 44px;
|
|
28
|
+
& .anticon {
|
|
29
|
+
left: 20px;
|
|
30
|
+
top: 11px; // 与文字对齐
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.@{alert-prefix-cls}-message {
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
color: @alert-description-color;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .@{alert-prefix-cls}-close-icon {
|
|
41
|
+
font-size: @font-size-lg;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.@{alert-prefix-cls}-with-description {
|
|
45
|
+
padding: 16px 20px 16px 48px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.@{alert-prefix-cls}.@{alert-prefix-cls}-no-icon {
|
|
49
|
+
padding: 8px 20px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.@{alert-prefix-cls}-with-description.@{alert-prefix-cls}-no-icon {
|
|
53
|
+
padding: 16px 20px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&.@{alert-prefix-cls}-with-description i.@{alert-prefix-cls}-icon {
|
|
57
|
+
top: 18px;
|
|
58
|
+
font-size: @font-size-xl;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
.@{alert-prefix-cls}-success {
|
|
64
|
+
.action-btn {
|
|
65
|
+
background-color: @alert-success-bg-color;
|
|
66
|
+
color: @green-6;
|
|
67
|
+
a {
|
|
68
|
+
color: @green-6;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
.@{alert-prefix-cls}-close-icon {
|
|
72
|
+
.@{iconfont-css-prefix}-close {
|
|
73
|
+
color: @alert-success-icon-color;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.@{alert-prefix-cls}-info {
|
|
79
|
+
.action-btn {
|
|
80
|
+
background-color: @alert-info-bg-color;
|
|
81
|
+
color: @alert-info-icon-color;
|
|
82
|
+
a {
|
|
83
|
+
color: @alert-info-icon-color;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
.@{alert-prefix-cls}-close-icon {
|
|
87
|
+
.@{iconfont-css-prefix}-close {
|
|
88
|
+
color: @alert-info-icon-color;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.@{alert-prefix-cls}-warning {
|
|
94
|
+
.action-btn {
|
|
95
|
+
background-color: @alert-warning-bg-color;
|
|
96
|
+
color: @gold-7;
|
|
97
|
+
a {
|
|
98
|
+
color: @gold-7;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
.@{alert-prefix-cls}-close-icon {
|
|
102
|
+
.@{iconfont-css-prefix}-close {
|
|
103
|
+
color: @alert-warning-icon-color;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.@{alert-prefix-cls}-error {
|
|
109
|
+
.action-btn {
|
|
110
|
+
background-color: @alert-error-bg-color;
|
|
111
|
+
color: @red-6;
|
|
112
|
+
a {
|
|
113
|
+
color: @red-6;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
.@{alert-prefix-cls}-close-icon {
|
|
117
|
+
.@{iconfont-css-prefix}-close {
|
|
118
|
+
color: @alert-error-icon-color;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.@{alert-prefix-cls} {
|
|
124
|
+
>
|
|
125
|
+
.@{alert-prefix-cls}-icon {
|
|
126
|
+
font-size: @font-size-lg;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@cascader-prefix-cls: ~'@{ant-prefix}-cascader';
|
|
2
|
+
|
|
3
|
+
.tnt-cascader {
|
|
4
|
+
.@{cascader-prefix-cls}-picker {
|
|
5
|
+
&-clear {
|
|
6
|
+
width: 16px;
|
|
7
|
+
height: 16px;
|
|
8
|
+
font-size: initial;
|
|
9
|
+
margin-top: -8px;
|
|
10
|
+
}
|
|
11
|
+
&-arrow {
|
|
12
|
+
width: 16px;
|
|
13
|
+
height: 16px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
@checkbox-prefix-cls: ~'@{ant-prefix}-checkbox';
|
|
2
|
+
@checkbox-inner-prefix-cls: ~'@{checkbox-prefix-cls}-inner';
|
|
3
|
+
|
|
4
|
+
.tnt-checkbox,
|
|
5
|
+
.tnt-checkbox-group {
|
|
6
|
+
.@{checkbox-prefix-cls}-indeterminate {
|
|
7
|
+
.@{checkbox-inner-prefix-cls} {
|
|
8
|
+
background-color: @checkbox-color;
|
|
9
|
+
border-color: @checkbox-color;
|
|
10
|
+
}
|
|
11
|
+
.@{checkbox-inner-prefix-cls}::after {
|
|
12
|
+
@indeterminate-width: calc(@checkbox-size - 8px);
|
|
13
|
+
@indeterminate-height: 1.4px;
|
|
14
|
+
|
|
15
|
+
width: @indeterminate-width;
|
|
16
|
+
height: @indeterminate-height;
|
|
17
|
+
background-color: @component-background;
|
|
18
|
+
border-radius: 2px;
|
|
19
|
+
transition: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.@{checkbox-prefix-cls}-disabled {
|
|
23
|
+
.@{checkbox-inner-prefix-cls} {
|
|
24
|
+
background: @checkbox-check-disabled-color;
|
|
25
|
+
border-color: @checkbox-check-disabled-color !important;
|
|
26
|
+
|
|
27
|
+
&::after {
|
|
28
|
+
background-color: #fff;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.@{checkbox-prefix-cls}-checked {
|
|
35
|
+
&.@{checkbox-prefix-cls}-disabled {
|
|
36
|
+
.@{checkbox-inner-prefix-cls} {
|
|
37
|
+
background: @checkbox-check-disabled-color;
|
|
38
|
+
border-color: @checkbox-check-disabled-color !important;
|
|
39
|
+
&::after {
|
|
40
|
+
border-color: #fff;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.@{checkbox-inner-prefix-cls}::after {
|
|
46
|
+
width: 16px;
|
|
47
|
+
height: 16px;
|
|
48
|
+
border-width: 0;
|
|
49
|
+
background-image: url(./check.png);
|
|
50
|
+
background-size: contain;
|
|
51
|
+
transform: translate(-25%, -50%);
|
|
52
|
+
transition: none;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.tnt-checkbox {
|
|
58
|
+
& > span:nth-of-type(2) {
|
|
59
|
+
display: inline-block;
|
|
60
|
+
}
|
|
61
|
+
&-children {
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
}
|
|
65
|
+
&-desc {
|
|
66
|
+
font-size: @font-size-sm;
|
|
67
|
+
color: @bg-color-spotilight-tint-50;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
@import '../style/themes/index';
|
|
2
|
+
|
|
3
|
+
@datepicker-prefix-cls: ~'@{ant-prefix}-date-picker';
|
|
4
|
+
@calendar-prefix-cls: ~'@{ant-prefix}-calendar';
|
|
5
|
+
@calendar-timepicker-prefix-cls: ~'@{ant-prefix}-calendar-time-picker';
|
|
6
|
+
|
|
7
|
+
.@{calendar-prefix-cls}-picker-container{
|
|
8
|
+
.@{calendar-prefix-cls}{
|
|
9
|
+
// margin-top: 42px;
|
|
10
|
+
.@{calendar-prefix-cls}-input-wrap{
|
|
11
|
+
// display: none;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.@{calendar-prefix-cls}-range{
|
|
15
|
+
// margin-top: 42px;
|
|
16
|
+
.@{calendar-prefix-cls}-input-wrap,.@{calendar-prefix-cls}-range-middle{
|
|
17
|
+
// display: none;
|
|
18
|
+
}
|
|
19
|
+
.@{calendar-prefix-cls}-decade-panel,.@{calendar-prefix-cls}-year-panel,.@{calendar-prefix-cls}-month-panel{
|
|
20
|
+
// top: 0
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.@{calendar-prefix-cls}-month-calendar,.@{calendar-prefix-cls}-week-number{
|
|
24
|
+
// margin-top: 42px;
|
|
25
|
+
}
|
|
26
|
+
//.@{calendar-prefix-cls}-today .@{calendar-prefix-cls}-date{
|
|
27
|
+
// background-color: @white;
|
|
28
|
+
//}
|
|
29
|
+
.@{calendar-prefix-cls}:not(.@{calendar-prefix-cls}-range){
|
|
30
|
+
.@{calendar-prefix-cls}-selected-date .@{calendar-prefix-cls}-date{
|
|
31
|
+
background-color: @blue-6;
|
|
32
|
+
color: @white;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
//Picker
|
|
38
|
+
.@{calendar-prefix-cls}-picker{
|
|
39
|
+
input,.@{calendar-prefix-cls}-picker-input{
|
|
40
|
+
border-color: @border-color-secondary;
|
|
41
|
+
color: @text-color;
|
|
42
|
+
&:focus{
|
|
43
|
+
border-color: @blue-5;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
&:has(input:not([value=''])),&:hover {
|
|
47
|
+
.@{calendar-prefix-cls}-picker-icon{
|
|
48
|
+
color: @text-color-secondary;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
&:has(input[disabled]){
|
|
52
|
+
.@{calendar-prefix-cls}-picker-icon{
|
|
53
|
+
color: @disabled-color;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.@{calendar-prefix-cls}-picker-icon{
|
|
57
|
+
width: auto;
|
|
58
|
+
height: @font-size-lg;
|
|
59
|
+
font-size: @font-size-lg;
|
|
60
|
+
}
|
|
61
|
+
.@{calendar-prefix-cls}-picker-clear{
|
|
62
|
+
color: tint(@bg-color-spotilight, 50%);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
.@{datepicker-prefix-cls}{
|
|
66
|
+
&-fill{
|
|
67
|
+
.@{calendar-prefix-cls}-picker{
|
|
68
|
+
&-input {
|
|
69
|
+
&.@{ant-prefix}-input {
|
|
70
|
+
background-color: @fill-color-quaternary;
|
|
71
|
+
border-color: @fill-color-quaternary;
|
|
72
|
+
&-disabled {
|
|
73
|
+
border: none;
|
|
74
|
+
pointer-events: none;
|
|
75
|
+
background: @disabled-bg;
|
|
76
|
+
}
|
|
77
|
+
&:focus{
|
|
78
|
+
background-color: @white;
|
|
79
|
+
border-color: @blue-5;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
&:not([value='']):hover {
|
|
83
|
+
background-color: @white;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
//Calender
|
|
91
|
+
.@{calendar-prefix-cls}{
|
|
92
|
+
&-footer {
|
|
93
|
+
&-extra {
|
|
94
|
+
.@{ant-prefix}-tag{
|
|
95
|
+
color: @text-color;
|
|
96
|
+
border: none;
|
|
97
|
+
background-color: @white;
|
|
98
|
+
&:hover{
|
|
99
|
+
color: @blue-6;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
thead tr{
|
|
106
|
+
border-bottom: none;
|
|
107
|
+
}
|
|
108
|
+
table th{
|
|
109
|
+
background-color: @white;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
//RangePicker
|
|
114
|
+
.@{calendar-prefix-cls}-range{
|
|
115
|
+
.@{calendar-prefix-cls}-in-range-cell,
|
|
116
|
+
.@{calendar-prefix-cls}-selected-start-date,
|
|
117
|
+
.@{calendar-prefix-cls}-selected-end-date {
|
|
118
|
+
position: relative;
|
|
119
|
+
border-radius: 0;
|
|
120
|
+
> div {
|
|
121
|
+
position: relative;
|
|
122
|
+
z-index: 1;
|
|
123
|
+
}
|
|
124
|
+
&::before {
|
|
125
|
+
position: absolute;
|
|
126
|
+
top: 3px;
|
|
127
|
+
right: 0;
|
|
128
|
+
bottom: 3px;
|
|
129
|
+
left: 0;
|
|
130
|
+
display: block;
|
|
131
|
+
background: @item-active-bg;
|
|
132
|
+
border: 0;
|
|
133
|
+
border-radius: 0;
|
|
134
|
+
content: '';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
.@{calendar-prefix-cls}-selected-start-date{
|
|
138
|
+
&::before{
|
|
139
|
+
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
140
|
+
}
|
|
141
|
+
&::after {
|
|
142
|
+
position: absolute;
|
|
143
|
+
bottom: -2px;
|
|
144
|
+
left: 16px;
|
|
145
|
+
display: block;
|
|
146
|
+
background: @blue-6;
|
|
147
|
+
border: 0;
|
|
148
|
+
border-radius: 50%;
|
|
149
|
+
width: 4px;
|
|
150
|
+
height: 4px;
|
|
151
|
+
content: '';
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
//ant-calendar-last-day-of-month
|
|
155
|
+
//ant-calendar-last-month-cell ant-calendar-last-day-of-month
|
|
156
|
+
.@{calendar-prefix-cls}-selected-end-date{
|
|
157
|
+
&::before{
|
|
158
|
+
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.@{calendar-prefix-cls}-selected-start-date.@{calendar-prefix-cls}-selected-end-date{
|
|
162
|
+
&::before{
|
|
163
|
+
border-radius: @border-radius-base @border-radius-base @border-radius-base @border-radius-base;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
tr .@{calendar-prefix-cls}-in-range-cell:first-child{
|
|
167
|
+
&::before{
|
|
168
|
+
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
tr .@{calendar-prefix-cls}-selected-end-date:first-child,
|
|
172
|
+
tr .@{calendar-prefix-cls}-selected-start-date:last-child{
|
|
173
|
+
&::before{
|
|
174
|
+
border-radius: @border-radius-base @border-radius-base @border-radius-base @border-radius-base;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
tr .@{calendar-prefix-cls}-in-range-cell:last-child{
|
|
178
|
+
&::before{
|
|
179
|
+
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
.@{calendar-prefix-cls}-cell{
|
|
183
|
+
height: 38px;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
//MonthPanel
|
|
188
|
+
.@{calendar-prefix-cls}-month-panel-month {
|
|
189
|
+
border-radius: @border-radius-base;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
//WeekPicker
|
|
193
|
+
.@{calendar-prefix-cls}-week-number {
|
|
194
|
+
&-cell {
|
|
195
|
+
opacity: 1;
|
|
196
|
+
font-weight: normal;
|
|
197
|
+
color: @text-color-tertiary !important;
|
|
198
|
+
}
|
|
199
|
+
.@{calendar-prefix-cls}-body tr {
|
|
200
|
+
cursor: pointer;
|
|
201
|
+
transition: all 0.3s;
|
|
202
|
+
background: @white;
|
|
203
|
+
.@{calendar-prefix-cls}-date{
|
|
204
|
+
width: auto;
|
|
205
|
+
border-radius: 0;
|
|
206
|
+
font-weight: 500;
|
|
207
|
+
}
|
|
208
|
+
&:hover {
|
|
209
|
+
background: @white;
|
|
210
|
+
td:nth-child(2){
|
|
211
|
+
.@{calendar-prefix-cls}-date{
|
|
212
|
+
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
td:last-child{
|
|
216
|
+
.@{calendar-prefix-cls}-date{
|
|
217
|
+
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
.@{calendar-prefix-cls}-cell{
|
|
221
|
+
&::before{
|
|
222
|
+
top: 8px;
|
|
223
|
+
bottom: 8px;
|
|
224
|
+
}
|
|
225
|
+
.@{calendar-prefix-cls}-date{
|
|
226
|
+
background: @background-color-base;
|
|
227
|
+
&:hover{
|
|
228
|
+
background: @background-color-base;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
.@{calendar-prefix-cls}-selected-day{
|
|
232
|
+
background: @background-color-base;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
.@{calendar-prefix-cls}-week-number-cell{
|
|
236
|
+
background: @white;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
.@{calendar-prefix-cls}-selected-day .@{calendar-prefix-cls}-date,
|
|
240
|
+
.@{calendar-prefix-cls}-selected-day:hover .@{calendar-prefix-cls}-date {
|
|
241
|
+
color: @text-color;
|
|
242
|
+
background: transparent;
|
|
243
|
+
}
|
|
244
|
+
&.@{calendar-prefix-cls}-active-week {
|
|
245
|
+
background: transparent;
|
|
246
|
+
td:nth-child(2){
|
|
247
|
+
.@{calendar-prefix-cls}-selected-day,.@{calendar-prefix-cls}-date{
|
|
248
|
+
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
td:last-child{
|
|
252
|
+
.@{calendar-prefix-cls}-selected-day,.@{calendar-prefix-cls}-date{
|
|
253
|
+
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
.@{calendar-prefix-cls}-cell{
|
|
257
|
+
font-weight: bold;
|
|
258
|
+
//background: @primary-color;
|
|
259
|
+
.@{calendar-prefix-cls}-date{
|
|
260
|
+
color: @text-color-inverse;
|
|
261
|
+
background: @primary-color;
|
|
262
|
+
&:hover{
|
|
263
|
+
color: @text-color-inverse;
|
|
264
|
+
background: @primary-color;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
.@{calendar-prefix-cls}-selected-day{
|
|
268
|
+
background: @primary-color;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
.@{calendar-prefix-cls}-today .@{calendar-prefix-cls}-date{
|
|
273
|
+
//color: @text-color;
|
|
274
|
+
//font-weight: normal;
|
|
275
|
+
border-color: transparent;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
.@{calendar-prefix-cls}-cell{
|
|
279
|
+
height: 38px;
|
|
280
|
+
position: relative;
|
|
281
|
+
&::before {
|
|
282
|
+
position: absolute;
|
|
283
|
+
top: 3px;
|
|
284
|
+
right: 0;
|
|
285
|
+
bottom: 3px;
|
|
286
|
+
left: 0;
|
|
287
|
+
display: block;
|
|
288
|
+
border: 0;
|
|
289
|
+
border-radius: 0;
|
|
290
|
+
content: '';
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
@modal-prefix-cls: ~'@{ant-prefix}-modal';
|
|
2
|
+
@confirm-prefix-cls: ~'@{ant-prefix}-modal-confirm';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
.@{modal-prefix-cls}{
|
|
6
|
+
&-header{
|
|
7
|
+
font-size: @font-size-lg;
|
|
8
|
+
font-weight: 500;
|
|
9
|
+
}
|
|
10
|
+
&-close-x{
|
|
11
|
+
font-size: 20px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&-title{
|
|
15
|
+
line-height: @line-height-lg;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.@{confirm-prefix-cls}{
|
|
20
|
+
&-body{
|
|
21
|
+
.anticon {
|
|
22
|
+
font-size: 22px !important;
|
|
23
|
+
margin-top: 1px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&-body &-content{
|
|
28
|
+
margin-top: @margin-xs;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.@{confirm-prefix-cls}-btns {
|
|
32
|
+
button {
|
|
33
|
+
border-radius: @border-radius-base;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
@popover-prefix-cls: ~'@{ant-prefix}-popover';
|
|
2
|
+
|
|
3
|
+
.@{popover-prefix-cls} {
|
|
4
|
+
&-inner-content {
|
|
5
|
+
padding: @padding-base;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&-message {
|
|
9
|
+
padding: 0 0 @padding-xs;
|
|
10
|
+
|
|
11
|
+
&>.anticon {
|
|
12
|
+
font-size: @font-size-lg;
|
|
13
|
+
top: 7px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&-message-title {
|
|
18
|
+
padding-top: @padding-xxs;
|
|
19
|
+
padding-bottom: @padding-xxs;
|
|
20
|
+
line-height: @line-height-base;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&-buttons {
|
|
24
|
+
margin-bottom: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.@{popover-prefix-cls}-arrow-hidden {
|
|
29
|
+
.@{popover-prefix-cls}-arrow {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@popover-prefix-cls: ~'@{ant-prefix}-popover';
|
|
2
|
+
|
|
3
|
+
// Base class
|
|
4
|
+
.tnt-popover.@{popover-prefix-cls} {
|
|
5
|
+
|
|
6
|
+
&-dark,
|
|
7
|
+
&-light {
|
|
8
|
+
.@{popover-prefix-cls}-title {
|
|
9
|
+
border-bottom: 0px !important;
|
|
10
|
+
padding: 10px 12px 4px !important;
|
|
11
|
+
border-bottom: 0px !important;
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.@{popover-prefix-cls}-inner {
|
|
16
|
+
&-content {
|
|
17
|
+
padding: 0px 12px 12px 12px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-dark {
|
|
23
|
+
.@{popover-prefix-cls}-title {
|
|
24
|
+
color: @popover-color-dark;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.@{popover-prefix-cls}-inner {
|
|
28
|
+
background-color: @popover-bg-dark;
|
|
29
|
+
|
|
30
|
+
&-content {
|
|
31
|
+
color: @popover-color-dark;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.@{popover-prefix-cls}-arrow {
|
|
36
|
+
border-color: @popover-arrow-color-dark !important;
|
|
37
|
+
|
|
38
|
+
&::before {
|
|
39
|
+
background-color: @popover-bg-dark;
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
// Arrows
|
|
47
|
+
&-arrow {
|
|
48
|
+
border-radius: 1px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
.@{popover-prefix-cls}-arrow-hidden {
|
|
54
|
+
.@{popover-prefix-cls}-arrow {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
}
|