halleyx-ui-framework 11.6.14 → 11.6.16
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/cjs/index.css +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +1 -1
- package/dist/src/assets/styles/select.scss +16 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -870,6 +870,12 @@ button {
|
|
|
870
870
|
// background-color: aquamarine;
|
|
871
871
|
color: black;
|
|
872
872
|
}
|
|
873
|
+
.custom-dropdown:focus-within{
|
|
874
|
+
border:1px solid var(--hlx-color-primary);
|
|
875
|
+
// .title-name{
|
|
876
|
+
// color: var(--hlx-color-primary) !important;
|
|
877
|
+
// }
|
|
878
|
+
}
|
|
873
879
|
|
|
874
880
|
.inline-multi-select{
|
|
875
881
|
height: 38px;
|
|
@@ -1260,4 +1266,14 @@ button {
|
|
|
1260
1266
|
|
|
1261
1267
|
.select-value:focus-within{
|
|
1262
1268
|
font-weight: bold !important;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
.custom-option1:focus{
|
|
1273
|
+
color: var(--hlx-text-color-primary);
|
|
1274
|
+
background-color: var(--hlx-color-primary-light);
|
|
1275
|
+
}
|
|
1276
|
+
.custom-option1{
|
|
1277
|
+
color: var(--hlx-text-color-primary);
|
|
1278
|
+
background-color: var(--hlx-color-primary-light);
|
|
1263
1279
|
}
|