@alicloud/console-components-search 0.2.35 → 0.2.36
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/dist/index.css +73 -0
- package/dist/index.js +126569 -0
- package/package.json +2 -1
package/dist/index.css
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
body .xconsole-rcsearch-multi-pop.xconsole-rcsearch-multi-pop > ul {
|
|
2
|
+
padding: 8px;
|
|
3
|
+
}
|
|
4
|
+
body .xconsole-rcsearch-multi-pop .next-select-menu-item {
|
|
5
|
+
padding-left: 0px!important;
|
|
6
|
+
}
|
|
7
|
+
body .xconsole-rcsearch-multi-pop .next-select-menu-item .next-menu-icon-selected {
|
|
8
|
+
display: none;
|
|
9
|
+
}
|
|
10
|
+
body .xconsole-rcsearch-multi-pop .next-menu-group-label {
|
|
11
|
+
padding-left: 0;
|
|
12
|
+
}
|
|
13
|
+
body .xconsole-rc-search-popup {
|
|
14
|
+
margin-top: 4px;
|
|
15
|
+
}
|
|
16
|
+
body .rc-search-prefix {
|
|
17
|
+
--menu-padding-horizontal: 24px;
|
|
18
|
+
}
|
|
19
|
+
body .rc-search.isWind {
|
|
20
|
+
--console-rc-search-label-color: #f7f7f7;
|
|
21
|
+
--console-rc-search-label-hover-color: #ebebeb;
|
|
22
|
+
}
|
|
23
|
+
body .rc-search.isWidget {
|
|
24
|
+
--console-rc-search-close-btn-top: 2px;
|
|
25
|
+
--console-rc-search-close-btn-left: -3px;
|
|
26
|
+
--icon-content-delete-filling: "\\E6A2";
|
|
27
|
+
}
|
|
28
|
+
body .rc-search-auto-complete [class*='select-menu-empty'] {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.rc-search-taglist:not(.isWind) {
|
|
33
|
+
margin-top: -4px;
|
|
34
|
+
}
|
|
35
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag {
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
}
|
|
38
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag [class*='-icon-close']::before {
|
|
39
|
+
content: var(--icon-content-delete-filling) !important;
|
|
40
|
+
}
|
|
41
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag [class*='icon-close']:hover {
|
|
42
|
+
color: #181818 !important;
|
|
43
|
+
}
|
|
44
|
+
.rc-search-taglist:not(.isWind) .search-tags-tag.search-tags-tag:hover [class*='-icon-close']::before {
|
|
45
|
+
color: #181818 !important;
|
|
46
|
+
}
|
|
47
|
+
.rc-search-taglist .search-tags-tag.search-tags-tag {
|
|
48
|
+
margin-top: 4px;
|
|
49
|
+
font-weight: 400;
|
|
50
|
+
color: var(--color-text1-9, #333333) !important;
|
|
51
|
+
}
|
|
52
|
+
.rc-search-taglist .search-tags-tag.search-tags-tag .search-tags-tag-label {
|
|
53
|
+
font-weight: 500;
|
|
54
|
+
color: var(--color-text1-6, #808080);
|
|
55
|
+
margin-right: 8px;
|
|
56
|
+
}
|
|
57
|
+
.rc-search-taglist .search-tags-tag.search-tags-tag[class*='tag-closable'] > [class*='tag-close-btn'] {
|
|
58
|
+
margin-left: 12px;
|
|
59
|
+
}
|
|
60
|
+
.rc-search-taglist .search-tags-tag.search-tags-tag [class*='icon-close']:hover {
|
|
61
|
+
color: #808080 !important;
|
|
62
|
+
}
|
|
63
|
+
.rc-search-taglist .search-tags-tag:not(:last-child) {
|
|
64
|
+
margin-right: 8px;
|
|
65
|
+
}
|
|
66
|
+
.rc-search-taglist .search-tags-tag_empty {
|
|
67
|
+
color: var(--color-text1-6, #808080);
|
|
68
|
+
}
|
|
69
|
+
.rc-search-taglist .search-tags-tag-dot.rc-search-taglist .search-tags-tag-dot [class*='-badge-dot'] {
|
|
70
|
+
right: 4px;
|
|
71
|
+
top: 0px;
|
|
72
|
+
}
|
|
73
|
+
|