You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
749 B
39 lines
749 B
2 years ago
|
/*
|
||
|
Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
||
|
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
||
|
*/
|
||
|
|
||
|
.cke_autocomplete_panel
|
||
|
{
|
||
|
position: absolute;
|
||
|
display: none;
|
||
|
box-sizing: border-box;
|
||
|
width: 200px;
|
||
|
max-height: 300px;
|
||
|
overflow: auto;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
list-style: none;
|
||
|
background: #FFF;
|
||
|
border: 1px solid #b6b6b6;
|
||
|
border-bottom-color: #999;
|
||
|
border-radius: 3px;
|
||
|
font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
|
||
|
}
|
||
|
.cke_autocomplete_opened
|
||
|
{
|
||
|
display: block;
|
||
|
}
|
||
|
.cke_autocomplete_panel > li
|
||
|
{
|
||
|
padding: 5px;
|
||
|
}
|
||
|
.cke_autocomplete_panel > li:hover
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
|
||
|
{
|
||
|
background-color: #EFF0EF;
|
||
|
}
|