@capillarytech/blaze-ui 0.1.6-alpha.52 → 0.1.6-alpha.53
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.
|
@@ -191,9 +191,11 @@ const CapUnifiedSelect = ({
|
|
|
191
191
|
/>
|
|
192
192
|
)}
|
|
193
193
|
</HeaderWrapper>
|
|
194
|
+
{bylineText &&
|
|
194
195
|
<div className="cap-unified-select-header-byline-text">
|
|
195
|
-
|
|
196
|
+
<CapLabel className={classnames(disabled ? 'disabled' : '', 'cap-unified-select-header-byline-text')}>{bylineText}</CapLabel>
|
|
196
197
|
</div>
|
|
198
|
+
}
|
|
197
199
|
</>
|
|
198
200
|
);
|
|
199
201
|
}, [headerLabel, tooltip, bylineText, disabled]);
|
|
@@ -237,7 +239,6 @@ const CapUnifiedSelect = ({
|
|
|
237
239
|
<CapRow
|
|
238
240
|
className={classnames("cap-unified-select-select-all-container")}
|
|
239
241
|
align="middle"
|
|
240
|
-
gap={6}
|
|
241
242
|
>
|
|
242
243
|
<Checkbox
|
|
243
244
|
className={classnames("cap-unified-select-select-all-checkbox")}
|
|
@@ -232,7 +232,7 @@ export const selectStyles = css`
|
|
|
232
232
|
}
|
|
233
233
|
.ant-select.ant-select-focused.ant-select-outlined:not(.ant-select-disabled) .ant-select-selector {
|
|
234
234
|
border-color: #7A869A !important;
|
|
235
|
-
box-shadow:
|
|
235
|
+
box-shadow: none;
|
|
236
236
|
outline: 0;
|
|
237
237
|
}
|
|
238
238
|
|
|
@@ -262,12 +262,12 @@ export const selectStyles = css`
|
|
|
262
262
|
font-family: ${styledVars.FONT_FAMILY};
|
|
263
263
|
font-weight: 400;
|
|
264
264
|
font-size: 12px;
|
|
265
|
-
margin-top: -
|
|
265
|
+
margin-top: -5px;
|
|
266
266
|
letter-spacing: 0px;
|
|
267
267
|
color: #97A0AF;
|
|
268
268
|
}
|
|
269
269
|
.ant-input-affix-wrapper .ant-input-prefix{
|
|
270
|
-
left:
|
|
270
|
+
left: 12px;
|
|
271
271
|
}
|
|
272
272
|
.ant-select-selection-item{
|
|
273
273
|
background: transparent;
|
|
@@ -370,18 +370,18 @@ export const selectStyles = css`
|
|
|
370
370
|
border: none;
|
|
371
371
|
box-shadow: none;
|
|
372
372
|
border-radius: 0;
|
|
373
|
+
border-bottom: 1px solid transparent;
|
|
374
|
+
transition: border-color 0.2s ease;
|
|
373
375
|
}
|
|
374
376
|
|
|
375
377
|
.ant-input-affix-wrapper:hover {
|
|
376
|
-
border:
|
|
378
|
+
border-bottom: 1px solid #7A869A !important;
|
|
377
379
|
box-shadow: none;
|
|
378
|
-
border-bottom: 1px solid #EBECF0;
|
|
379
380
|
}
|
|
380
381
|
|
|
381
382
|
.ant-input-affix-wrapper:focus-within {
|
|
382
|
-
border:
|
|
383
|
+
border-bottom: 1px solid #091E42 !important;
|
|
383
384
|
box-shadow: none;
|
|
384
|
-
border-bottom: 1px solid #091E42;
|
|
385
385
|
outline: none;
|
|
386
386
|
}
|
|
387
387
|
|
|
@@ -390,5 +390,8 @@ export const selectStyles = css`
|
|
|
390
390
|
box-shadow: none !important;
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
|
+
.cap-tooltip-with-info-icon{
|
|
394
|
+
margin-top: 2px;
|
|
395
|
+
}
|
|
393
396
|
}
|
|
394
397
|
`;
|
package/package.json
CHANGED