ns-base-module 2.0.30 → 2.0.32
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/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
.class-filter-component {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex: 1;
|
|
4
|
+
flex-wrap: wrap;
|
|
5
|
+
align-items: flex-start;
|
|
6
|
+
row-gap: 8px;
|
|
2
7
|
&.tags-wrap {
|
|
3
8
|
z-index: 2;
|
|
4
9
|
flex: 1;
|
|
5
|
-
.tags-list {
|
|
6
|
-
display: inline-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
.tags-list {
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
margin-right: 8px;
|
|
14
|
+
padding: 10px 16px;
|
|
15
|
+
color: #666666;
|
|
16
|
+
background-color: var(--order-tab-bg-color, #fff);
|
|
17
|
+
cursor: pointer;
|
|
12
18
|
border-radius: 4px 4px 0 0;
|
|
13
19
|
font-weight: 500;
|
|
14
20
|
line-height: 1;
|
|
@@ -38,13 +44,39 @@
|
|
|
38
44
|
}
|
|
39
45
|
}
|
|
40
46
|
|
|
41
|
-
.num-txt {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
47
|
+
.num-txt {
|
|
48
|
+
display: inline-flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: center;
|
|
51
|
+
min-width: 16px;
|
|
52
|
+
height: 16px;
|
|
53
|
+
margin-left: 4px;
|
|
54
|
+
padding: 0 8px;
|
|
55
|
+
color: #9b9b9b;
|
|
56
|
+
font-size: 12px;
|
|
57
|
+
background: #ffffff;
|
|
58
|
+
border-radius: 999px;
|
|
59
|
+
box-sizing: border-box;
|
|
60
|
+
text-align: center;
|
|
61
|
+
line-height: 1;
|
|
62
|
+
vertical-align: middle;
|
|
63
|
+
padding-top: 1px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.num-txt-single {
|
|
67
|
+
display: inline-flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
justify-content: center;
|
|
70
|
+
width: 16px;
|
|
71
|
+
min-width: 16px;
|
|
72
|
+
height: 16px;
|
|
73
|
+
padding: 0;
|
|
74
|
+
line-height: 1;
|
|
75
|
+
border-radius: 50%;
|
|
76
|
+
text-align: center;
|
|
77
|
+
vertical-align: middle;
|
|
78
|
+
padding-top: 1px;
|
|
79
|
+
}
|
|
48
80
|
|
|
49
81
|
.actionMenu {
|
|
50
82
|
color: var(--primary-text-color);
|
|
@@ -73,11 +105,37 @@
|
|
|
73
105
|
background-color: var(--primary-color);
|
|
74
106
|
}
|
|
75
107
|
|
|
76
|
-
.num-txt {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
108
|
+
.num-txt {
|
|
109
|
+
display: inline-flex;
|
|
110
|
+
align-items: center;
|
|
111
|
+
justify-content: center;
|
|
112
|
+
min-width: 16px;
|
|
113
|
+
height: 16px;
|
|
114
|
+
margin-left: 2px;
|
|
115
|
+
padding: 0 8px;
|
|
116
|
+
color: #9b9b9b;
|
|
117
|
+
font-size: 12px;
|
|
118
|
+
background: #ffffff;
|
|
119
|
+
border-radius: 999px;
|
|
120
|
+
box-sizing: border-box;
|
|
121
|
+
text-align: center;
|
|
122
|
+
line-height: 1;
|
|
123
|
+
vertical-align: middle;
|
|
124
|
+
padding-top: 2px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.num-txt-single {
|
|
128
|
+
display: inline-flex;
|
|
129
|
+
align-items: center;
|
|
130
|
+
justify-content: center;
|
|
131
|
+
width: 16px;
|
|
132
|
+
min-width: 16px;
|
|
133
|
+
height: 16px;
|
|
134
|
+
padding: 0;
|
|
135
|
+
line-height: 1;
|
|
136
|
+
border-radius: 50%;
|
|
137
|
+
text-align: center;
|
|
138
|
+
vertical-align: middle;
|
|
139
|
+
padding-top: 2px;
|
|
140
|
+
}
|
|
141
|
+
}
|