@pinuts/bsr-uikit-relaunch 0.2.16 → 0.2.19
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.js +1 -1
- package/dist/styles/_ariakit_combobox.scss +5 -13
- package/package.json +1 -1
|
@@ -85,6 +85,8 @@
|
|
|
85
85
|
|
|
86
86
|
.comboboxPopoverWrapper {
|
|
87
87
|
// popover darf kein outline haben
|
|
88
|
+
background: $bsr-white-100;
|
|
89
|
+
|
|
88
90
|
:focus-visible {
|
|
89
91
|
outline: 0;
|
|
90
92
|
border: 0;
|
|
@@ -104,6 +106,7 @@
|
|
|
104
106
|
div[role="listbox"] {
|
|
105
107
|
overflow-x: hidden;
|
|
106
108
|
// border-radius: $border-radius;
|
|
109
|
+
background: $bsr-white-100;
|
|
107
110
|
border-top-left-radius: 0;
|
|
108
111
|
border-top-right-radius: 0;
|
|
109
112
|
border-top: none;
|
|
@@ -114,7 +117,7 @@
|
|
|
114
117
|
transform: translatey(0.6rem) translatex(-1rem);
|
|
115
118
|
|
|
116
119
|
div[role="option"] {
|
|
117
|
-
font-weight: $
|
|
120
|
+
font-weight: $fontweight-normal;
|
|
118
121
|
white-space: normal;
|
|
119
122
|
|
|
120
123
|
&:active,
|
|
@@ -146,10 +149,6 @@
|
|
|
146
149
|
&:hover {
|
|
147
150
|
color: $white !important;
|
|
148
151
|
}
|
|
149
|
-
&::after {
|
|
150
|
-
content: "✔";
|
|
151
|
-
margin-inline-start: 0.5rem;
|
|
152
|
-
}
|
|
153
152
|
}
|
|
154
153
|
}
|
|
155
154
|
}
|
|
@@ -259,7 +258,7 @@
|
|
|
259
258
|
|
|
260
259
|
&:focus,
|
|
261
260
|
&:hover {
|
|
262
|
-
background-color: $bsr-
|
|
261
|
+
background-color: $bsr-black-30;
|
|
263
262
|
color: $bsr-black-90;
|
|
264
263
|
cursor: pointer;
|
|
265
264
|
}
|
|
@@ -274,13 +273,6 @@
|
|
|
274
273
|
&:not(:last-child) {
|
|
275
274
|
margin-bottom: 0.25rem;
|
|
276
275
|
}
|
|
277
|
-
|
|
278
|
-
&[aria-selected="true"].selected {
|
|
279
|
-
&::after {
|
|
280
|
-
content: "✔";
|
|
281
|
-
margin-inline-start: 0.5rem;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
276
|
}
|
|
285
277
|
}
|
|
286
278
|
|