d25b032e16
Add writefull language suggestions section to Spelling and language tab GitOrigin-RevId: 6195683ca175a4c3da25a7ab334a605c67db04b8
29 lines
427 B
SCSS
29 lines
427 B
SCSS
:root {
|
|
--select-background-highlighted: var(--bg-light-secondary);
|
|
}
|
|
|
|
.select-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.select-trigger {
|
|
cursor: default;
|
|
|
|
& + .form-control-end-icon {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.select-highlighted {
|
|
background-color: var(--select-background-highlighted);
|
|
}
|
|
|
|
.select-portal-popover {
|
|
z-index: calc(#{$zindex-modal} + 1);
|
|
}
|
|
|
|
.select-portal-menu {
|
|
position: static;
|
|
width: 100%;
|
|
}
|