@gitlab/ui 91.1.1 → 91.1.2
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/CHANGELOG.md +7 -0
- package/dist/components/base/form/form_select/form_select.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/form/form_select/form_select.scss +3 -1
- package/src/components/base/form/form_select/form_select.vue +2 -2
package/package.json
CHANGED
|
@@ -50,7 +50,7 @@ See: https://gitlab.com/gitlab-org/gitlab/issues/30055
|
|
|
50
50
|
|
|
51
51
|
&.is-invalid:not(:disabled) {
|
|
52
52
|
box-shadow: inset 0 0 0 $gl-border-size-1 var(--gl-control-border-color-error);
|
|
53
|
-
|
|
53
|
+
|
|
54
54
|
&:hover {
|
|
55
55
|
box-shadow: inset 0 0 0 $gl-border-size-1 var(--gl-control-border-color-error);
|
|
56
56
|
}
|
|
@@ -65,6 +65,8 @@ See: https://gitlab.com/gitlab-org/gitlab/issues/30055
|
|
|
65
65
|
// References wrapping div because select can't have pseudo elements reliably
|
|
66
66
|
.gl-form-select-wrapper {
|
|
67
67
|
position: relative;
|
|
68
|
+
display: inline-block;
|
|
69
|
+
width: 100%;
|
|
68
70
|
|
|
69
71
|
&::after {
|
|
70
72
|
content: "";
|
|
@@ -47,12 +47,12 @@ export default {
|
|
|
47
47
|
};
|
|
48
48
|
</script>
|
|
49
49
|
<template>
|
|
50
|
-
<
|
|
50
|
+
<span class="gl-form-select-wrapper" :class="cssClasses">
|
|
51
51
|
<b-form-select class="gl-form-select" v-bind="$attrs" v-on="$listeners">
|
|
52
52
|
<!-- eslint-disable-next-line @gitlab/vue-prefer-dollar-scopedslots -->
|
|
53
53
|
<template v-for="slot in Object.keys($slots)" #[slot]>
|
|
54
54
|
<slot :name="slot"></slot>
|
|
55
55
|
</template>
|
|
56
56
|
</b-form-select>
|
|
57
|
-
</
|
|
57
|
+
</span>
|
|
58
58
|
</template>
|