2017-09-28 16:47:26 +00:00
|
|
|
.autocomplete-suggestions {
|
2023-02-09 23:34:47 +00:00
|
|
|
text-align: start;
|
2023-02-17 09:21:35 +00:00
|
|
|
color-scheme: only light; /* set browser scrollbar color */
|
2017-09-28 16:47:26 +00:00
|
|
|
cursor: default;
|
2023-05-27 22:04:44 +00:00
|
|
|
border: 1px solid rgba( 204, 204, 204, 1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
border-top: 0;
|
2023-05-27 22:04:44 +00:00
|
|
|
background: rgba( 255, 255, 255, 1 );
|
|
|
|
box-shadow: -1px 1px 3px rgba( 0, 0, 0, .1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
|
|
|
|
/* core styles should not be changed */
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
z-index: 9999;
|
2023-02-14 20:16:39 +00:00
|
|
|
max-height: 10em;
|
|
|
|
max-height: calc( 100vh - 10em );
|
2017-09-28 16:47:26 +00:00
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.autocomplete-suggestion {
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2023-02-14 20:16:39 +00:00
|
|
|
padding: .46em;
|
|
|
|
line-height: 1.5em;
|
2017-09-28 16:47:26 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-05-27 22:04:44 +00:00
|
|
|
color: rgba( 40, 40, 40, 1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-suggestion b {
|
|
|
|
font-weight: normal;
|
2023-05-27 22:04:44 +00:00
|
|
|
color: rgba( 31, 141, 214, 1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-suggestion.selected {
|
2023-05-27 22:04:44 +00:00
|
|
|
background: rgba( 40, 40, 40, 1 );
|
|
|
|
color: rgba( 255, 255, 255, 1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 21:12:18 +00:00
|
|
|
.autocomplete-suggestion:hover,
|
2022-11-18 10:04:46 +00:00
|
|
|
.autocomplete-suggestion:focus,
|
|
|
|
.autocomplete-suggestion:active,
|
2022-11-17 21:12:18 +00:00
|
|
|
.autocomplete-suggestion:hover > .context,
|
2022-11-18 10:04:46 +00:00
|
|
|
.autocomplete-suggestion:focus > .context,
|
|
|
|
.autocomplete-suggestion:active > .context,
|
2023-09-23 08:18:31 +00:00
|
|
|
#R-searchresults .autocomplete-suggestion:hover > .context,
|
|
|
|
#R-searchresults .autocomplete-suggestion:focus > .context,
|
|
|
|
#R-searchresults .autocomplete-suggestion:active > .context {
|
2023-05-27 22:04:44 +00:00
|
|
|
background: rgba( 56, 56, 56, 1 );
|
|
|
|
color: rgba( 255, 255, 255, 1 );
|
2017-09-28 16:47:26 +00:00
|
|
|
}
|
|
|
|
|
2023-09-23 22:27:39 +00:00
|
|
|
.autocomplete-suggestion > .breadcrumbs {
|
|
|
|
font-size: .7869em;
|
|
|
|
margin-inline-start: 1em;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2017-09-28 16:47:26 +00:00
|
|
|
.autocomplete-suggestion > .context {
|
2023-02-14 20:16:39 +00:00
|
|
|
font-size: .7869em;
|
2022-11-17 16:29:01 +00:00
|
|
|
margin-inline-start: 1em;
|
2021-08-29 15:12:02 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-09-28 16:47:26 +00:00
|
|
|
}
|