@nutui/nutui-react 3.0.11-patch.0 → 3.0.11
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/CHANGELOG.md +7 -6
- package/dist/cjs/packages/address/style/address.scss +0 -114
- package/dist/cjs/packages/address/style/style.css +0 -103
- package/dist/cjs/packages/address/style-jmapp/address.scss +0 -114
- package/dist/cjs/packages/address/style-jmapp/style.css +0 -103
- package/dist/cjs/packages/address/style-jrkf/address.scss +0 -114
- package/dist/cjs/packages/address/style-jrkf/style.css +0 -103
- package/dist/cjs/packages/elevator/style/css.js +2 -0
- package/dist/cjs/packages/elevator/style/elevator.scss +95 -116
- package/dist/cjs/packages/elevator/style/index.js +2 -0
- package/dist/cjs/packages/elevator/style/style.css +83 -98
- package/dist/cjs/packages/elevator/style-jmapp/css.js +2 -0
- package/dist/cjs/packages/elevator/style-jmapp/elevator.scss +95 -116
- package/dist/cjs/packages/elevator/style-jmapp/index.js +2 -0
- package/dist/cjs/packages/elevator/style-jmapp/style.css +83 -98
- package/dist/cjs/packages/elevator/style-jrkf/css.js +2 -0
- package/dist/cjs/packages/elevator/style-jrkf/elevator.scss +95 -116
- package/dist/cjs/packages/elevator/style-jrkf/index.js +2 -0
- package/dist/cjs/packages/elevator/style-jrkf/style.css +83 -98
- package/dist/es/packages/address/style/address.scss +0 -114
- package/dist/es/packages/address/style/style.css +0 -103
- package/dist/es/packages/address/style-jmapp/address.scss +0 -114
- package/dist/es/packages/address/style-jmapp/style.css +0 -103
- package/dist/es/packages/address/style-jrkf/address.scss +0 -114
- package/dist/es/packages/address/style-jrkf/style.css +0 -103
- package/dist/es/packages/elevator/style/css.js +2 -0
- package/dist/es/packages/elevator/style/elevator.scss +95 -116
- package/dist/es/packages/elevator/style/index.js +2 -0
- package/dist/es/packages/elevator/style/style.css +83 -98
- package/dist/es/packages/elevator/style-jmapp/css.js +2 -0
- package/dist/es/packages/elevator/style-jmapp/elevator.scss +95 -116
- package/dist/es/packages/elevator/style-jmapp/index.js +2 -0
- package/dist/es/packages/elevator/style-jmapp/style.css +83 -98
- package/dist/es/packages/elevator/style-jrkf/css.js +2 -0
- package/dist/es/packages/elevator/style-jrkf/elevator.scss +95 -116
- package/dist/es/packages/elevator/style-jrkf/index.js +2 -0
- package/dist/es/packages/elevator/style-jrkf/style.css +83 -98
- package/dist/style-jmapp.css +1 -1
- package/dist/style-jmapp.scss +41 -41
- package/dist/style-jrkf.css +1 -1
- package/dist/style-jrkf.scss +37 -37
- package/dist/style.css +1 -1
- package/dist/style.scss +45 -45
- package/package.json +1 -1
|
@@ -44,120 +44,6 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.nut-address {
|
|
48
|
-
&-title {
|
|
49
|
-
font-size: 14px;
|
|
50
|
-
font-weight: 500;
|
|
51
|
-
padding: 16px 16px 12px 16px;
|
|
52
|
-
}
|
|
53
|
-
&-hotlist {
|
|
54
|
-
padding: 0 16px;
|
|
55
|
-
display: flex;
|
|
56
|
-
flex-wrap: wrap;
|
|
57
|
-
align-items: flex-start;
|
|
58
|
-
&-item {
|
|
59
|
-
display: flex;
|
|
60
|
-
justify-content: center;
|
|
61
|
-
align-items: center;
|
|
62
|
-
width: 63px;
|
|
63
|
-
height: 28px;
|
|
64
|
-
font-size: 12px;
|
|
65
|
-
border-radius: 4px;
|
|
66
|
-
margin-bottom: 7px;
|
|
67
|
-
/* #ifdef harmony*/
|
|
68
|
-
margin-right: 6px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
/* #ifndef harmony*/
|
|
71
|
-
margin-right: 7px;
|
|
72
|
-
/* #endif */
|
|
73
|
-
background-color: $color-background-sunken;
|
|
74
|
-
color: $color-title;
|
|
75
|
-
&:nth-child(5n) {
|
|
76
|
-
margin-right: 0;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&.hotlist-more {
|
|
81
|
-
.nut-address-hotlist-item {
|
|
82
|
-
width: auto;
|
|
83
|
-
padding: 0 16px;
|
|
84
|
-
margin-right: 7px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&-selected {
|
|
90
|
-
width: 100%;
|
|
91
|
-
height: 60px;
|
|
92
|
-
padding: 0 16px;
|
|
93
|
-
display: flex;
|
|
94
|
-
align-items: center;
|
|
95
|
-
border-bottom: 1px solid $color-border;
|
|
96
|
-
&-item {
|
|
97
|
-
font-size: 12px;
|
|
98
|
-
display: inline-block;
|
|
99
|
-
height: 28px;
|
|
100
|
-
line-height: 28px;
|
|
101
|
-
padding: 0 12px;
|
|
102
|
-
border-radius: 4px;
|
|
103
|
-
background-color: $color-background-sunken;
|
|
104
|
-
|
|
105
|
-
&.active {
|
|
106
|
-
border: 1px solid $color-primary;
|
|
107
|
-
background-color: $color-primary-light-pressed;
|
|
108
|
-
color: $color-primary;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
&-border {
|
|
112
|
-
margin: 0 2px;
|
|
113
|
-
color: $color-text-disabled;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&-elevator {
|
|
118
|
-
margin-top: 0;
|
|
119
|
-
.nut-elevator-list {
|
|
120
|
-
&-item {
|
|
121
|
-
position: relative;
|
|
122
|
-
padding-left: 20px;
|
|
123
|
-
}
|
|
124
|
-
&-item-code {
|
|
125
|
-
display: inline;
|
|
126
|
-
position: absolute;
|
|
127
|
-
left: 0;
|
|
128
|
-
top: 0;
|
|
129
|
-
height: 30px;
|
|
130
|
-
line-height: 30px;
|
|
131
|
-
border-bottom: 0;
|
|
132
|
-
color: $color-text-help;
|
|
133
|
-
font-weight: 500;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
.nut-elevator-bars {
|
|
137
|
-
top: 40%;
|
|
138
|
-
padding: 0;
|
|
139
|
-
background: none;
|
|
140
|
-
|
|
141
|
-
&-inner-item {
|
|
142
|
-
display: flex;
|
|
143
|
-
justify-content: center;
|
|
144
|
-
align-items: center;
|
|
145
|
-
width: 16px;
|
|
146
|
-
height: 16px;
|
|
147
|
-
font-size: 10px;
|
|
148
|
-
border-radius: 16px;
|
|
149
|
-
margin-bottom: 2px;
|
|
150
|
-
color: $color-text-help;
|
|
151
|
-
&-active {
|
|
152
|
-
background-color: $color-primary;
|
|
153
|
-
color: $color-background-overlay;
|
|
154
|
-
font-weight: 400;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
47
|
[dir='rtl'] .nut-address,
|
|
162
48
|
.nut-rtl .nut-address {
|
|
163
49
|
&-exist {
|
|
@@ -41,109 +41,6 @@
|
|
|
41
41
|
color: #ffffff;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.nut-address-title {
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
font-weight: 500;
|
|
47
|
-
padding: 16px 16px 12px 16px;
|
|
48
|
-
}
|
|
49
|
-
.nut-address-hotlist {
|
|
50
|
-
padding: 0 16px;
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-wrap: wrap;
|
|
53
|
-
align-items: flex-start;
|
|
54
|
-
}
|
|
55
|
-
.nut-address-hotlist-item {
|
|
56
|
-
display: flex;
|
|
57
|
-
justify-content: center;
|
|
58
|
-
align-items: center;
|
|
59
|
-
width: 63px;
|
|
60
|
-
height: 28px;
|
|
61
|
-
font-size: 12px;
|
|
62
|
-
border-radius: 4px;
|
|
63
|
-
margin-bottom: 7px;
|
|
64
|
-
/* #ifdef harmony*/
|
|
65
|
-
margin-right: 6px;
|
|
66
|
-
/* #endif */
|
|
67
|
-
/* #ifndef harmony*/
|
|
68
|
-
margin-right: 7px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
background-color: var(--nutui-color-background-sunken, #f7f8fc);
|
|
71
|
-
color: var(--nutui-color-title, #1a1a1a);
|
|
72
|
-
}
|
|
73
|
-
.nut-address-hotlist-item:nth-child(5n) {
|
|
74
|
-
margin-right: 0;
|
|
75
|
-
}
|
|
76
|
-
.nut-address-hotlist.hotlist-more .nut-address-hotlist-item {
|
|
77
|
-
width: auto;
|
|
78
|
-
padding: 0 16px;
|
|
79
|
-
margin-right: 7px;
|
|
80
|
-
}
|
|
81
|
-
.nut-address-selected {
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: 60px;
|
|
84
|
-
padding: 0 16px;
|
|
85
|
-
display: flex;
|
|
86
|
-
align-items: center;
|
|
87
|
-
border-bottom: 1px solid var(--nutui-color-border, rgba(0, 0, 0, 0.06));
|
|
88
|
-
}
|
|
89
|
-
.nut-address-selected-item {
|
|
90
|
-
font-size: 12px;
|
|
91
|
-
display: inline-block;
|
|
92
|
-
height: 28px;
|
|
93
|
-
line-height: 28px;
|
|
94
|
-
padding: 0 12px;
|
|
95
|
-
border-radius: 4px;
|
|
96
|
-
background-color: var(--nutui-color-background-sunken, #f7f8fc);
|
|
97
|
-
}
|
|
98
|
-
.nut-address-selected-item.active {
|
|
99
|
-
border: 1px solid var(--nutui-color-primary, #ff0f23);
|
|
100
|
-
background-color: var(--nutui-color-primary-light-pressed, #ffebf1);
|
|
101
|
-
color: var(--nutui-color-primary, #ff0f23);
|
|
102
|
-
}
|
|
103
|
-
.nut-address-selected-border {
|
|
104
|
-
margin: 0 2px;
|
|
105
|
-
color: var(--nutui-color-text-disabled, #c2c4cc);
|
|
106
|
-
}
|
|
107
|
-
.nut-address-elevator {
|
|
108
|
-
margin-top: 0;
|
|
109
|
-
}
|
|
110
|
-
.nut-address-elevator .nut-elevator-list-item {
|
|
111
|
-
position: relative;
|
|
112
|
-
padding-left: 20px;
|
|
113
|
-
}
|
|
114
|
-
.nut-address-elevator .nut-elevator-list-item-code {
|
|
115
|
-
display: inline;
|
|
116
|
-
position: absolute;
|
|
117
|
-
left: 0;
|
|
118
|
-
top: 0;
|
|
119
|
-
height: 30px;
|
|
120
|
-
line-height: 30px;
|
|
121
|
-
border-bottom: 0;
|
|
122
|
-
color: var(--nutui-color-text-help, #888b94);
|
|
123
|
-
font-weight: 500;
|
|
124
|
-
}
|
|
125
|
-
.nut-address-elevator .nut-elevator-bars {
|
|
126
|
-
top: 40%;
|
|
127
|
-
padding: 0;
|
|
128
|
-
background: none;
|
|
129
|
-
}
|
|
130
|
-
.nut-address-elevator .nut-elevator-bars-inner-item {
|
|
131
|
-
display: flex;
|
|
132
|
-
justify-content: center;
|
|
133
|
-
align-items: center;
|
|
134
|
-
width: 16px;
|
|
135
|
-
height: 16px;
|
|
136
|
-
font-size: 10px;
|
|
137
|
-
border-radius: 16px;
|
|
138
|
-
margin-bottom: 2px;
|
|
139
|
-
color: var(--nutui-color-text-help, #888b94);
|
|
140
|
-
}
|
|
141
|
-
.nut-address-elevator .nut-elevator-bars-inner-item-active {
|
|
142
|
-
background-color: var(--nutui-color-primary, #ff0f23);
|
|
143
|
-
color: var(--nutui-color-background-overlay, #ffffff);
|
|
144
|
-
font-weight: 400;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
44
|
[dir=rtl] .nut-address-exist-item-info,
|
|
148
45
|
.nut-rtl .nut-address-exist-item-info {
|
|
149
46
|
margin-left: 0;
|
|
@@ -44,120 +44,6 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.nut-address {
|
|
48
|
-
&-title {
|
|
49
|
-
font-size: 14px;
|
|
50
|
-
font-weight: 500;
|
|
51
|
-
padding: 16px 16px 12px 16px;
|
|
52
|
-
}
|
|
53
|
-
&-hotlist {
|
|
54
|
-
padding: 0 16px;
|
|
55
|
-
display: flex;
|
|
56
|
-
flex-wrap: wrap;
|
|
57
|
-
align-items: flex-start;
|
|
58
|
-
&-item {
|
|
59
|
-
display: flex;
|
|
60
|
-
justify-content: center;
|
|
61
|
-
align-items: center;
|
|
62
|
-
width: 63px;
|
|
63
|
-
height: 28px;
|
|
64
|
-
font-size: 12px;
|
|
65
|
-
border-radius: 4px;
|
|
66
|
-
margin-bottom: 7px;
|
|
67
|
-
/* #ifdef harmony*/
|
|
68
|
-
margin-right: 6px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
/* #ifndef harmony*/
|
|
71
|
-
margin-right: 7px;
|
|
72
|
-
/* #endif */
|
|
73
|
-
background-color: $color-background-sunken;
|
|
74
|
-
color: $color-title;
|
|
75
|
-
&:nth-child(5n) {
|
|
76
|
-
margin-right: 0;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&.hotlist-more {
|
|
81
|
-
.nut-address-hotlist-item {
|
|
82
|
-
width: auto;
|
|
83
|
-
padding: 0 16px;
|
|
84
|
-
margin-right: 7px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&-selected {
|
|
90
|
-
width: 100%;
|
|
91
|
-
height: 60px;
|
|
92
|
-
padding: 0 16px;
|
|
93
|
-
display: flex;
|
|
94
|
-
align-items: center;
|
|
95
|
-
border-bottom: 1px solid $color-border;
|
|
96
|
-
&-item {
|
|
97
|
-
font-size: 12px;
|
|
98
|
-
display: inline-block;
|
|
99
|
-
height: 28px;
|
|
100
|
-
line-height: 28px;
|
|
101
|
-
padding: 0 12px;
|
|
102
|
-
border-radius: 4px;
|
|
103
|
-
background-color: $color-background-sunken;
|
|
104
|
-
|
|
105
|
-
&.active {
|
|
106
|
-
border: 1px solid $color-primary;
|
|
107
|
-
background-color: $color-primary-light-pressed;
|
|
108
|
-
color: $color-primary;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
&-border {
|
|
112
|
-
margin: 0 2px;
|
|
113
|
-
color: $color-text-disabled;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&-elevator {
|
|
118
|
-
margin-top: 0;
|
|
119
|
-
.nut-elevator-list {
|
|
120
|
-
&-item {
|
|
121
|
-
position: relative;
|
|
122
|
-
padding-left: 20px;
|
|
123
|
-
}
|
|
124
|
-
&-item-code {
|
|
125
|
-
display: inline;
|
|
126
|
-
position: absolute;
|
|
127
|
-
left: 0;
|
|
128
|
-
top: 0;
|
|
129
|
-
height: 30px;
|
|
130
|
-
line-height: 30px;
|
|
131
|
-
border-bottom: 0;
|
|
132
|
-
color: $color-text-help;
|
|
133
|
-
font-weight: 500;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
.nut-elevator-bars {
|
|
137
|
-
top: 40%;
|
|
138
|
-
padding: 0;
|
|
139
|
-
background: none;
|
|
140
|
-
|
|
141
|
-
&-inner-item {
|
|
142
|
-
display: flex;
|
|
143
|
-
justify-content: center;
|
|
144
|
-
align-items: center;
|
|
145
|
-
width: 16px;
|
|
146
|
-
height: 16px;
|
|
147
|
-
font-size: 10px;
|
|
148
|
-
border-radius: 16px;
|
|
149
|
-
margin-bottom: 2px;
|
|
150
|
-
color: $color-text-help;
|
|
151
|
-
&-active {
|
|
152
|
-
background-color: $color-primary;
|
|
153
|
-
color: $color-background-overlay;
|
|
154
|
-
font-weight: 400;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
47
|
[dir='rtl'] .nut-address,
|
|
162
48
|
.nut-rtl .nut-address {
|
|
163
49
|
&-exist {
|
|
@@ -41,109 +41,6 @@
|
|
|
41
41
|
color: var(--nutui-color-text-dark);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.nut-address-title {
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
font-weight: 500;
|
|
47
|
-
padding: 16px 16px 12px 16px;
|
|
48
|
-
}
|
|
49
|
-
.nut-address-hotlist {
|
|
50
|
-
padding: 0 16px;
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-wrap: wrap;
|
|
53
|
-
align-items: flex-start;
|
|
54
|
-
}
|
|
55
|
-
.nut-address-hotlist-item {
|
|
56
|
-
display: flex;
|
|
57
|
-
justify-content: center;
|
|
58
|
-
align-items: center;
|
|
59
|
-
width: 63px;
|
|
60
|
-
height: 28px;
|
|
61
|
-
font-size: 12px;
|
|
62
|
-
border-radius: 4px;
|
|
63
|
-
margin-bottom: 7px;
|
|
64
|
-
/* #ifdef harmony*/
|
|
65
|
-
margin-right: 6px;
|
|
66
|
-
/* #endif */
|
|
67
|
-
/* #ifndef harmony*/
|
|
68
|
-
margin-right: 7px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
background-color: var(--nutui-gray-2, #f8f8f8);
|
|
71
|
-
color: var(--nutui-color-title);
|
|
72
|
-
}
|
|
73
|
-
.nut-address-hotlist-item:nth-child(5n) {
|
|
74
|
-
margin-right: 0;
|
|
75
|
-
}
|
|
76
|
-
.nut-address-hotlist.hotlist-more .nut-address-hotlist-item {
|
|
77
|
-
width: auto;
|
|
78
|
-
padding: 0 16px;
|
|
79
|
-
margin-right: 7px;
|
|
80
|
-
}
|
|
81
|
-
.nut-address-selected {
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: 60px;
|
|
84
|
-
padding: 0 16px;
|
|
85
|
-
display: flex;
|
|
86
|
-
align-items: center;
|
|
87
|
-
border-bottom: 1px solid var(--nutui-color-border);
|
|
88
|
-
}
|
|
89
|
-
.nut-address-selected-item {
|
|
90
|
-
font-size: 12px;
|
|
91
|
-
display: inline-block;
|
|
92
|
-
height: 28px;
|
|
93
|
-
line-height: 28px;
|
|
94
|
-
padding: 0 12px;
|
|
95
|
-
border-radius: 4px;
|
|
96
|
-
background-color: var(--nutui-gray-2, #f8f8f8);
|
|
97
|
-
}
|
|
98
|
-
.nut-address-selected-item.active {
|
|
99
|
-
border: 1px solid var(--nutui-color-primary);
|
|
100
|
-
background-color: var(--nutui-color-primary-light-pressed);
|
|
101
|
-
color: var(--nutui-color-primary);
|
|
102
|
-
}
|
|
103
|
-
.nut-address-selected-border {
|
|
104
|
-
margin: 0 2px;
|
|
105
|
-
color: var(--nutui-color-text-disabled);
|
|
106
|
-
}
|
|
107
|
-
.nut-address-elevator {
|
|
108
|
-
margin-top: 0;
|
|
109
|
-
}
|
|
110
|
-
.nut-address-elevator .nut-elevator-list-item {
|
|
111
|
-
position: relative;
|
|
112
|
-
padding-left: 20px;
|
|
113
|
-
}
|
|
114
|
-
.nut-address-elevator .nut-elevator-list-item-code {
|
|
115
|
-
display: inline;
|
|
116
|
-
position: absolute;
|
|
117
|
-
left: 0;
|
|
118
|
-
top: 0;
|
|
119
|
-
height: 30px;
|
|
120
|
-
line-height: 30px;
|
|
121
|
-
border-bottom: 0;
|
|
122
|
-
color: var(--nutui-color-text-help);
|
|
123
|
-
font-weight: 500;
|
|
124
|
-
}
|
|
125
|
-
.nut-address-elevator .nut-elevator-bars {
|
|
126
|
-
top: 40%;
|
|
127
|
-
padding: 0;
|
|
128
|
-
background: none;
|
|
129
|
-
}
|
|
130
|
-
.nut-address-elevator .nut-elevator-bars-inner-item {
|
|
131
|
-
display: flex;
|
|
132
|
-
justify-content: center;
|
|
133
|
-
align-items: center;
|
|
134
|
-
width: 16px;
|
|
135
|
-
height: 16px;
|
|
136
|
-
font-size: 10px;
|
|
137
|
-
border-radius: 16px;
|
|
138
|
-
margin-bottom: 2px;
|
|
139
|
-
color: var(--nutui-color-text-help);
|
|
140
|
-
}
|
|
141
|
-
.nut-address-elevator .nut-elevator-bars-inner-item-active {
|
|
142
|
-
background-color: var(--nutui-color-primary);
|
|
143
|
-
color: var(--nutui-color-surface-2);
|
|
144
|
-
font-weight: 400;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
44
|
[dir=rtl] .nut-address-exist-item-info,
|
|
148
45
|
.nut-rtl .nut-address-exist-item-info {
|
|
149
46
|
margin-left: 0;
|
|
@@ -44,120 +44,6 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.nut-address {
|
|
48
|
-
&-title {
|
|
49
|
-
font-size: 14px;
|
|
50
|
-
font-weight: 500;
|
|
51
|
-
padding: 16px 16px 12px 16px;
|
|
52
|
-
}
|
|
53
|
-
&-hotlist {
|
|
54
|
-
padding: 0 16px;
|
|
55
|
-
display: flex;
|
|
56
|
-
flex-wrap: wrap;
|
|
57
|
-
align-items: flex-start;
|
|
58
|
-
&-item {
|
|
59
|
-
display: flex;
|
|
60
|
-
justify-content: center;
|
|
61
|
-
align-items: center;
|
|
62
|
-
width: 63px;
|
|
63
|
-
height: 28px;
|
|
64
|
-
font-size: 12px;
|
|
65
|
-
border-radius: 4px;
|
|
66
|
-
margin-bottom: 7px;
|
|
67
|
-
/* #ifdef harmony*/
|
|
68
|
-
margin-right: 6px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
/* #ifndef harmony*/
|
|
71
|
-
margin-right: 7px;
|
|
72
|
-
/* #endif */
|
|
73
|
-
background-color: $color-background-sunken;
|
|
74
|
-
color: $color-title;
|
|
75
|
-
&:nth-child(5n) {
|
|
76
|
-
margin-right: 0;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&.hotlist-more {
|
|
81
|
-
.nut-address-hotlist-item {
|
|
82
|
-
width: auto;
|
|
83
|
-
padding: 0 16px;
|
|
84
|
-
margin-right: 7px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&-selected {
|
|
90
|
-
width: 100%;
|
|
91
|
-
height: 60px;
|
|
92
|
-
padding: 0 16px;
|
|
93
|
-
display: flex;
|
|
94
|
-
align-items: center;
|
|
95
|
-
border-bottom: 1px solid $color-border;
|
|
96
|
-
&-item {
|
|
97
|
-
font-size: 12px;
|
|
98
|
-
display: inline-block;
|
|
99
|
-
height: 28px;
|
|
100
|
-
line-height: 28px;
|
|
101
|
-
padding: 0 12px;
|
|
102
|
-
border-radius: 4px;
|
|
103
|
-
background-color: $color-background-sunken;
|
|
104
|
-
|
|
105
|
-
&.active {
|
|
106
|
-
border: 1px solid $color-primary;
|
|
107
|
-
background-color: $color-primary-light-pressed;
|
|
108
|
-
color: $color-primary;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
&-border {
|
|
112
|
-
margin: 0 2px;
|
|
113
|
-
color: $color-text-disabled;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&-elevator {
|
|
118
|
-
margin-top: 0;
|
|
119
|
-
.nut-elevator-list {
|
|
120
|
-
&-item {
|
|
121
|
-
position: relative;
|
|
122
|
-
padding-left: 20px;
|
|
123
|
-
}
|
|
124
|
-
&-item-code {
|
|
125
|
-
display: inline;
|
|
126
|
-
position: absolute;
|
|
127
|
-
left: 0;
|
|
128
|
-
top: 0;
|
|
129
|
-
height: 30px;
|
|
130
|
-
line-height: 30px;
|
|
131
|
-
border-bottom: 0;
|
|
132
|
-
color: $color-text-help;
|
|
133
|
-
font-weight: 500;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
.nut-elevator-bars {
|
|
137
|
-
top: 40%;
|
|
138
|
-
padding: 0;
|
|
139
|
-
background: none;
|
|
140
|
-
|
|
141
|
-
&-inner-item {
|
|
142
|
-
display: flex;
|
|
143
|
-
justify-content: center;
|
|
144
|
-
align-items: center;
|
|
145
|
-
width: 16px;
|
|
146
|
-
height: 16px;
|
|
147
|
-
font-size: 10px;
|
|
148
|
-
border-radius: 16px;
|
|
149
|
-
margin-bottom: 2px;
|
|
150
|
-
color: $color-text-help;
|
|
151
|
-
&-active {
|
|
152
|
-
background-color: $color-primary;
|
|
153
|
-
color: $color-background-overlay;
|
|
154
|
-
font-weight: 400;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
47
|
[dir='rtl'] .nut-address,
|
|
162
48
|
.nut-rtl .nut-address {
|
|
163
49
|
&-exist {
|
|
@@ -41,109 +41,6 @@
|
|
|
41
41
|
color: var(--nutui-color-text-dark);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.nut-address-title {
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
font-weight: 500;
|
|
47
|
-
padding: 16px 16px 12px 16px;
|
|
48
|
-
}
|
|
49
|
-
.nut-address-hotlist {
|
|
50
|
-
padding: 0 16px;
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-wrap: wrap;
|
|
53
|
-
align-items: flex-start;
|
|
54
|
-
}
|
|
55
|
-
.nut-address-hotlist-item {
|
|
56
|
-
display: flex;
|
|
57
|
-
justify-content: center;
|
|
58
|
-
align-items: center;
|
|
59
|
-
width: 63px;
|
|
60
|
-
height: 28px;
|
|
61
|
-
font-size: 12px;
|
|
62
|
-
border-radius: 4px;
|
|
63
|
-
margin-bottom: 7px;
|
|
64
|
-
/* #ifdef harmony*/
|
|
65
|
-
margin-right: 6px;
|
|
66
|
-
/* #endif */
|
|
67
|
-
/* #ifndef harmony*/
|
|
68
|
-
margin-right: 7px;
|
|
69
|
-
/* #endif */
|
|
70
|
-
background-color: var(--nutui-gray-2, #f0f0f0);
|
|
71
|
-
color: var(--nutui-color-title);
|
|
72
|
-
}
|
|
73
|
-
.nut-address-hotlist-item:nth-child(5n) {
|
|
74
|
-
margin-right: 0;
|
|
75
|
-
}
|
|
76
|
-
.nut-address-hotlist.hotlist-more .nut-address-hotlist-item {
|
|
77
|
-
width: auto;
|
|
78
|
-
padding: 0 16px;
|
|
79
|
-
margin-right: 7px;
|
|
80
|
-
}
|
|
81
|
-
.nut-address-selected {
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: 60px;
|
|
84
|
-
padding: 0 16px;
|
|
85
|
-
display: flex;
|
|
86
|
-
align-items: center;
|
|
87
|
-
border-bottom: 1px solid var(--nutui-color-border);
|
|
88
|
-
}
|
|
89
|
-
.nut-address-selected-item {
|
|
90
|
-
font-size: 12px;
|
|
91
|
-
display: inline-block;
|
|
92
|
-
height: 28px;
|
|
93
|
-
line-height: 28px;
|
|
94
|
-
padding: 0 12px;
|
|
95
|
-
border-radius: 4px;
|
|
96
|
-
background-color: var(--nutui-gray-2, #f0f0f0);
|
|
97
|
-
}
|
|
98
|
-
.nut-address-selected-item.active {
|
|
99
|
-
border: 1px solid var(--nutui-color-primary, #ff6666);
|
|
100
|
-
background-color: var(--nutui-color-primary-light-pressed, #ffcccc);
|
|
101
|
-
color: var(--nutui-color-primary, #ff6666);
|
|
102
|
-
}
|
|
103
|
-
.nut-address-selected-border {
|
|
104
|
-
margin: 0 2px;
|
|
105
|
-
color: var(--nutui-color-text-disabled);
|
|
106
|
-
}
|
|
107
|
-
.nut-address-elevator {
|
|
108
|
-
margin-top: 0;
|
|
109
|
-
}
|
|
110
|
-
.nut-address-elevator .nut-elevator-list-item {
|
|
111
|
-
position: relative;
|
|
112
|
-
padding-left: 20px;
|
|
113
|
-
}
|
|
114
|
-
.nut-address-elevator .nut-elevator-list-item-code {
|
|
115
|
-
display: inline;
|
|
116
|
-
position: absolute;
|
|
117
|
-
left: 0;
|
|
118
|
-
top: 0;
|
|
119
|
-
height: 30px;
|
|
120
|
-
line-height: 30px;
|
|
121
|
-
border-bottom: 0;
|
|
122
|
-
color: var(--nutui-color-text-help);
|
|
123
|
-
font-weight: 500;
|
|
124
|
-
}
|
|
125
|
-
.nut-address-elevator .nut-elevator-bars {
|
|
126
|
-
top: 40%;
|
|
127
|
-
padding: 0;
|
|
128
|
-
background: none;
|
|
129
|
-
}
|
|
130
|
-
.nut-address-elevator .nut-elevator-bars-inner-item {
|
|
131
|
-
display: flex;
|
|
132
|
-
justify-content: center;
|
|
133
|
-
align-items: center;
|
|
134
|
-
width: 16px;
|
|
135
|
-
height: 16px;
|
|
136
|
-
font-size: 10px;
|
|
137
|
-
border-radius: 16px;
|
|
138
|
-
margin-bottom: 2px;
|
|
139
|
-
color: var(--nutui-color-text-help);
|
|
140
|
-
}
|
|
141
|
-
.nut-address-elevator .nut-elevator-bars-inner-item-active {
|
|
142
|
-
background-color: var(--nutui-color-primary, #ff6666);
|
|
143
|
-
color: var(--nutui-color-surface-2);
|
|
144
|
-
font-weight: 400;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
44
|
[dir=rtl] .nut-address-exist-item-info,
|
|
148
45
|
.nut-rtl .nut-address-exist-item-info {
|
|
149
46
|
margin-left: 0;
|