@capillarytech/blaze-ui 0.1.6-alpha.55 → 0.1.6-alpha.56
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/CapUnifiedSelect/styles.js +39 -43
- package/package.json +1 -1
|
@@ -14,14 +14,10 @@ export const HeaderWrapper = styled.div`
|
|
|
14
14
|
|
|
15
15
|
export const selectStyles = css`
|
|
16
16
|
&.cap-unified-select-container {
|
|
17
|
-
|
|
18
|
-
flex-direction: column;
|
|
19
|
-
gap: 8px;
|
|
20
|
-
|
|
17
|
+
text-align: justify;
|
|
21
18
|
&.disabled {
|
|
22
19
|
cursor: not-allowed;
|
|
23
20
|
}
|
|
24
|
-
text-align: justify;
|
|
25
21
|
.ant-select-prefix {
|
|
26
22
|
font-size: 14px;
|
|
27
23
|
font-weight: 400;
|
|
@@ -53,46 +49,46 @@ export const selectStyles = css`
|
|
|
53
49
|
.cap-unified-tree-select {
|
|
54
50
|
min-width: 200px;
|
|
55
51
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
.ant-select.ant-select-focused.ant-select-outlined:not(.ant-select-disabled)
|
|
52
|
+
|
|
53
|
+
.ant-select.ant-select-focused.ant-select-outlined:not(.ant-select-disabled)
|
|
59
54
|
.ant-select-selector {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
55
|
+
border-color: #7a869a !important;
|
|
56
|
+
box-shadow: none;
|
|
57
|
+
outline: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
|
|
61
|
+
background-color: #42b040;
|
|
62
|
+
}
|
|
63
|
+
.ant-select-dropdown {
|
|
64
|
+
margin-top: -8px !important;
|
|
65
|
+
border-radius: 4px;
|
|
66
|
+
box-shadow:
|
|
72
67
|
0px 4px 8px -2px #091e4240,
|
|
73
68
|
0px 0px 1px 0px #091e424f;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
69
|
+
max-height: 360px;
|
|
70
|
+
overflow: visible;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.ant-select-selection-item {
|
|
74
|
+
background: transparent;
|
|
75
|
+
}
|
|
76
|
+
.ant-select-multiple .ant-select-selection-wrap {
|
|
77
|
+
align-self: center;
|
|
78
|
+
}
|
|
79
|
+
.cap-unified-tree-select .ant-select-selector:hover {
|
|
80
|
+
border: 1px solid #7a869a;
|
|
81
|
+
}
|
|
82
|
+
.cap-unified-tree-select .ant-select-selector:focus {
|
|
83
|
+
border: 1px solid #7a869a;
|
|
84
|
+
}
|
|
85
|
+
.cap-unified-tree-select .ant-select-tree-treenode {
|
|
86
|
+
padding-left: 4px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.cap-unified-select-status {
|
|
90
|
+
color: #e83135;
|
|
91
|
+
}
|
|
96
92
|
}
|
|
97
93
|
|
|
98
94
|
/* Common styles for all types */
|
|
@@ -128,7 +124,7 @@ export const selectStyles = css`
|
|
|
128
124
|
padding-left: 3px;
|
|
129
125
|
}
|
|
130
126
|
.ant-select-tree-indent {
|
|
131
|
-
margin-left:
|
|
127
|
+
margin-left: 15px;
|
|
132
128
|
}
|
|
133
129
|
.ant-select-tree-switcher:not(
|
|
134
130
|
.ant-select-tree-switcher-noop
|
package/package.json
CHANGED