@fkui/design 5.43.0 → 5.44.0
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/lib/fkui-exp.css +40 -0
- package/lib/fkui-exp.min.css +1 -1
- package/lib/fkui-int.css +40 -0
- package/lib/fkui-int.min.css +1 -1
- package/package.json +4 -4
- package/src/components/_all.scss +1 -0
- package/src/components/combobox/_combobox.scss +43 -0
- package/src/components/combobox/_variables.scss +8 -0
package/lib/fkui-exp.css
CHANGED
|
@@ -5130,6 +5130,46 @@ input[type=search]:focus,
|
|
|
5130
5130
|
min-width: var(--f-icon-size-small, 1rem);
|
|
5131
5131
|
}
|
|
5132
5132
|
|
|
5133
|
+
.popup .popup__wrapper.combobox__listbox {
|
|
5134
|
+
background-color: var(--fkds-color-background-primary, #ffffff);
|
|
5135
|
+
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
5136
|
+
border-radius: var(--f-border-radius-medium, 4px);
|
|
5137
|
+
box-shadow: var(--f-box-modal-shadow, 0 0 20px rgba(0, 0, 0, 0.3));
|
|
5138
|
+
margin-top: 4px;
|
|
5139
|
+
margin-bottom: 4px;
|
|
5140
|
+
padding: 2px;
|
|
5141
|
+
}
|
|
5142
|
+
|
|
5143
|
+
.combobox__listbox__list {
|
|
5144
|
+
margin: 0;
|
|
5145
|
+
padding: 0;
|
|
5146
|
+
}
|
|
5147
|
+
|
|
5148
|
+
.combobox__listbox__option {
|
|
5149
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5150
|
+
cursor: pointer;
|
|
5151
|
+
list-style-type: none;
|
|
5152
|
+
padding: 0.75rem;
|
|
5153
|
+
white-space: nowrap;
|
|
5154
|
+
}
|
|
5155
|
+
.combobox__listbox__option:hover {
|
|
5156
|
+
background-color: var(--fkds-color-action-background-select-hover, #dbe9e2);
|
|
5157
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5158
|
+
}
|
|
5159
|
+
.combobox__listbox__option--highlight {
|
|
5160
|
+
background-color: var(--fkds-color-action-background-select-default, #35805b);
|
|
5161
|
+
color: var(--fkds-color-text-inverted, #ffffff);
|
|
5162
|
+
font-weight: var(--f-font-weight-medium, 700);
|
|
5163
|
+
}
|
|
5164
|
+
|
|
5165
|
+
.combobox__button {
|
|
5166
|
+
background: inherit;
|
|
5167
|
+
border: none;
|
|
5168
|
+
color: var(--fkds-icon-color-action-content-primary-default, #4a52b6);
|
|
5169
|
+
margin: 0;
|
|
5170
|
+
padding: 0;
|
|
5171
|
+
}
|
|
5172
|
+
|
|
5133
5173
|
.contextmenu {
|
|
5134
5174
|
min-width: 260px;
|
|
5135
5175
|
background-color: var(--f-background-popupmenu, #ffffff);
|