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