15 lines
412 B
SCSS
15 lines
412 B
SCSS
/*
|
|
* A CSS cross-browser fix for Select2 failire to display HTML5 required warnings
|
|
* MR link https://gitlab.com/gitlab-org/gitlab/-/merge_requests/22716
|
|
*/
|
|
.gl-select2-html5-required-fix div.select2-container+select.select2 {
|
|
display: block !important;
|
|
width: 1px;
|
|
height: 1px;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
margin: -3px auto 0;
|
|
background-image: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|